.elementor-1763 .elementor-element.elementor-element-944e865{--display:flex;--margin-top:-110px;--margin-bottom:0px;--margin-left:0px;--margin-right:0px;overflow:visible;}.elementor-1763 .elementor-element.elementor-element-944e865:not(.elementor-motion-effects-element-type-background), .elementor-1763 .elementor-element.elementor-element-944e865 > .elementor-motion-effects-container > .elementor-motion-effects-layer{background-color:#0F253D;}/* Start custom CSS for html, class: .elementor-element-d60306c *//* ============================================================
   ESTILO PREGUNTAS FRECUENTES (FAQ) - COACH GROUP LATAM
   ============================================================ */

/* 1. Contenedor Principal (Fondo oscuro) */
.coach-faq-container {
    background-color: #0f253d; /* Fondo azul oscuro de la web */
    padding: 50px 30px;
    border-radius: 15px;
    max-width: 900px;
    margin: 30px auto; /* Centrado */
    font-family: sans-serif;
}

/* Título principal H2 */
.coach-faq-container h2 {
    color: #ffffff !important;
    text-align: center;
    font-weight: 800;
    margin-bottom: 40px;
    text-transform: uppercase;
    font-size: 2rem;
    letter-spacing: 1px;
}

/* 2. Tarjeta de Pregunta Individual */
.coach-faq-item {
    background-color: #133458; /* Azul de tu marca */
    border-radius: 10px;
    margin-bottom: 15px;
    overflow: hidden;
    box-shadow: 0 4px 10px rgba(0,0,0,0.2);
    border: 1px solid rgba(255, 255, 255, 0.05); /* Borde sutil */
    transition: all 0.3s ease;
}

.coach-faq-item:hover {
    border-color: #4cc9f0; /* Borde Cian al pasar el mouse */
    transform: translateX(5px); /* Pequeño movimiento */
}

/* 3. Checkbox oculto (Motor del acordeón) */
.faq-checkbox {
    display: none;
}

/* 4. Título de la Pregunta (Label clicable) */
.faq-label {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    cursor: pointer;
    color: #ffffff;
    font-weight: 700;
    font-size: 1.1rem;
    user-select: none;
    transition: color 0.3s ease;
    margin: 0; /* Reset */
}

/* Icono de + a la derecha */
.faq-label::after {
    content: "+";
    font-size: 24px;
    color: #4cc9f0; /* Cian */
    font-weight: 400;
    transition: transform 0.3s ease;
    line-height: 1;
    margin-left: 15px;
    flex-shrink: 0;
}

/* 5. Estilos cuando está ACTIVADO (Abierto) */
.faq-checkbox:checked + .faq-label {
    color: #4cc9f0; /* Título se pone Cian */
}

.faq-checkbox:checked + .faq-label::after {
    content: "−"; /* Cambia a menos */
    color: #ffffff;
    transform: rotate(180deg);
}

/* 6. Respuesta (Área de contenido) */
.coach-faq-answer {
    max-height: 0; /* Oculto por defecto */
    overflow: hidden;
    transition: max-height 0.5s ease-out;
    background-color: #102a45; /* Fondo un poco más oscuro para respuesta */
}

/* Contenido interno con padding para que la animación sea fluida */
.faq-content-inner {
    padding: 0 20px 25px 20px;
    color: #e0e0e0; /* Texto gris claro */
    font-size: 0.95rem;
    line-height: 1.6;
}

/* Lógica para abrir la respuesta */
.faq-checkbox:checked ~ .coach-faq-answer {
    max-height: 1000px; /* Altura máxima suficiente para el contenido */
}

/* Estilos de listas dentro de la respuesta */
.faq-content-inner ul {
    margin: 10px 0 0 20px;
    padding: 0;
}

.faq-content-inner li {
    margin-bottom: 8px;
    list-style-type: disc;
}

/* RESPONSIVE (Móvil) */
@media (max-width: 768px) {
    .coach-faq-container {
        padding: 30px 15px;
    }
    .coach-faq-container h2 {
        font-size: 1.5rem;
    }
    .faq-label {
        font-size: 1rem;
        padding: 15px;
    }
}/* End custom CSS */