/* --- CONFIGURACIÓN BASE --- */
body {
    margin: 0;
    padding: 0;
    font-family: 'Inter', sans-serif;
    background-color: #ffffff;
    overflow-x: hidden; 
    position: relative;
}

.fondo-lila {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 300px; 
    background-color: #E8DDFA; 
    z-index: -1;
}

.seccion-principal {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 5%;
    display: flex;
}

/* --- COLUMNA DE TEXTOS --- */
.columna-texto {
    width: 60%; 
    padding-top: 380px; 
    padding-bottom: 100px;
    z-index: 2;
}

.cabecera-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-bottom: 50px;
}

.titulo-principal {
    font-family: 'Lora', serif;
    font-size: 2.2rem;
    color: #2F244A; 
    line-height: 1.2;
    margin: 0;
}

.texto-intro {
    font-size: 0.95rem;
    color: #555555;
    line-height: 1.6;
    margin: 0;
}

.linea-divisoria {
    width: 100%;
    height: 1px;
    background-color: #DCD6EE;
    margin: 40px 0;
}

.beneficios-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.beneficio h3 {
    font-family: 'Lora', serif;
    font-size: 1.15rem;
    color: #2F244A;
    margin: 0 0 12px 0;
    line-height: 1.3;
}

.beneficio p {
    font-size: 0.9rem;
    color: #666666;
    line-height: 1.6;
    margin: 0;
}

.btn-solicitar {
    margin-top: 50px;
    background-color: #3F2C6D;
    color: #ffffff;
    border: none;
    padding: 15px 35px;
    border-radius: 40px;
    font-size: 0.95rem;
    cursor: pointer;
    transition: background-color 0.3s, transform 0.2s;
    font-family: 'Inter', sans-serif;
}

.btn-solicitar:hover {
    background-color: #231842;
    transform: scale(1.02); 
}

/* --- LA IMAGEN CORTADA: PEGADA, GRANDE Y ANIMADA --- */
.columna-imagen {
    position: absolute;
    right: 0; 
    top: 40px; 
    width: 28vw; 
    overflow: hidden; 
    pointer-events: none; 
}

.columna-imagen img {
    width: 200%; 
    display: block;
    max-width: none;
    transform-origin: center center; 
    
    /* Velocidad ultra lenta: 160 segundos por vuelta */
    animation: giro-infinito 160s linear infinite; 
}

/* DECLARACIÓN DE LA ANIMACIÓN */
@keyframes giro-infinito {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

/* --- AJUSTE PARA MÓVILES --- */
@media (max-width: 900px) {
    .columna-texto {
        width: 100%;
        padding-top: 100px; 
    }
    
    .cabecera-grid, .beneficios-grid {
        grid-template-columns: 1fr; 
    }

    .columna-imagen {
        position: relative;
        width: 100%;
        top: 0;
        right: 0;
        overflow: hidden; 
    }

    .columna-imagen img {
        width: 100%; 
        transform-origin: center center;
    }
}