/******* Do not edit this file *******
Simple Custom CSS and JS - by Silkypress.com
Saved: Oct 24 2025 | 21:07:37 */
/* Fondo con la imagen de trama/blur */
.elementor-15 {
    background-image: url('https://sorteoseguro.cl/wp-content/uploads/2025/07/bg-contacto.webp');
    background-size: contain;
    background-repeat: no-repeat;
   	background-position: -45% -25%;
    background-size: 50%;
    opacity: 0.9;
}
/* Contenedor principal de la introducción */
#intro-faq {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 60px 20px 10px;
    position: relative;
    overflow: hidden;
    /*min-height: 85vh;*/}

/* Estilo para la imagen del logo */
#intro-faq .logo-imagen-sorteo {
    width: 120px;
    height: auto;
    margin-bottom: 40px;
    position: relative;
    z-index: 1;
}

/* Títulos y textos (con z-index para estar por encima del fondo) */
#intro-faq .titulo-principal {
    font-size: 30px;
    font-weight: 600;
    color: inherit;
    line-height: 1;
    margin: 0;
    position: relative;
    z-index: 1;
}

#intro-faq .subtitulo {
    font-size: 30px;
    font-weight: 200;
    color: inherit;
    margin: 5px 0 32px;
    position: relative;
    z-index: 1;
}

#intro-faq .cta-area {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    z-index: 1;
}

#intro-faq .cta-enlace {
    color: inherit;
    text-decoration: none;
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 16px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

#intro-faq .icono-flecha {
    width: 50px;
    height: 50px;
    background-color: #1ee3a4;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    transition: transform 0.3s ease;
}

#intro-faq .icono-flecha:hover {
    transform: scale(1.1);
}

/* Fondo con la imagen de trama/blur */
/*#fondo-faq .fondo-blur-imagen {
    position: absolute;
    top: -100px;
    left: -200px;
    width: 600px;
    height: 600px;
    background-image: url('https://sorteoseguro.cl/wp-content/uploads/2025/07/bg-contacto.webp');
    background-size: contain;
    background-repeat: no-repeat;
    z-index: 0;
    opacity: 0.9;
}*/
/* Adaptación para móviles */
@media (max-width: 767px) {
    
    /* 🔴 CONTENEDOR DE CADA PREGUNTA */
    .faq-item {
        display: flex; 
        justify-content: space-between; /* CRUCIAL: Separa Pregunta y Flecha */
        align-items: flex-start; /* Alinea los elementos al principio (arriba) */
        flex-wrap: wrap; 
        padding: 1.25rem 0; 
        position: relative; /* Para posibles ajustes de z-index */
    }

    /* 🔴 TEXTO DE LA PREGUNTA (span:first-child) */
    .faq-item > span:first-child {
        /* Deja espacio para la flecha a la derecha. 40px es el ancho de la flecha + margen. */
        flex-basis: calc(100% - 40px); 
        flex-grow: 1; 
        margin-right: 10px; 
        white-space: normal; /* Asegura que el texto se envuelva */
        overflow: visible; 
        /* Asegura que el texto comience a la izquierda */
        text-align: left; 
    }

    /* 🔴 FLECHA DE ÍCONO (faq-item-arrow) */
    .faq-item-arrow {
        flex-shrink: 0; /* Evita que la flecha se encoja */
        margin-left: 0; 
        margin-right: 0; /* Asegura que no tenga margen residual que la mueva */
        /* La flecha estará pegada al borde derecho del contenedor. */
    }
    
    /* 🔴 RESPUESTA (faq-answer-text) */
    .faq-answer-text {
        flex-basis: 100%; /* Ocupa el 100% del ancho del contenedor */
        padding-top: 1rem; 
        /* Asegura que la respuesta NO tenga padding que la mueva a la derecha (como en la primera imagen rota) */
        padding-left: 0; 
        padding-right: 0; 
    }
    
    /* 🔴 TÍTULOS PRINCIPALES DE LA SECCIÓN */
    .faq-info {
        text-align: center; /* Centra el texto 'Aquí respondemos...' */
    }
    
    /* Asegura que el texto de contacto esté centrado */
    .faq-contact {
        justify-content: center;
        width: 100%;
        margin-top: 1rem;
    }
}