/* Leasing Section - Premium Version */
.leasing-section {
    background-color: var(--tacmex-dark-gray);
    position: relative;
    padding: 5rem 2rem;
    max-height: 950px;
    overflow: hidden;
}

.leasing-content {
    display: flex;
    align-items: stretch;
    gap: 3rem;
    max-height: 850px;
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
}

/* Columna de texto - Proporción elegante */
.leasing-text-column {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 3rem 2rem;
    position: relative;
    z-index: 3;
}

/* Animación de aparición del texto */
.leasing-text-column {
    opacity: 0;
    transform: translateX(-50px);
    animation: slideInLeft 1.2s ease-out 0.3s forwards;
}

@keyframes slideInLeft {
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Header alineado a la izquierda */
.leasing-text-column .section-header-left {
    text-align: left;
    margin-bottom: 3rem;
    opacity: 0;
    animation: fadeInUp 1s ease-out 0.6s forwards;
}

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.leasing-text-column .section-title {
    font-family: var(--font-heading);
    font-size: 2.8rem;
    font-weight: 300;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin: 0;
    color: var(--tacmex-white);
    position: relative;
    display: table;
    line-height: 1.1;
}

.leasing-text-column .section-title::after {
    content: '';
    position: absolute;
    width: 120px;
    height: 2px;
    background: var(--tacmex-white);
    bottom: -15px;
    left: 0;
    opacity: 0;
    animation: expandLine 1s ease-out 1s forwards;
}

@keyframes expandLine {
    from {
        width: 0;
        opacity: 0;
    }
    to {
        width: 120px;
        opacity: 1;
    }
}

/* Contenedor de texto */
.leasing-text {
    flex: 1;
    opacity: 0;
    animation: fadeInUp 1s ease-out 0.9s forwards;
}

.leasing-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 2rem;
    color: var(--tacmex-white);
    font-weight: 300;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.8s ease-out 1.2s forwards;
}

.leasing-text h3 {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    font-weight: 600;
    margin: 2rem 0 1rem;
    position: relative;
    color: var(--tacmex-white);
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.8s ease-out 1.4s forwards;
}

.leasing-text h3::after {
    content: '';
    position: absolute;
    width: 50px;
    height: 2px;
    background: var(--tacmex-green);
    bottom: -8px;
    left: 0;
    opacity: 0;
    animation: expandLine 0.8s ease-out 1.8s forwards;
}

.leasing-text ul {
    list-style: none;
    list-style-type: none; 
    padding: 0;
    margin: 0; 
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.8s ease-out 1.6s forwards;
}

.leasing-text li {
    padding: 0.75rem 0;
    position: relative;
    padding-left: 1.5rem;
    font-size: 1rem;
    color: var(--tacmex-white);
    font-weight: 300;
    list-style: none; 
    list-style-type: none; 
    opacity: 0;
    transform: translateX(-20px);
    animation: slideInLeft 0.6s ease-out forwards;
}

/* Elimina CUALQUIER marcador */
.leasing-text li::marker {
    display: none !important;
}

/* Delays escalonados para cada li */
.leasing-text li:nth-child(1) { animation-delay: 1.8s; }
.leasing-text li:nth-child(2) { animation-delay: 2.0s; }
.leasing-text li:nth-child(3) { animation-delay: 2.2s; }

.leasing-text li::before {
    content: '';
    position: absolute;
    width: 8px;
    height: 8px;
    background-color: var(--tacmex-green);
    border-radius: 50%;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    opacity: 0;
    animation: fadeIn 0.4s ease-out forwards;
}

.leasing-text li:nth-child(1)::before { animation-delay: 2.0s; }
.leasing-text li:nth-child(2)::before { animation-delay: 2.2s; }
.leasing-text li:nth-child(3)::before { animation-delay: 2.4s; }

@keyframes fadeIn {
    to {
        opacity: 1;
    }
}

/* Columna de imagen */
.leasing-image-column {
    flex: 1;
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
}

.leasing-image {
    flex: 1;
    position: relative;
    height: 100%;
    overflow: hidden;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.leasing-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.5s ease;
}

/* Overlay cinematográfico sutil */
.leasing-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.1);
    z-index: 2;
    pointer-events: none;
    opacity: 0;
    animation: overlayFadeIn 2s ease-out 0.5s forwards;
}

@keyframes overlayFadeIn {
    to {
        opacity: 1;
    }
}

/* Hover effect refinado */
.leasing-image:hover img {
    transform: scale(1.02);
    transition: transform 1s ease-out;
}

/* Responsive refinado */
@media (max-width: 992px) {
    .leasing-section {
        max-height: 800px;
        padding: 4rem 2rem;
    }
    
    .leasing-content {
        max-height: 700px;
        gap: 2rem;
    }
    
    .leasing-text-column .section-title {
        font-size: 2.2rem;
        letter-spacing: 2px;
    }
    
    .leasing-text-column {
        padding: 2rem 1.5rem;
    }
    
    .leasing-text p {
        font-size: 1rem;
        line-height: 1.7;
    }
}

@media (max-width: 768px) {
    .leasing-section {
        max-height: none;
        padding: 3rem 1.5rem;
    }
    
    .leasing-content {
        flex-direction: column;
        max-height: none;
        gap: 2rem;
    }
    
    .leasing-text-column {
        flex: none;
        padding: 2rem 1rem;
    }
    
    .leasing-text-column .section-header-left {
        text-align: center;
        margin-bottom: 2rem;
    }
    
    .leasing-text-column .section-title {
        font-size: 1.8rem;
        letter-spacing: 1px;
    }
    
    .leasing-text-column .section-title::after {
        left: 50%;
        transform: translateX(-50%);
        width: 80px;
    }
    
    .leasing-text p {
        text-align: center;
        font-size: 0.95rem;
        margin-bottom: 1.5rem;
    }
    
    .leasing-text h3 {
        text-align: center;
        font-size: 1.2rem;
    }
    
    .leasing-text h3::after {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .leasing-text ul {
        text-align: center;
    }
    
    .leasing-text li {
        justify-content: center;
        padding-left: 0;
    }
    
    .leasing-text li::before {
        display: none;
    }
    
    .leasing-image-column {
        flex: none;
    }
    
    .leasing-image {
        height: 400px;
    }
}

@media (max-width: 480px) {
    .leasing-section {
        padding: 2.5rem 1rem;
    }
    
    .leasing-text-column .section-title {
        font-size: 1.75rem;
    }
    
    .leasing-image {
        height: 300px;
    }
}