    /* Estilos generales */
    body {
        font-family: 'Poppins', sans-serif;
        background-color: #f4f7fc;
        color: #333;
        line-height: 1.6;
    }

    .header-bg{
        background-color: #f4f7fc;
    }

/* Hero section con el mismo fondo */
.hero-section {
    padding: 5px 0 65px;
    background-color: #f4f7fc;
    position: relative;
    overflow: hidden;
    margin-top: 50;  
}

.hero-content {
    padding-right: 20px;
}

.hero-section .section-title {
    color: #094c69;
    font-size: 2.8rem;
    font-weight: 800;
    margin-bottom: 25px;
    position: relative;
}

.hero-section .section-title:after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 80px;
    height: 4px;
    background-color: #094c69;
}

.hero-section .intro-text {
    font-size: 1.25rem;
    color: #333;
    margin-bottom: 30px;
    line-height: 1.8;
}

.hero-section .btn-primary {
    background-color: #094c69;
    border: none;
    padding: 15px 30px;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 8px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(9, 76, 105, 0.3);
}

.hero-section .btn-primary:hover {
    background-color: #063a52;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(9, 76, 105, 0.4);
}

.hero-image {
    position: relative;
    z-index: 1;
}

.hero-image img {
    border-radius: 15px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
    transition: transform 0.5s ease;
}

.hero-image img:hover {
    transform: scale(1.02);
}

/* Animación para el hero */
.hero-content {
    animation: fadeInLeft 1s ease-out;
}

.hero-image {
    animation: fadeInRight 1s ease-out;
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Ajustes responsivos */
@media (max-width: 992px) {
    .hero-section {
        padding: 20px 0 60px;
    }
    
    .hero-content {
        text-align: center;
        padding-right: 0;
        margin-bottom: 40px;
    }
    
    .hero-section .section-title:after {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .hero-image {
        max-width: 80%;
        margin: 0 auto;
    }
}

@media (max-width: 768px) {
    .hero-section .section-title {
        font-size: 2.2rem;
    }
    
    .hero-section .intro-text {
        font-size: 1.1rem;
    }
}

    
    /* Contenedor principal */
    .container-principal {
        max-width: 1200px;
        margin: auto;
        padding: 20px;
    }
/* Regla base para la sección */
.section {
    padding: 15px;
    border-radius: 12px;
    margin: 20px 0;
    animation: fadeIn 0.5s ease-in-out;
  }
  
  /* Alternar fondo: secciones impares con el color de fondo de la página, secciones pares en blanco */
  .section:nth-of-type(odd) {
    background-color: #f4f7fc; /* mismo que el fondo del body */
  }
  
  .section:nth-of-type(even) {
    background-color: #ffffff;
  }
  

    /* Botones */
    .btn-primary {
        background: #0056b3;
        border: none;
        padding: 14px 24px;
        border-radius: 8px;
        font-size: 16px;
        font-weight: bold;
        transition: all 0.3s ease-in-out;
    }

    .btn-primary:hover {
        background: #003d80;
        transform: translateY(-3px);
        box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.2);
    }

    /* Tarjetas */
    .card {
        border-radius: 12px;
        transition: transform 0.3s ease-in-out;
        box-shadow: 0px 6px 12px rgba(0, 0, 0, 0.1);
        text-align: center;
        padding: 20px;
    }

    .card:hover {
        transform: scale(1.05);
        box-shadow: 0px 10px 20px rgba(0, 0, 0, 0.15);
    }

    .card-title {
        font-size: 20px;
        font-weight: bold;
        margin-bottom: 15px;
    }

    .card-text {
        font-size: 16px;
        color: #555;
    }

/* Estilos para las tarjetas de servicios */
.services .card {
    border-radius: 15px;
    transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    text-align: center;
    background: #ffffff;
    border: none;
    overflow: hidden;
    position: relative;
}

.services .card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

/* Agregar un efecto de borde superior */
.services .card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, #0056b3, #0099cc);
}

/* Espaciado interno */
.services .card-body {
    padding: 25px;
}

/* Títulos de las tarjetas */
.services .card-title {
    font-size: 22px;
    font-weight: 700;
    color: #094c69;
    margin-bottom: 10px;
    transition: color 0.3s ease-in-out;
}

.services .card:hover .card-title {
    color: #0077b6;
}

/* Descripción de la tarjeta */
.services .card-text {
    font-size: 16px;
    color: #555;
    line-height: 1.5;
}

/* Espaciado entre tarjetas */
.services .list-unstyled li {
    margin-bottom: 20px;
}

/* Botón de ver más servicios */
.services-btn {
    background: #0056b3;
    border: none;
    padding: 12px 24px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: bold;
    transition: all 0.3s ease-in-out;
    color: #fff;
}

.services-btn:hover {
    background: #003d80;
    transform: translateY(-3px);
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.2);
}

    /* Estilo del CTA */
    .cta a {
        display: inline-block;
        background: #ffcc00;
        color: #333;
        padding: 12px 24px;
        font-size: 18px;
        font-weight: bold;
        border-radius: 8px;
        transition: background 0.3s ease;
    }

    .cta a:hover {
        background: #e6b800;
        text-decoration: none;
    }

    /* Sobre el coach */
    .about-coach img {
        max-width: 250px;
        border-radius: 50%;
        box-shadow: 0px 10px 30px rgba(0, 0, 0, 0.1);
        transition: transform 0.3s ease-in-out;
    }

    .about-coach img:hover {
        transform: scale(1.05);
    }

    .about-coach h2 {
        font-size: 2rem;
        color: #004494;
    }

    .about-coach p {
        font-size: 1.2rem;
        color: #555;
    }


    /* Testimonios */
    .testimonials {
        text-align: center;
    }

    .testimonial {
        background: #ffffff;
        padding: 20px;
        border-radius: 12px;
        box-shadow: 0px 5px 15px rgba(0, 0, 0, 0.1);
        margin: 20px auto;
        max-width: 600px;
    }

    .testimonial p {
        font-style: italic;
        font-size: 18px;
        color: #444;
    }

    /* FAQ */
    .faq details {
        background: #ffffff;
        padding: 15px;
        border-radius: 8px;
        box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
        margin-bottom: 10px;
    }

    .faq summary {
        font-weight: bold;
        cursor: pointer;
    }

    .faq p {
        margin-top: 10px;
        font-size: 16px;
        color: #666;
    }

    .nav-link:hover {
        text-decoration: none;
        color: #ffcc00 !important;
    }

    /* Footer */
    .footer {
        background: #002855;
        color: white;
        text-align: center;
        padding: 25px;
        margin-top: 40px;
        font-size: 14px;
    }

    /* Formularios */
    .form-control {
        border-radius: 8px;
        border: 1px solid #ccc;
        padding: 12px;
        transition: all 0.3s ease;
    }

    .form-control:focus {
        border-color: #0056b3;
        box-shadow: 0px 4px 10px rgba(0, 86, 179, 0.2);
    }

    /* Animaciones sutiles */
    .section, .card, .btn-primary {
        animation: fadeIn 0.5s ease-in-out;
    }

    @keyframes fadeIn {
        from { opacity: 0; transform: translateY(10px); }
        to { opacity: 1; transform: translateY(0); }
    }



    /* Títulos y subtítulos */
.section-title {
    font-size: 2.5rem;
    font-weight: bold;
    color: #4b6cb7;
    margin-bottom: 20px;
}

.sub-title {
    font-size: 1.8rem;
    font-weight: 600;
    color: #2c3e50;
    margin-top: 30px;
    margin-bottom: 10px;
}

.intro-text, .closing-text {
    font-size: 1.1rem;
    color: #7f8c8d;
    line-height: 1.8;
}

/* Lista de beneficios */
.benefits-list {
    list-style: none;
    padding: 0;
}

.benefits-list li {
    font-size: 1.1rem;
    margin-bottom: 15px;
    color: #34495e;
}

.benefits-list li strong {
    color: #2980b9;
}

/* Estilización de secciones */
.coaching-benefits {
    background: #ffffff;
    padding: 60px;
    border-radius: 15px;
    box-shadow: 0px 10px 30px rgba(0, 0, 0, 0.1);
    margin-bottom: 50px;
}

/* Agregar efectos de hover en las listas */
.benefits-list li:hover {
    background-color: #ecf0f1;
    padding-left: 10px;
    border-radius: 5px;
    transition: 0.3s ease-in-out;
}

/* Animación en la sección */
.coaching-benefits {
    animation: fadeIn 1s ease-out;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}



/* TESTIMONIOS */
.testimonials {
    background-color: #ffffff;
    padding: 50px 0;
}

.testimonials .container-principal {
    padding: 0 5%;
}

.testimonial-card {
    border: none;
    border-radius: 12px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    background-color: #fff;
    text-align: center;
    padding: 20px;
    transition: transform 0.3s ease-in-out;
}

.testimonial-card:hover {
    transform: translateY(-5px);
}

.testimonial-img {
    width: 80px;
    height: 80px;
    object-fit: contain;
    margin: 0 auto 15px;
}

.testimonial-card .card-title {
    font-size: 1.2rem;
    font-weight: bold;
    margin-bottom: 10px;
}

.testimonial-card .card-text {
    font-size: 0.95rem;
    color: #555;
    margin-bottom: 10px;
}

.stars {
    font-size: 1.1rem;
    color: #ffd700;
}

.bi-star-fill {
    color: #ffd700;
}

@media (max-width: 768px) {
    .testimonial-card {
        padding: 15px;
    }

    .testimonial-img {
        width: 60px;
        height: 60px;
    }
}

.coaching-sections {
    display: grid;
    grid-template-columns: 1fr; /* Por defecto, una sola columna en móviles */
    gap: 25px;
    padding: 20px;
    max-width: 1000px; /* Ajuste para centrar bien las tarjetas */
    margin: auto; /* Centra las tarjetas en la pantalla */
}

.coaching-item {
    text-align: center;
    padding: 25px;
    border-radius: 12px;
    background: #ffffff;
    box-shadow: 0px 6px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
}

.coaching-item:hover {
    transform: translateY(-5px);
    box-shadow: 0px 8px 20px rgba(0, 0, 0, 0.15);
}

.coaching-item i {
    font-size: 40px;
    color: #0D6EFD;
    margin-bottom: 15px;
}

.coaching-item h5 {
    font-size: 18px;
    font-weight: bold;
    color: #333;
    margin-bottom: 10px;
}

.coaching-item p {
    font-size: 14px;
    color: #555;
    line-height: 1.5;
}


@media (min-width: 768px) {
    .coaching-sections {
        grid-template-columns: repeat(2, 1fr); 
    }
}

@media (min-width: 1024px) {
    .coaching-sections {
        grid-template-columns: repeat(3, 1fr); 
    }
}

.Fondo-UE-coherente section{
    background-color: #ffffff; 

}

.descarga-pdf-ue-coherente {

    background-color: #094c69; 
    color: white;
    padding: 50px 20px;
    font-family: Arial, sans-serif;
    text-align: center;
    border-radius: 10px; 
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.4);
    margin: 20px auto;
    max-width: 1100px;
}

.contenedor-descarga-coherente {
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    gap: 30px;
    align-items: center;
    text-align: left;
}

.info-descarga-coherente {
    flex: 3;
}

.info-descarga-coherente h2 {
    font-size: 1.8em;
    margin-bottom: 5px;
    color: #ffffff;
}

.info-descarga-coherente .subtitulo-coherente {
    font-size: 1.1em;
    margin-bottom: 15px;
    font-style: italic;
    opacity: 0.9;
}

.info-descarga-coherente p {
    font-size: 1em;
    line-height: 1.5;
    margin-bottom: 25px;
}

/* Estilos del botón: replicando la clase .text-center .btn-primary */
.btn-descarga-coherente {
    display: inline-block;
    background-color: #ffffff; /* Botón blanco para alto contraste */
    color: #094c69; /* Texto del color de fondo de la sección */
    font-size: 1.2rem;
    font-weight: 500;
    border: none;
    border-radius: 10px;
    padding: 10px 50px;
    text-decoration: none;
    transition: transform 0.2s ease, background-color 0.2s ease;
}

.btn-descarga-coherente:hover {
    /* Ligeramente grisáceo al pasar el ratón */
    background-color: #f0f0f0; 
    transform: scale(1.05); /* Efecto de escala como en tu CSS */
}

.btn-descarga-coherente:active {
    /* Mantener el color de fondo para la acción */
    background-color: #e0e0e0;
}

/* Estilos para la bandera/icono de la UE */
.bandera-ue-coherente {
    flex: 1; 
    text-align: center;
}

.bandera-ue-coherente .icono-ue {
    font-size: 70px;
    display: block;
    margin-bottom: 10px;
    /* Las estrellas amarillas del emoji contrastan con el fondo azul */
}

.bandera-ue-coherente .autor-coherente {
    font-size: 0.85em;
    opacity: 0.7;
}

/* Responsividad adaptada */
@media (max-width: 768px) {
    .descarga-pdf-ue-coherente {
        padding: 30px 15px; /* Reducción de padding como en .contact-section */
    }

    .contenedor-descarga-coherente {
        flex-direction: column; /* Apila los elementos en móvil */
        text-align: center;
    }
    
    .btn-descarga-coherente {
        font-size: 1rem;
        padding: 8px 45px; /* Ajuste de botón en móvil */
    }
}