:root {
    --primary: #0D1B39;      /* Azul muy oscuro (para títulos, header, textos importantes) */
    --secondary: #2B6EA5;    /* Azul medio (botones, links, hover) */
    --accent: #5397C7;       /* Azul claro (fondos de secciones, detalles, iconos) */
    --light: #E8E8E8;        /* Fondo claro alternativo */
    --dark: #182A3E;            /* Texto oscuro complementario */
    --gray: #666;            /* Texto secundario */
    --light-gray: #f5f7fa;   /* Fondos suaves */
}
        
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Inter', sans-serif;  /* CAMBIO: 'Red Hat Display' por 'Inter' */
}
        
body {
    overflow-x: hidden;
    background-color: #f8f9fa;
}

/* ====================
   TAMAÑOS UNIFICADOS PARA TODOS LOS H2
   ==================== */

/* Tamaño base para todos los h2 en desktop */
h2 {
    font-size: 2.2rem;
    color: var(--primary);
    margin-bottom: 20px;
    line-height: 1.2;
}

.form-container h2{
    text-align: center;
}

.coaching h2{
    color:var(--light-gray);
}

/* Tamaño para h2 en contacto */
.contact-container h2 {
    font-size: 2rem; /* Un poco más pequeño que el resto */
}

/* Tamaño para h2 en about */
.about-card h3 {
    font-size: 1rem; /* Más pequeño para tarjetas */
}


/* Tamaño para h2 en formulario principal */
.mainform-container h2 {
    font-size: 22px; /* Más pequeño para formularios */
}

/* Tamaño para h2 en artículos */
.article-container h2 {
    font-size: 22px; /* Tamaño de subtítulo */
}

/* ====================
   RESPONSIVE PARA TODOS LOS H2
   ==================== */

@media (max-width: 768px) {
    h2 {
        font-size: 2rem;
        margin-bottom: 15px;
    }
    
    .contact-container h2 {
        font-size: 1.8rem;
    }
    
    .about-card h2 {
        font-size: 1.5rem;
    }
    
    .mainform-container h2 {
        font-size: 20px;
    }
    
    .article-container h2 {
        font-size: 20px;
    }
}

@media (max-width: 576px) {
    h2 {
        font-size: 1.8rem;
        margin-bottom: 10px;
    }
    
    .contact-container h2 {
        font-size: 1.5rem;
    }
    
    .about-card h2 {
        font-size: 1.3rem;
    }
    
    .mainform-container h2 {
        font-size: 18px;
    }
    
    .article-container h2 {
        font-size: 18px;
    }
}
        
/* Header & Navigation */
nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 5%;
    background-color: white;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}
        
.logoContainer {
    display: flex;
    align-items: center;
    gap: 15px;
}
        
.logo {
    width: 50px;
    height: 50px;
    background-color: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: bold;
    font-size: 20px;
}

.logo img{
    width: 70px ;
    height: 70px;
    margin-right: 8px ;
    border-radius: 50%;        /* lo hace redondo */

}

.logoContainer{
    padding: 8px 0;
}
        
        
.title {
    display: flex;
    flex-direction: column;
    margin-left: 10px;
}
        
.title span:first-child {
    font-weight: 700;
    font-size: 1.5rem;
    color: var(--secondary);
    margin-bottom: 5px;
}
        
.title span:last-child {
    font-size: 0.8rem;
    color: var(--gray);
}
        
.menuNav {
    display: flex;
    list-style: none;
    gap: 25px;
    align-items: center;
    transition: all 0.4s ease;
}
        
.menuNav li a {
    text-decoration: none;
    color: var(--dark);
    font-weight: 600;
    transition: color 0.3s;
    display: block;
    padding: 8px 0;
   
}

.menuNav li a:hover{
    color: var(--secondary);
}
        
.menuNav li .btn-primary:hover{
    color: var(--light);
    background-color: var(--accent);
}
        
.menuNav .btn-primary {
    background-color: var(--accent);
    color: white;
    padding: 10px 20px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
    border: none;
    cursor: pointer;
    display: inline-block;
}

.menuNav li {
    position: relative;
}
        
.menuNav > li > a {
    text-decoration: none;
    color: #222;
    padding: 10px 15px;
    display: block;
}
        
.menuNav li:hover > a {
    background: #f0f0f0;
    border-radius: 6px;
}

.menuNav a i {
    margin-right: 8px;  /* space between icon and text */
    font-size: 14px;    /* adjust size */
    color: inherit;     /* inherit link color */
    vertical-align: middle;
}

/* Dropdown icon */
.menuNav a .dropdown-icon {
    margin-left: 6px;
    font-size: 12px;
    transition: transform 0.3s ease;
}

/* Rotar flechita cuando el submenú está abierto POR CLICK */
.menuNav li.active > a .dropdown-icon {
    transform: rotate(180deg);
}

/* Dropdown menu hidden by default */
.menuNav .dropdown {
    list-style: none;
    position: absolute;
    left: 0;
    top: 100%;
    background: #fff;
    padding: 10px 0;
    margin: 0;
    display: none;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    border-radius: 6px;
    z-index: 1000;
    min-width: 220px;
}
        
/* Show on CLICK (not hover) */
.menuNav li.active .dropdown {
    display: block;
}
        
/* Dropdown links */
.menuNav .dropdown li a {
    padding: 8px 15px;
    display: block;
    color: #333;
    white-space: nowrap;
}

.menuNav .dropdown li a:hover {
    background: #f5f5f5;
}
        
.btn-primary:hover {
    background-color: var(--accent);
    color: var(--light);
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}
        
/* Mobile Menu Toggle */
.menu-toggle {
    display: none;
    cursor: pointer;
    font-size: 1.5rem;
    color: var(--primary);
    z-index: 1001;
}
        
/* Mobile Menu */
@media (max-width: 768px) {
    .menu-toggle {
        display: block;
    }
            
    .menuNav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 280px;
        height: 100vh;
        background: white;
        flex-direction: column;
        align-items: flex-start;
        padding: 100px 30px 30px;
        box-shadow: -5px 0 15px rgba(0,0,0,0.1);
        overflow-y: auto;
        transition: right 0.4s ease;
    }
            
    .menuNav.active {
        right: 0;
    }
            
    .menuNav li {
        width: 100%;
        padding: 0;
        border-bottom: 1px solid rgba(0,0,0,0.05);
    }
            
    .menuNav li:last-child {
        margin-top: 20px;
        border-bottom: none;
    }
            
    .menu-toggle.active i:before {
        content: "\f00d"; /* Cambia a icono de cerrar (X) */
    }
            
    /* Para móviles - menú desplegable con transición */
    .menuNav .dropdown {
        position: relative;
        top: auto;
        left: auto;
        box-shadow: none;
        border-radius: 0;
        padding-left: 20px;
        display: block;
        max-height: 0;
        overflow: hidden;
        opacity: 0;
        transition: max-height 0.3s ease, opacity 0.3s ease;
        min-width: auto;
    }

    /* Para móvil, mostramos cuando tiene clase active */
    .menuNav li.active .dropdown {
        max-height: 500px;
        opacity: 1;
    }
            
    /* Estilo para el enlace Services en móvil */
    .menuNav .has-dropdown > a {
        cursor: pointer;
    }
}
        
/* Slider */
.slider-container {
    position: relative;
    height: 80vh;
    overflow: hidden;
    margin-top: 20px;
}
        
.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.5s ease;
}
        
.slide.active {
    opacity: 1;
}
        
.slide1 {
    background: linear-gradient(rgba(13, 27, 57, 0.8), rgba(13, 27, 57, 0.8)), url('https://images.unsplash.com/photo-1517400508447-f8dd518b86db?q=80&w=1170&auto=format&fit=crop&ixlib=rb-4.1.0&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D') no-repeat center/cover;
}
        
.slide2 {
    background: linear-gradient(rgba(13, 27, 57, 0.8), rgba(13, 27, 57, 0.8)), url('https://images.unsplash.com/photo-1518391846015-55a9cc003b25?q=80&w=1170&auto=format&fit=crop&ixlib=rb-4.1.0&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D')no-repeat center/cover;
}
        
.slide3 {
    background: linear-gradient(rgba(13, 27, 57, 0.8), rgba(13, 27, 57, 0.8)), url('https://images.unsplash.com/photo-1518352492567-52bf341faf05?q=80&w=1170&auto=format&fit=crop&ixlib=rb-4.1.0&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D')no-repeat center/cover;
}
        
.sliderContent {
    text-align: center;
    max-width: 700px;
    padding: 0 20px;
    color: white;
}
        
.sliderContent span:first-child {
    display: block;
    font-size: 1.4rem;
    margin-bottom: 10px;
    color: var(--secondary);
    text-transform: uppercase;
    letter-spacing: 2px;
}
        
.slideTitle {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 20px;
    display: block;
    line-height: 1;
    font-weight:500;
    text-transform: uppercase;
}
        
.sliderContent p {
    margin-bottom: 30px;
    line-height: 1.6;
    font-size: 0.8rem;
}
        
.sliderContent a {
    background-color: transparent;
    color: white;
    border: 2px solid white;
    padding: 12px 30px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
    display: inline-block;
}
        
.sliderContent a:hover {
    background-color: white;
    color: var(--primary);
}
        
.nav-button {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.3);
    border: none;
    color: white;
    font-size: 1.5rem;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    z-index: 10;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
}
        
.nav-button:hover {
    background: rgba(255, 255, 255, 0.7);
    color: var(--primary);
}
        
.prev {
    left: 20px;
}
        
.next {
    right: 20px;
}
        
.dots {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
}
        
.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
}
        
.dot.active {
    background: white;
}
        
/* Sections */
.secSection {
    display: flex;
    padding: 100px 5%;
    gap: 50px;
    background-color: white;
}
        
.secSection > div {
    flex: 1;
}
        
.secSection img {
    width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}
        
.wwaTitle {
    font-size: 2rem;
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--secondary);
    font-weight: 600;
    margin-bottom: 15px;
}
        
/* Se eliminaron las reglas individuales de h2 y se unificaron arriba */
        
.secSection i{
    font-size: 2.5rem;
}

.secSection p {
    color: var(--gray);
    line-height: 1.6;
    margin-bottom: 20px;
}
        
.secSection .airplane, .secSection .medallion {
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 25px 0 10px;
    color: var(--secondary);
}
        
.secSection h3 {
    margin-bottom: 10px;
    color: var(--primary);
}
        
/* Country section */
.country {
    padding: 80px 5%;
    background-color: var(--light);
    position: relative;
    background: linear-gradient(rgba(13, 27, 57, 0.8), rgba(13, 27, 57, 0.8)), url('https://images.unsplash.com/photo-1523833082115-1e8e294bd14e?q=80&w=1295&auto=format&fit=crop&ixlib=rb-4.1.0&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D')no-repeat center/cover;
            
}
        
.countryContent {
    display: flex;
    flex-direction: column;
    gap: 40px;
}
        
.countryCard {
    max-width: 500px;
    background-color: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

/* Se eliminaron las reglas individuales de h2 y se unificaron arriba */
        
.countries {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    justify-content: center;
}
        
.usa, .uk, .canada {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background-color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s;
}
        
.usa:hover, .uk:hover, .canada:hover {
    transform: translateY(-10px);
}
        
.flag img {
    width: 40px;
    height: auto;
}
        
/* Services */
.service {
    padding: 100px 5%;
    text-align: center;
    background-color: white;
}
        
/* Se eliminaron las reglas individuales de h2 y se unificaron arriba */
        
.service p {
    color: var(--gray);
    max-width: 700px;
    margin: 0 auto 50px;
    line-height: 1.6;
}
        
.containerCards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}
        
.immigration, .studentVisa {
    background-color: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: transform 0.3s;
}
        
.immigration:hover, .studentVisa:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}
        
.immigration img, .studentVisa img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}
        
.immigration h3, .studentVisa h3 {
    color: var(--primary);
    margin: 20px 0 10px;
    padding: 0 20px;
}
        
.immigration p, .studentVisa p {
    color: var(--gray);
    padding: 0 20px;
    line-height: 1.6;
    margin-bottom: 20px;
}
        
.btn-secondary {
    display: inline-block;
    padding: 8px 20px;
    background-color: transparent;
    color: var(--secondary);
    border: 2px solid var(--secondary);
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    margin: 10px 0 30px;
    transition: all 0.3s;
}
        
.btn-secondary:hover {
    background-color: var(--secondary);
    color: white;
}
        
.arrow {
    margin-left: 5px;
    transition: transform 0.3s;
}
        
.btn-primary:hover .arrow, .btn-secondary:hover .arrow {
    transform: translateX(5px);
}
        
/* Coaching section */
.coaching {
    display: flex;
    padding: 0 5% 100px;
    gap: 30px;
}
        
.coachingCard1, .coachingCard2 {
    flex: 1;
    background-color: var(--primary);
    color: white;
    border-radius: 10px;
    padding: 50px;
}
        
/* Se eliminaron las reglas individuales de h2 y se unificaron arriba */
        
.coachingCard2 p {
    margin-bottom: 30px;
    line-height: 1.6;
}
        
/* Gallery */
.gallery {
    padding: 0 5% 100px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}
        
.gallery .card {
    background-color: white;
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: transform 0.3s;
    position: relative;
}
        
.gallery .card:hover {
    transform: translateY(-5px);
}
        
.gallery .card:nth-child(2), 
.gallery .card:nth-child(4),
.gallery .card:nth-child(5),
.gallery .card:nth-child(7) {
    background-size: cover;
    background-position: center;
    min-height: 300px;
    padding: 0;
}
        
.gallery div:nth-of-type(2) { 
    background: linear-gradient(rgba(13, 27, 57, 0.8), rgba(13, 27, 57, 0.8)), url('https://plus.unsplash.com/premium_photo-1707775061633-a38fda110174?q=80&w=1170&auto=format&fit=crop&ixlib=rb-4.1.0&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D');
}
.gallery div:nth-of-type(4){ 
    background: linear-gradient(rgba(13, 27, 57, 0.8), rgba(13, 27, 57, 0.8)), url('https://images.unsplash.com/photo-1517245386807-bb43f82c33c4?q=80&w=1170&auto=format&fit=crop&ixlib=rb-4.1.0&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D');
}
.gallery div:nth-of-type(5){ 
    background: linear-gradient(rgba(13, 27, 57, 0.8), rgba(13, 27, 57, 0.8)), url('https://images.unsplash.com/photo-1522202176988-66273c2fd55f?q=80&w=1171&auto=format&fit=crop&ixlib=rb-4.1.0&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D');
}
.gallery div:nth-of-type(7) { 
    background: linear-gradient(rgba(13, 27, 57, 0.8), rgba(13, 27, 57, 0.8)), url('https://images.unsplash.com/photo-1556761175-5973dc0f32e7?q=80&w=1330&auto=format&fit=crop&ixlib=rb-4.1.0&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D');
}
        
.cardNum {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    color: rgba(13, 27, 57, 0.1);
    margin-bottom: 10px;
}
.gallery p{
    color:var(--gray);
}
        
.subCard i {
    font-size: 2rem;
    color: var(--secondary);
    margin-bottom: 15px;
}
        
.subCard h3 {
    color: var(--primary);
    margin-bottom: 15px;
}
        
    
        
/* Testimonials */
.testimanial {
    padding: 100px 5%;
    text-align: center;
    background-color: var(--light);
}
        
/* Se eliminaron las reglas individuales de h2 y se unificaron arriba */
        
.containerComment {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}
        
.containerComment .card {
    background-color: white;
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    text-align: left;
    transition: transform 0.3s;
}
        
.containerComment .card:hover {
    transform: translateY(-10px);
}
        
.containerComment .card i {
    font-size: 2rem;
    color: var(--secondary);
    margin-bottom: 20px;
}
        
.containerComment p {
    color: var(--gray);
    line-height: 1.6;
    margin-bottom: 20px;
    font-style: italic;
}
        
.containerComment span i {
    color: #ffc107;
    font-size: 1.2rem;
    margin: 0 2px 20px 0;
}
        
.author {
    display: flex;
    align-items: center;
    gap: 15px;
}
        
.subCard img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
}
        
.author h4 {
    color: var(--primary);
}
        
.author span {
    color: var(--gray);
    font-size: 0.9rem;
}
        
/* Bar section */
.bar {
    padding: 80px 5%;
    background-color: var(--primary);
    color: white;
}
        
.containerCard {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
}
        
.containerCard .card {
    text-align: center;
    padding: 30px;
}
        
.containerCard .card span:first-child {
    font-size: 2rem;
    margin-bottom: 15px;
    display: block;
    color: var(--secondary);
}
        
.containerCard .card span:nth-child(2) {
    font-size: 2rem;
    font-weight: 700;
    display: block;
    margin-bottom: 10px;
}
        
/* Blog section */
.blog {
    padding: 100px 5%;
    text-align: center;
    background-color: white;
}
        
/* Se eliminaron las reglas individuales de h2 y se unificaron arriba */
        
.CardContainer {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}
        
.CardContainer .card {
    background-color: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: transform 0.3s;
}
        
.CardContainer .card:hover {
    transform: translateY(-10px);
}
        
.CardContainer img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}
        
.subCard {
    padding: 20px;
    text-align: left;
}
        
.subCard span {
    color: var(--secondary);
    font-size: 0.9rem;
}
        
.subCard a {
    display: block;
    margin-top: 15px;
    color: var(--primary);
    font-weight: 700;
    text-decoration: none;
    transition: color 0.3s;
}
        
.subCard a:hover {
    color: var(--secondary);
}
        
/* Footer */
.footer {
    background-color: var(--primary);
    color: white;
    padding-top: 80px;
    background: linear-gradient(rgba(13, 27, 57, 0.8), rgba(13, 27, 57, 0.8)), url('https://images.unsplash.com/photo-1551907053-251bc075d47c?q=80&w=1170&auto=format&fit=crop&ixlib=rb-4.1.0&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D')no-repeat center/cover;
}
            
        
        
.contactInf {
    display: flex;
    justify-content: center;
    gap: 40px;
    padding-bottom: 80px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    flex-wrap: wrap;
}
        
.contactInf .card {
    text-align: center;
    padding: 0 20px;
    min-width: 200px;
}
        
.contactInf .card span:first-child {
    display: block;
    color: var(--secondary);
    margin-bottom: 10px;
    font-weight: 600;
}
        
.endFooter {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    padding: 80px 5%;
}
        
.endFooter .row {
    display: flex;
    flex-direction: column;
    gap: 20px;
}
        
.endFooter .logTitle {
    display: flex;
    flex-direction: column;
}
        
.endFooter .logTitle .logo {
    width: 60px;
    height: 60px;
    margin-bottom: 15px;
    font-size: 24px;
}
        
.endFooter .logTitle span:first-child {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 5px;
}
        
.endFooter p {
    color: rgba(255,255,255,0.7);
    line-height: 1.6;
}
        
.socialMedia {
    display: flex;
    gap: 15px;
    list-style: none;
}
        
.socialMedia li {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: rgba(255,255,255,0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
}
        
.socialMedia li:hover {
    background-color: var(--secondary);
    transform: translateY(-3px);
}
        
.endFooter h3 {
    margin-bottom: 20px;
    font-size: 1.3rem;
}
        
.endFooter ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 15px;
}
        
.endFooter ul li a {
    color: rgba(255,255,255,0.7);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s;
}
        
.endFooter ul li a i {
    color: var(--secondary);
}
        
.endFooter ul li a:hover {
    color: white;
    transform: translateX(5px);
}
        
.btnLocation {
    width: 200px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background-color: var(--secondary);
    color: white;
    padding: 12px 25px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
    margin-top: 10px;
}
        
.btnLocation:hover {
    background-color:var(--accent);
    transform: translateY(-3px);
}
        
/* Responsive Adjustments - Se eliminaron las reglas redundantes de h2 */
@media (max-width: 992px) {
    .secSection {
        flex-direction: column;
    }
            
    .coaching {
        flex-direction: column;
    }
            
    .slideTitle {
        font-size: 2.5rem;
    }
}
        
@media (max-width: 768px) {
    .slider-container {
        height: 70vh;
    }
            
    .slideTitle {
        font-size: 2rem;
    }
            
    .nav-button {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
    }
}
        
@media (max-width: 576px) {
    .slider-container {
        height: 60vh;
    }
            
    
    .slideTitle {
        font-size: 1.8rem;
    }
            
    .sliderContent a {
        padding: 10px 20px;
        font-size: 0.9rem;
    }
}

/* estilo para traductor de lenguaje de la pagina */
.lang-selector {
    margin-left: 15px;
}

.lang-selector select {
    padding: 5px 10px;
    border-radius: 6px;
    border: 1px solid #ccc;
    background: #fff;
    font-size: 14px;
    cursor: pointer;
}

/* Estilo para la pagina de contacto */
.slider-container{
    display: flex;
    justify-content: center;
    align-items: center;
    background: linear-gradient(rgba(13, 27, 57, 0.8), rgba(13, 27, 57, 0.8)), url('https://images.unsplash.com/photo-1517400508447-f8dd518b86db?q=80&w=1170&auto=format&fit=crop&ixlib=rb-4.1.0&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D') no-repeat center/cover;
}



.contact-container{
    width: 100%;
    height: 800px;
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    
}

.contact-container .section h2 {
    text-align: start;
    margin: 0 0 5px 0;
}

.contact-container .section:nth-of-type(1){
    color: var(--gray);
}


.contact-container .section{

    width: 40%;
    height: 700px;
  
    
}

.contact-container .section  input{
    width: 100%;
     max-width:800px ;
     margin: 0;
   
}




 label {
    display: inline-block;
    margin-bottom: 8px;
    font-weight: 600;
    color: #1f2937; /* Gris casi negro */
    font-size: 14px;
    width: 100%;
    margin: 0;
}





.contact-container .section .btncontact{

   margin: 0 auto;
}

.contact-container section:nth-of-type(1), span,h2{
    margin-bottom: 10px;
}

section:nth-of-type(1),p{

    margin-bottom: 60px;

}



.contactInfo span{
    display: block;
    margin-bottom:30px ;
}

.contactInfo span i{
    text-align: center;
    background-color:var(--secondary) ;
    color:white;
    font-size: 1.5rem;
    width: 50px;
    height: 50px;
    padding: 10px;
    border-radius: 150px;
}

.contact-container .section:nth-of-type(2){
    background-color: white;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    border-radius: 5px;
}

/* Se eliminaron las reglas individuales de h2 y se unificaron arriba */


form {
    max-width: 600px;
    margin: 30px auto;
    display: flex;
    flex-direction: column;
    gap: 15px;
    font-family: Arial, sans-serif;
}
form h2{
    text-align: center;
}

input, select, textarea {
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-size: 16px;
    width: 100%;
    outline: none;
    transition: border-color 0.3s, box-shadow 0.3s;
}

input:focus, select:focus, textarea:focus {
    border-color: #007BFF;
    box-shadow: 0 0 4px rgba(0, 123, 255, 0.3);
}

input:invalid, select:invalid, textarea:invalid {
    border-color: #e74c3c;
}

input:invalid:focus, select:invalid:focus, textarea:invalid:focus {
    box-shadow: 0 0 4px rgba(231, 76, 60, 0.3);
}

button {
    padding: 14px;
    border: none;
    border-radius: 6px;
    background-color: #007BFF;
    color: #fff;
    font-size: 16px;
    cursor: pointer;
    transition: background 0.3s;
}

button:hover {
    background-color: #0056b3;
}

/* Estilo para la pagina de contacto FAQ */

.faq-Container{
    padding: 20px 0;
    width: 100%;
    height: 800px;
    background-color: white;
    text-align: center;
}

/* ====== FAQ Container ====== */
.faq-Container {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 4px 16px rgba(0,0,0,0.08);
    padding: 2rem;
    margin: 2rem auto;
    font-family: "Inter", sans-serif;
    color: #1a1a1a;
}

/* ====== Título ====== */
.faq-Container .wwaTitle {
    display: inline-block;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #444;
    margin-bottom: 0.5rem;
}

/* Se eliminaron las reglas individuales de h2 y se unificaron arriba */



/* ================================
   FAQ Container 
================================ */
.faq-Container {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
    padding: 2rem;
    width:100%;
    height:600px;
    font-family: "Inter", sans-serif;
    color: #1a1a1a;
    margin: 0;
}

/* ================================
   FAQ Header
================================ */
/* ================================
   FAQ Container 
================================ */
.faq-Container {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
    padding: 2rem;
    font-family: "Inter", sans-serif;
    color: #1a1a1a;
}

/* ================================
   FAQ Header
================================ */
.faq-Container .wwaTitle {
    display: inline-block;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #444;
    margin-bottom: 0.5rem;
}

/* Se eliminaron las reglas individuales de h2 y se unificaron arriba */

/* ================================
   Questions Grid
================================ */
.faq-questions {
    display: grid;
    grid-template-columns: 1fr 1fr; /* dos columnas */
    gap: 1.5rem 2rem;
    margin-top: 100px;
}

/* ================================
   FAQ Item
================================ */
.faq-item {
    border-bottom: 1px solid #eee;
    padding-bottom: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.faq-item:hover .faq-question {
    color: #0070f3;
}

/* ================================
   Question (pregunta)
================================ */
.faq-question {
    font-size: 16px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.faq-question i {
    font-size: 14px;
    color: #555;
    transition: transform 0.3s ease, color 0.3s ease;
}

/* ================================
   Answer (respuesta oculta)
================================ */
.faq-answer {
    font-size: 14px;
    color: #777;
    margin-top: 0.5rem;
    line-height: 1.5;
    display: none;
}

/* ================================
   Active State (cuando abre)
================================ */
.faq-item.active .faq-answer {
    display: block;
}

.faq-item.active .faq-question i {
    transform: rotate(45deg);
    color: #0070f3;
}

/* Tablets (≤1024px) */
@media (max-width: 1024px) {
    .contact-container {
        flex-direction: column;
        height: auto;
        padding: 2rem 1rem;
        gap: 2rem;
    }

    .contact-container .section {
        width: 80%;
        height: auto;
    }

    .faq-questions {
        grid-template-columns: 1fr; /* una columna en lugar de dos */
        margin-top: 2rem;
    }
}

/* Móviles (≤768px) */
@media (max-width: 768px) {
    .contact-container {
        flex-direction: column;
        align-items: center;
        padding: 1.5rem 1rem;
    }

    .contact-container .section {
        width: 95%;
        padding: 1rem;
    }

    .contact-container h2 {
        font-size: 1.5rem;
    }

    .contactInfo span {
        font-size: 0.9rem;
    }

    .faq-Container {
        padding: 1.5rem 1rem;
    }

    .faq-Container h2 {
        font-size: 1.2rem;
    }

    .faq-question {
        font-size: 14px;
    }

    .faq-answer {
        font-size: 13px;
    }
}

/* Extra pequeños (≤480px) */
@media (max-width: 480px) {
    .contact-container {
        gap: 1.5rem;
    }

    .contact-container .section {
        width: 100%;
        padding: 1rem;
    }

    .contact-container h2 {
        font-size: 1.3rem;
    }

    .contactInfo span i {
        width: 40px;
        height: 40px;
        font-size: 1rem;
        padding: 8px;
    }

    form input,
    form select,
    form textarea,
    form button {
        font-size: 14px;
    }

    .faq-questions {
        gap: 1rem;
    }

    .faq-question {
        font-size: 13px;
    }

    .faq-answer {
        font-size: 12px;
    }
}

/* Imagen ocupa 80% arriba */
.about-hero-image {
    width: 80%;
    height: 600px;
    margin: 40px auto;
    border-radius: 12px;
    overflow: hidden;
}

.about-hero-image img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    border-radius: 12px;
}

/* Row de 3 columnas */
.about-hero-row {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr; /* Why Choose Us más grande */
    gap: 2rem;
    margin: -10rem auto 2rem auto; /* sube el row para que entre dentro de la imagen */
    width: 70%;
    align-items: end;
}

/* Card Why Choose Us */
.about-card {
    background: #fff;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 6px 18px rgba(0,0,0,0.1);
    z-index: 2;
    color:#374151 ;
}

.about-subtitle {
    color: var(--accent);
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    margin-bottom: 0.5rem;
}

/* Se eliminaron las reglas individuales de h2 y se unificaron arriba */

.about-card ul {
    padding-left: 1rem;
    margin-bottom: 1rem;
    
}

.about-card ul li {
    margin-bottom: 0.6rem;
    font-size: 0.95rem;
}

.about-btn {
    display: inline-block;
    padding: 0.7rem 1.5rem;
    background: var(--accent);
    color: #fff;
    font-size: 0.9rem;
    border-radius: 6px;
    font-weight: 600;
    transition: background 0.3s ease;
    text-decoration: none;
}

.about-btn:hover {
     background: var(--secondary);
}

/* Mission + Vision */
.about-info-box {
    background: #fff;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

.about-icon {
    font-size: 3.6rem;
    margin-bottom: 0.5rem;
    color: var(--accent);
}

.about-info-box h3 {
    font-size: 1.2rem;
    margin-bottom: 0.8rem;
    color: #111827;
}

.about-info-box p {
    font-size: 0.95rem;
    color: #374151;
    margin: 0;
}

/* para la primera secion immigracion en about */
.immigration-container{
    display: flex;
    justify-content: center;
    margin-top: 90px;
}

.immigration-section {
    display: flex;
    justify-content: center;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    width: 80%;
    overflow: hidden;
}

.image-side img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.image-side {
    flex: 1;
    min-width: 45%;
}

.content-side {
    flex: 1;
    padding: 40px;
}

.who {
    color: var(--accent);
    font-weight: bold;
    font-size: 1.2rem;
    margin-bottom: 10px;
}

.content-side h1 {
    font-size: 28px;
    font-weight: bold;
    margin-bottom: 15px;
}

.description {
    font-size: 16px;
    margin-bottom: 25px;
    line-height: 1.6;
}

.feature {
    display: flex;
    align-items: flex-start;
    margin-bottom: 20px;
}

.feature .icon {
    font-size: 22px;
    margin-right: 12px;
}

.feature h3 {
    font-size: 18px;
    margin-bottom: 5px;
}

.feature p {
    font-size: 15px;
    color: #555;
}

.actions {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-top: 20px;
}

.btn {
    background: #3b82f6;
    color: #fff;
    padding: 12px 20px;
    border-radius: 8px;
    text-decoration: none;
    font-size: 14px;
    transition: background 0.3s;
}

.btn:hover {
    background: #2563eb;
}

.phone p {
    font-size: 14px;
    color: #666;
}

.phone strong {
    color: #3b82f6;
    font-size: 16px;
}

.actions p{
    margin: 5px 0 0 0;
    text-align: center;
}


.formulario {
    display: none;
    padding: 20px;
    border: 1px solid #ccc;
    margin: 20px auto;
    border-radius: 8px;
    max-width: 500px;
    background: #f9f9f9;
}

.formulario.active {
    display: block;
}

input, button {
    display: block;
    margin: 10px 0;
    padding: 8px;
    width: 100%;
    max-width: 400px;
}

button {
    background: #007bff;
    color: white;
    border: none;
    border-radius: 6px;
    cursor: pointer;
}

button:hover {
    background: #0056b3;
}

/* ----------- RESPONSIVE DESIGN ----------- */

/* Tablets (≤1024px) */
@media (max-width: 1024px) {
    .immigration-section {
        flex-direction: column;
        width: 90%;
    }

    .image-side {
        min-width: 100%;
        height: 300px;
    }

    .image-side img {
        height: 100%;
        object-fit: cover;
    }

    .content-side {
        padding: 20px;
    }

    .about-hero-row {
        grid-template-columns: 1fr 1fr;
        width: 90%;
        margin: -6rem auto 2rem auto;
    }

    .about-hero-image {
        width: 90%;
        height: 400px;
    }
}

/* Móviles (≤768px) */
@media (max-width: 768px) {
    .immigration-section {
        flex-direction: column;
        width: 95%;
    }

    .image-side {
        height: 250px;
    }

    .content-side h1 {
        font-size: 22px;
    }

    .description {
        font-size: 14px;
    }

    .feature h3 {
        font-size: 16px;
    }

    .feature p {
        font-size: 14px;
        
    }

    .actions {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }

    .about-hero-row {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        margin: -4rem auto 2rem auto;
        width: 90%;
    }

    .about-hero-image {
        width: 95%;
        height: 250px;
    }

    .about-card h2 {
        font-size: 1.4rem;
    }

    .about-info-box h3 {
        font-size: 1rem;
    }
}

/* Extra pequeños (≤480px) */
@media (max-width: 480px) {
    .content-side {
        padding: 15px;
    }

    .content-side h1 {
        font-size: 20px;
    }

    .btn {
        padding: 10px 15px;
        font-size: 13px;
    }

    .about-hero-row {
        width: 95%;
        margin-top: -2rem;
    }

    .about-card, 
    .about-info-box {
        padding: 1rem;
    }

    .about-card h2 {
        font-size: 1.2rem;
    }
}

/* 🔹 Estilos base del contenedor */
.mainform-container {
    position: relative; /* necesario para ubicar los aviones dentro */
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    margin: 0;
    background: #f8f9fa; /* color de fondo */
    overflow: hidden; /* evita que los iconos se salgan */
}

/* 🔹 Estilos base para los aviones */
.mainform-container .plane {
    position: absolute;
    font-family: "Font Awesome 5 Free"; /* asegúrate de tener Font Awesome cargado */
    font-weight: 900;
    content: "\f072"; /* fa-plane */
    color: rgba(0, 123, 255, 0.15); /* azul clarito */
    font-size: 38px;
    pointer-events: none; /* que no interfiera con clicks */
    transform: rotate(-40deg); /* dirección diagonal */
}

/* 🔹 Línea 0 (inicio, expandida) */
.mainform-container .plane0-1 { bottom: 10%; left: 0%; }
.mainform-container .plane0-2 { bottom: 30%; left: 10%; }
.mainform-container .plane0-3 { bottom: 50%; left: 20%; }
.mainform-container .plane0-4 { bottom: 70%; left: 30%; }
.mainform-container .plane0-5 { bottom: 90%; left: 40%; }

/* 🔹 Línea 1 */
.mainform-container .plane1 { bottom: 20%; left: 5%; }
.mainform-container .plane2 { bottom: 35%; left: 15%; }
.mainform-container .plane3 { bottom: 50%; left: 25%; }
.mainform-container .plane4 { bottom: 65%; left: 35%; }
.mainform-container .plane5 { bottom: 80%; left: 45%; }

/* 🔹 Línea 2 */
.mainform-container .plane11 { bottom: 15%; left: 20%; }
.mainform-container .plane12 { bottom: 30%; left: 30%; }
.mainform-container .plane13 { bottom: 45%; left: 40%; }
.mainform-container .plane14 { bottom: 60%; left: 50%; }
.mainform-container .plane15 { bottom: 75%; left: 60%; }
.mainform-container .plane16 { bottom: 90%; left: 70%; }

/* 🔹 Línea 3 */
.mainform-container .plane19 { bottom: 10%; left: 35%; }
.mainform-container .plane20 { bottom: 25%; left: 45%; }
.mainform-container .plane21 { bottom: 40%; left: 55%; }
.mainform-container .plane22 { bottom: 55%; left: 65%; }
.mainform-container .plane23 { bottom: 70%; left: 75%; }
.mainform-container .plane24 { bottom: 85%; left: 85%; }

/* 🔹 Línea 4 */
.mainform-container .plane26 { bottom: 5%; left: 50%; }
.mainform-container .plane27 { bottom: 20%; left: 60%; }
.mainform-container .plane28 { bottom: 35%; left: 70%; }
.mainform-container .plane29 { bottom: 50%; left: 80%; }
.mainform-container .plane30 { bottom: 65%; left: 90%; }
.mainform-container .plane31 { bottom: 80%; left: 100%; }

/* 🔹 Línea 5 (final, expandida) */
.mainform-container .plane32 { bottom: 10%; left: 60%; }
.mainform-container .plane33 { bottom: 30%; left: 70%; }
.mainform-container .plane34 { bottom: 50%; left: 80%; }
.mainform-container .plane35 { bottom: 70%; left: 90%; }
.mainform-container .plane36 { bottom: 90%; left: 100%; }

.form-container {
    max-width: 800px;
    width: 100%;
    padding: 20px;
    box-shadow: 0 2px 6px rgba(0,0,0,0.1);
    border-radius: 8px;
    background: #fff;
    position: relative;
    z-index: 1; /* se pone por encima del fondo */
}

/* Se eliminaron las reglas individuales de h2 y se unificaron arriba */

.form-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
}

.form-grid div {
    display: flex;
    flex-direction: column;
}



.form-grid input,
.form-grid select {
    width: 100%;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 6px;
    outline: none;
    font-size: 14px;
}

.form-grid input:focus,
.form-grid select:focus {
    border-color: #007bff;
}

.btn {
    background: #007bff;
    color: #fff;
    padding: 12px;
    border: none;
    border-radius: 6px;
    font-size: 16px;
    cursor: pointer;
    transition: background 0.3s;
    width: 30%;
}

.btn:hover {
    background: #0056b3;
}
    
/* blog articles*/
.article-container {
    max-width: 900px;
    margin: 40px auto;
    background: #ffffff;
    padding: 30px;
    border-radius: 6px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.08);
}

.article-image img {
    width: 100%;
    border-radius: 6px;
    margin-bottom: 20px;
}

.article-meta {
    font-size: 14px;
    color: #777;
    margin-bottom: 10px;
}

.article-meta .author {
    font-weight: bold;
}

.article-title {
    font-size: 32px;
    margin-bottom: 20px;
    color: #1f2933;
}

/* Se eliminaron las reglas individuales de h2 y se unificaron arriba */

h3 {
    margin-top: 15px;
    font-size: 17px;
    color: var(--secondary);
}

p {
    margin-top: 10px;
    font-size: 16px;
    
}

.share {
    margin-top: 40px;
    padding-top: 20px;
    border-top: 1px solid #e5e7eb;
}

.share h4 {
    margin-bottom: 10px;
}

.share-buttons a {
    display: inline-block;
    margin-right: 10px;
    text-decoration: none;
    color: var(--secondary);
    font-weight: bold;
}

.share-buttons a:hover {
    text-decoration: underline;
}

/* Responsive */
@media (max-width: 600px) {
    .article-title {
        font-size: 24px;
    }

    .article-container {
        padding: 20px;
    }
}

/* 🔥 Responsive: TODO en una sola columna */
@media (max-width: 800px) {
    .form-grid {
        grid-template-columns: 1fr; /* una columna */
    }
    .form-grid div,
    .form-grid button {
        grid-column: 1 / -1; /* cada elemento ocupa toda la fila */
        width: 100%;
    }
}

/* css para selector de idioma*/
#langSwitcher {
    padding: 8px 12px;
    border: 1px solid #ddd;
    border-radius: 4px;
    background: white;
    cursor: pointer;
    margin-top: 10px;
}

#langSwitcher:focus {
    outline: none;
    border-color: #007bff;
}