*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    font-family:'Poppins',sans-serif;
}

.logo-link{
    display:flex;
    align-items:center;
}

.logo{
    width:120px; /* controla el tamaño del logo */
}

body{
    background:#f4f7fb;
    color:#222;
    overflow-x:hidden;
}

/* ===== ANIMATIONS ===== */
@keyframes fadeUp {
    from { opacity:0; transform:translateY(40px); }
    to { opacity:1; transform:translateY(0); }
}

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

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

.reveal{
    opacity:0;
    transform:translateY(40px);
    transition:all 1s ease;
}

.reveal.active{
    opacity:1;
    transform:translateY(0);
}

/* ===== NAVBAR ===== */
header{
    position:fixed;
    width:100%;
    background:white;
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding:18px 8%;
    z-index:1000;
    transition:all 0.4s ease;
}

header.scrolled{
    box-shadow:0 5px 25px rgba(0,0,0,0.08);
    padding:14px 8%;
}

.logo{
    font-weight:700;
    font-size:20px;
    color:#1976d2;
}

nav{
    display:flex;
    gap:25px;
}

nav a{
    text-decoration:none;
    color:#333;
    font-size:14px;
    font-weight:500;
    position:relative;
}

nav a::after{
    content:"";
    position:absolute;
    width:0;
    height:2px;
    background:#1976d2;
    left:0;
    bottom:-5px;
    transition:0.3s;
}

nav a:hover::after{
    width:100%;
}

.contact-btn{
    background:linear-gradient(135deg,#1976d2,#42a5f5);
    color:white;
    padding:8px 20px;
    border-radius:30px;
    box-shadow:0 8px 20px rgba(25,118,210,0.3);
    transition:0.3s;
}

.contact-btn:hover{
    transform:translateY(-3px);
    box-shadow:0 15px 30px rgba(25,118,210,0.4);
}

/* ===== HERO ===== */
.hero{
    height:100vh;
    background: url('../../Imágenes Premium/Hero2.png') center/cover;
    display:flex;
    align-items:center;
    padding:0 8%;
    color:white;
}

.hero-content{
    max-width:650px;
    animation:fadeLeft 1.2s ease forwards;
}

.hero h1{
    font-size:60px;
    line-height:1.1;
    margin-bottom:20px;
}

.hero p{
    margin-bottom:30px;
    font-weight:300;
}

.hero-buttons a{
    display:inline-block;
    margin-right:15px;
    padding:14px 30px;
    border-radius:30px;
    text-decoration:none;
    font-weight:500;
    transition:0.3s;
}

.btn-primary{
    background:linear-gradient(135deg,#1976d2,#42a5f5);
    color:white;
    /*box-shadow:0 10px 25px rgba(25,118,210,0.4);*/
    padding: 2% 0%;
    border-radius: 30px;
    cursor: pointer;
}

.btn-primary:hover{
    transform:translateY(-4px);
}

.btn-outline{
    border:2px solid white;
    color:white;
}

.btn-outline:hover{
    background:white;
    color:#1976d2;
}

/* ===== SECTIONS ===== */
.section{
    padding:120px 8%;
    text-align:center;
}

.section h2{
    font-size:38px;
    margin-bottom:20px;
}

.section p{
    max-width:700px;
    margin:0 auto 60px;
    color:#666;
}

/* ===== CARDS ===== */
.cards{
    display:flex;
    gap:30px;
    flex-wrap:wrap;
    justify-content:center;
}

.card{
    background:white;
    border-radius:20px;
    overflow:hidden;
    width:420px;
    box-shadow:0 20px 40px rgba(0,0,0,0.05);
    transition:0.4s;
    transform:translateY(40px);
    opacity:0;
}

.card.active{
    transform:translateY(0);
    opacity:1;
}

.card:hover{
    transform:translateY(-10px);
    box-shadow:0 30px 60px rgba(0,0,0,0.1);
}

.card img{
    width:100%;
    height:280px;
    object-fit:cover;
}

.card-body{
    padding:30px;
}

/* ===== IMAGE SECTION ===== */
.image-section img{
    width:100%;
    border-radius:20px;
    box-shadow:0 30px 60px rgba(0,0,0,0.08);
    transition:0.4s;
}

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

/* ===== FOOTER ===== */
footer{
    background:#0f172a;
    color:white;
    padding:80px 8%;
    text-align:center;
}

/* ===== RESPONSIVE ===== */
@media(max-width:768px){
    .hero h1{
        font-size:38px;
    }
    .cards{
        flex-direction:column;
        align-items:center;
    }
}

/* ===== FOOTER ===== */
footer{
    background:#0f172a;
    color:white;
    padding:60px 8%;
}

.footer-content{
    display:flex;
    justify-content:space-between;
    flex-wrap:wrap;
    gap:40px;
}

.footer-column h4{
    margin-bottom:15px;
}

.footer-column a{
    display:block;
    text-decoration:none;
    color:#cbd5e1;
    margin-bottom:8px;
    font-size:14px;
}

.footer-bottom{
    text-align:center;
    margin-top:40px;
    font-size:13px;
    color:#94a3b8;
}

/* ===== RESPONSIVE ===== */
@media(max-width:1024px){
    .hero h1{
        font-size:42px;
    }
}

@media(max-width:768px){

    header{
        flex-direction:column;
        gap:10px;
    }

    nav{
        flex-wrap:wrap;
        justify-content:center;
    }

    .hero{
        height:auto;
        padding:80px 8%;
    }

    .hero h1{
        font-size:34px;
    }

    .section{
        padding:70px 8%;
    }

    .card{
        width:100%;
    }

    .footer-content{
        flex-direction:column;
    }
}

@media(max-width:480px){
    .hero h1{
        font-size:28px;
    }

    .hero-buttons a{
        display:block;
        margin-bottom:15px;
    }
}

/* ===== MOBILE MENU ===== */

.menu-toggle{
    display:none;
    flex-direction:column;
    cursor:pointer;
    gap:5px;
}

.menu-toggle span{
    width:25px;
    height:3px;
    background:#1976d2;
    transition:0.4s;
}

/* ANIMATION TO X */

.menu-toggle.active span:nth-child(1){
    transform:rotate(45deg) translate(5px,5px);
}

.menu-toggle.active span:nth-child(2){
    opacity:0;
}

.menu-toggle.active span:nth-child(3){
    transform:rotate(-45deg) translate(6px,-6px);
}

@media(max-width:768px){

    .menu-toggle{
        display:flex;
    }

}

.menu-close{
    position:absolute;
    top:25px;
    right:25px;
    font-size:28px;
    cursor:pointer;
    color:#1976d2;
}

.menu-overlay{
    position:fixed;
    width:100%;
    height:100%;
    background:rgba(0,0,0,0.5);
    top:0;
    left:0;
    opacity:0;
    visibility:hidden;
    transition:0.4s;
    z-index:998;
}

.menu-overlay.active{
    opacity:1;
    visibility:visible;
}

/* Ocultar la X en desktop */
.menu-close{
    display:none; /* por defecto no se ve */
}

/* Mostrar la X solo en móvil */
@media(max-width:768px){
    .menu-close{
        display:block;
    }
}

@media(max-width:768px){

    .menu-toggle{
        display:flex;
    }

    nav{
        position:fixed;
        top:0;
        right:-100%;
        width:260px;
        height:100vh;
        background:white;
        flex-direction:column;
        padding:100px 30px;
        box-shadow:-10px 0 30px rgba(0,0,0,0.1);
        transition:0.4s;
        z-index:999;
    }

    nav.active{
        right:0;
    }

    nav a{
        margin-bottom:20px;
        font-size:16px;
    }

    header{
        flex-direction:row;
    }
}




/*============================================================H2A========================================================*/
/* HERO H2A */

.hero-h2a{
    position:relative;
    height: 100vh;
    background:url("../../Imágenes Premium/7758 (1).jpg") center/cover no-repeat;
    background-position-y: 30%;
    display:flex;
    align-items:center;
    justify-content:center;
    text-align:center;
    color:white;
}

.hero-overlay{
    position:absolute;
    width:100%;
    height:100%;
    background:rgba(0,0,0,0.45);
}

.hero-h2a-content{
    position:relative;
    max-width:900px;
    padding:0 20px;
}

.hero-h2a h1{
    font-size:58px;
    line-height:1.2;
    margin-bottom:20px;
    font-weight:600;
}

.hero-h2a p{
    font-size:18px;
    opacity:0.9;
}


/* SECTION TEXT */

.section-text{
    max-width:700px;
    margin:0 auto 60px;
    color:#555;
}


/* JOB GRID */

.jobs-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:30px;
    margin-top:40px;
}

.jobs-grid2{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:30px;
    margin-top:40px;
}


/* JOB CARD */

.job-card{
    background:white;
    border-radius:18px;
    /*padding:40px 20px;*/
    text-align:center;
    box-shadow:0 15px 35px rgba(0,0,0,0.06);
    transition:all .35s ease;
}

.job-card:hover{
    transform:translateY(-8px);
    box-shadow:0 25px 60px rgba(0,0,0,0.1);
}

.job-icon{
    font-size:40px;
    margin-bottom:15px;
}

.job-card h3{
    font-size:16px;
    font-weight:500;
    color:#333;
}

.divazul{
    background: #355f8a;border-radius: 18px;padding: 20% 5% 20% 5%;
}
.divblanco{
    padding: 20px 20px;
}

.tamanioimg{
    width: 30%;
}


/* TABLET */

@media(max-width:1024px){

    .jobs-grid{
        grid-template-columns:repeat(2,1fr);
    }

    .jobs-grid2{
        grid-template-columns:repeat(2,1fr);
    }

    .hero-h2a h1{
        font-size:42px;
    }

}


/* MOBILE */

@media(max-width:768px){

    .hero-h2a{
        height:auto;
        padding:120px 20px 80px;
    }

    .hero-h2a h1{
        font-size:32px;
    }

    .hero-h2a p{
        font-size:16px;
    }

    .jobs-grid{
        grid-template-columns:1fr;
    }

    .jobs-grid2{
        grid-template-columns:1fr;
    }

}




/* =========================================================================== ABOUT HERO ================================================== */

.about-hero{
    position:relative;
    height:100vh;
    background:url("../../Imágenes Premium/Acerca de Hero.jpg") center/cover no-repeat;
    background-position-y: 10%;
    display:flex;
    align-items:center;
    justify-content:center;
    text-align:center;
    color:white;
}

.about-overlay{
    position:absolute;
    width:100%;
    height:100%;
    background:rgba(0,0,0,0.45);
}

.about-hero-content{
    position:relative;
    max-width:850px;
    padding:0 20px;
}

.about-hero h1{
    font-size:55px;
    margin-bottom:20px;
}

.about-hero p{
    font-weight:300;
}


/* ================= ABOUT SECTION ================= */

.about-section{
    padding-top:100px;
}

.section-text{
    max-width:750px;
    margin:0 auto 70px;
}


/* GRID */

.about-grid{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:60px;
    align-items:center;
}


/* IMAGE */

.about-img img{
    width:100%;
    border-radius:20px;
    box-shadow:0 25px 60px rgba(0,0,0,0.08);
}


/* IDENTITY */

.about-identity h3{
    font-size:28px;
    margin-bottom:25px;
}

.identity-list{
    list-style:none;
}

.identity-list li{
    margin-bottom:18px;
    display:flex;
    gap:12px;
    color:#555;
}

.identity-list span{
    color:#1976d2;
    font-weight:bold;
}


/* ================= RESPONSIVE ================= */

@media(max-width:1024px){

    .about-hero h1{
        font-size:40px;
    }

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

}

@media(max-width:768px){

    .about-hero{
        height:auto;
        padding:120px 20px 80px;
    }

    .about-hero h1{
        font-size:32px;
    }

}



/* ====================================================== CONTACT PAGE =================================================================== */

.contact-hero{
    background:linear-gradient(#c6d8e4,#cfe0ea);
    padding:140px 8% 80px 8%;
    text-align:center;
}

.contact-container{
    max-width:900px;
    margin:auto;
}

.contact-hero h1{
    font-size:48px;
    margin-bottom:20px;
}

.contact-hero p{
    max-width:700px;
    margin:0 auto 50px auto;
    color:#555;
}


/* CARD */

.contact-card{
    background:white;
    border-radius:25px;
    padding:40px;
    box-shadow:0 20px 50px rgba(0,0,0,0.08);
    text-align:left;
}


/* FORM */

.contact-card label{
    font-size:14px;
    font-weight:500;
}

.contact-card input,
.contact-card textarea{
    width:100%;
    border:none;
    background:#f1f3f6;
    padding:16px;
    border-radius:30px;
    margin:10px 0 20px 0;
    font-size:14px;
}

.contact-card textarea{
    border-radius:18px;
    height:120px;
    resize:none;
}


/* TWO INPUTS */

.contact-row{
    display:flex;
    gap:20px;
}

.contact-row div{
    flex:1;
}


/* BUTTON */

.contact-btn-send{
    width:100%;
    border:none;
    padding:16px;
    border-radius:30px;
    background:linear-gradient(135deg,#1976d2,#1ea6d6);
    color:white;
    font-size:16px;
    font-weight:500;
    cursor:pointer;
    transition:.3s;
}

.contact-btn-send:hover{
    transform:translateY(-3px);
    box-shadow:0 10px 25px rgba(25,118,210,0.3);
}


.contact-note{
    text-align:center;
    font-size:13px;
    color:#777;
    margin-top:15px;
}


/* CONTACT INFO */

.contact-info{
    margin-top:40px;
}

.contact-info h3{
    margin-bottom:10px;
}

.contact-info a{
    color:#1976d2;
    text-decoration:none;
}

.contact-info p{
    margin-top:10px;
    font-size:14px;
    color:#666;
}


/* ================= RESPONSIVE ================= */

@media(max-width:1024px){

    .contact-hero h1{
        font-size:36px;
    }

}

@media(max-width:768px){

    .contact-row{
        flex-direction:column;
    }

    .contact-card{
        padding:30px;
    }

    .contact-hero{
        padding:120px 20px 60px 20px;
    }

    .contact-hero h1{
        font-size:30px;
    }

}

@media(max-width:480px){

    .contact-hero h1{
        font-size:26px;
    }

}




/* ======================================================
EMPLOYERS PAGE
====================================================== */

.employers-hero{
    position:relative;
    height:100vh;
    background:url("../../Imágenes Premium/Employers Hero OPT.png") center/cover no-repeat;
    background-position-y: 30%;
    display:flex;
    align-items:center;
    justify-content:center;
    text-align:center;
    color:white;
}

.employers-overlay{
    position:absolute;
    width:100%;
    height:100%;
    background:rgba(0,0,0,0.45);
}

.employers-hero-container{
    position:relative;
    display:grid;
    grid-template-columns:1fr 2fr 1fr;
    align-items:center;
    width:90%;
    max-width:1200px;
}

.hero-text h1{
    font-size:54px;
    margin-bottom:20px;
}

.hero-text p{
    font-size:16px;
    opacity:.9;
}

.hero-worker img{
    width:100%;
    max-width:280px;
}

/* ================= BENEFITS ================= */

.benefits-section{
    padding:120px 8%;
    background:#f6f8fb;
}

.benefits-grid{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:60px;
    align-items:center;
}

.benefits-image img{
    width:100%;
    border-radius:20px;
    box-shadow:0 20px 50px rgba(0,0,0,0.08);
}

.benefits-text h2{
    font-size:36px;
    margin-bottom:30px;
}

.benefits-list{
    list-style:none;
}

.benefits-list li{
    margin-bottom:18px;
    color:#555;
    padding-left:22px;
    position:relative;
}

.benefits-list li::before{
    content:"›";
    position:absolute;
    left:0;
    color:#1976d2;
    font-weight:bold;
}


/* ================= CONNECT ================= */

.connect-section{
    padding:120px 8%;
    text-align:center;
}

.connect-container{
    max-width:750px;
    margin:auto;
}

.connect-section h2{
    font-size:42px;
    margin-bottom:20px;
}

.connect-section p{
    margin-bottom:50px;
    color:#666;
}

/* FORM */

.connect-form{
    background:white;
    padding:40px;
    border-radius:25px;
    box-shadow:0 20px 60px rgba(0,0,0,0.08);
}

.form-row{
    margin-bottom:20px;
}

.form-row.two{
    display:flex;
    gap:20px;
}

.connect-form input,
.connect-form textarea{
    width:100%;
    border:none;
    background:#f1f3f6;
    padding:16px;
    border-radius:30px;
    font-size:14px;
}

.connect-form textarea{
    border-radius:18px;
    height:120px;
    resize:none;
}

.connect-form button{
    margin-top:10px;
    width:100%;
}


/* CONTACT INFO */

.contact-extra{
    margin-top:40px;
}

.contact-extra a{
    color:#1976d2;
    text-decoration:none;
}

.contact-extra p{
    margin-top:10px;
    color:#777;
}

/* ================= RESPONSIVE ================= */

@media(max-width:1024px){

    .employers-hero-container{
        grid-template-columns:1fr;
        gap:40px;
    }

    .hero-worker{
        display:none;
    }

    .hero-text h1{
        font-size:40px;
    }

    .benefits-grid{
        grid-template-columns:1fr;
    }

}

@media(max-width:768px){

    .employers-hero{
        height:auto;
        padding:140px 20px 80px;
    }

    .hero-text h1{
        font-size:30px;
    }

    .connect-section h2{
        font-size:30px;
    }

    .form-row.two{
        flex-direction:column;
    }

}

@media(max-width:480px){

    .hero-text h1{
        font-size:26px;
    }

}
























/* =================================================
WORKERS PAGE
================================================= */

.workers-hero{
    position:relative;
    height:100vh;
    background:url("../../Imágenes Premium/19079.jpg") center/cover no-repeat;
    display:flex;
    align-items:center;
    justify-content:center;
    text-align:center;
    color:white;
}

.workers-overlay{
    position:absolute;
    width:100%;
    height:100%;
    background:rgba(0,0,0,0.45);
}

.workers-hero-content{
    position:relative;
    max-width:900px;
    padding:0 20px;
}

.workers-hero h1{
    font-size:58px;
    line-height:1.2;
    margin-bottom:20px;
}

.workers-hero p{
    font-size:18px;
    opacity:.9;
}


/* JOB BENEFITS */

.workers-benefits{
    padding:120px 8%;
    background:#f6f8fb;
}

.workers-grid{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:60px;
    align-items:center;
}

.workers-image img{
    width:100%;
    border-radius:20px;
    box-shadow:0 20px 50px rgba(0,0,0,0.08);
}

.workers-text h2{
    font-size:34px;
    margin-bottom:30px;
}

.workers-text ul{
    list-style:none;
}

.workers-text li{
    margin-bottom:18px;
    padding-left:22px;
    position:relative;
    color:#555;
}

.workers-text li::before{
    content:"›";
    position:absolute;
    left:0;
    color:#1976d2;
    font-weight:bold;
}


/* CONTACT */

.workers-contact{
    padding:120px 8%;
    text-align:center;
}

.workers-contact-container{
    max-width:750px;
    margin:auto;
}

.workers-contact h2{
    font-size:42px;
    margin-bottom:20px;
}

.workers-contact p{
    margin-bottom:50px;
    color:#666;
}


/* FORM */

.workers-form{
    background:white;
    padding:40px;
    border-radius:25px;
    box-shadow:0 20px 60px rgba(0,0,0,0.08);
    text-align:left;
}

.workers-form label{
    font-size:14px;
    font-weight:500;
}

.workers-form input,
.workers-form textarea{
    width:100%;
    border:none;
    background:#f1f3f6;
    padding:16px;
    border-radius:30px;
    margin:10px 0 20px 0;
}

.workers-form textarea{
    border-radius:18px;
    height:120px;
    resize:none;
}

.workers-row{
    display:flex;
    gap:20px;
}

.workers-row div{
    flex:1;
}

.workers-form button{
    width:100%;
    margin-top:10px;
}

.form-note{
    text-align:center;
    font-size:13px;
    color:#777;
    margin-top:15px;
}


/* CONTACT INFO */

.workers-contact-info{
    margin-top:40px;
}

.workers-contact-info a{
    color:#1976d2;
    text-decoration:none;
}

.workers-contact-info p{
    margin-top:10px;
    color:#777;
}


/* RESPONSIVE */

@media(max-width:1024px){

    .workers-grid{
        grid-template-columns:1fr;
    }

    .workers-hero h1{
        font-size:42px;
    }

}

@media(max-width:768px){

    .workers-hero{
        height:auto;
        padding:140px 20px 80px;
    }

    .workers-hero h1{
        font-size:30px;
    }

    .workers-contact h2{
        font-size:30px;
    }

    .workers-row{
        flex-direction:column;
    }

}

@media(max-width:480px){

    .workers-hero h1{
        font-size:26px;
    }

}









/* ================= H2B HERO ================= */

.hero-h2b{
    position:relative;
    height:100vh;
    background:url("../../Imágenes Premium/357503 (1).jpg") center/cover no-repeat;
    background-position-y:30%;
    display:flex;
    align-items:center;
    justify-content:center;
    text-align:center;
    color:white;
}

.hero-h2b-content{
    position:relative;
    max-width:900px;
    padding:0 20px;
}

.hero-h2b h1{
    font-size:58px;
    line-height:1.2;
    margin-bottom:20px;
}

.hero-h2b p{
    font-size:18px;
    opacity:0.9;
}


/* RESPONSIVE */

@media(max-width:768px){

    .hero-h2b{
        height:auto;
        padding:120px 20px 80px;
    }

    .hero-h2b h1{
        font-size:32px;
    }

    .hero-h2b p{
        font-size:16px;
    }

}





/* ================= FOOTER ================= */

footer{
    background:#0b0b0b;
    color:white;
    padding:70px 8% 30px 8%;
}

.footer-container{
    display:flex;
    justify-content:space-between;
    align-items:flex-start;
    flex-wrap:wrap;
    gap:60px;
}


/* LEFT */

.footer-left{
    max-width:300px;
}

.footer-logo{
    width:120px;
    margin-bottom:20px;
}

.footer-follow{
    font-size:14px;
    margin-bottom:10px;
    color:#cbd5e1;
}

.footer-social{
    display:flex;
    gap:15px;
}

.footer-social img{
    width:18px;
    opacity:.8;
    transition:.3s;
}

.footer-social img:hover{
    opacity:1;
    transform:translateY(-2px);
}


/* COLUMNS */

.footer-column h4{
    margin-bottom:15px;
    font-size:16px;
}

.footer-column a{
    display:block;
    text-decoration:none;
    color:#cbd5e1;
    margin-bottom:8px;
    font-size:14px;
    transition:.3s;
}

.footer-column a:hover{
    color:white;
}


/* LINE */

.footer-line{
    margin-top:40px;
    height:1px;
    background:#2a2a2a;
}


/* BOTTOM */

.footer-bottom{
    text-align:center;
    font-size:13px;
    margin-top:20px;
    color:#9ca3af;
}


/* ================= RESPONSIVE ================= */

@media(max-width:768px){

    .footer-container{
        flex-direction:column;
        gap:40px;
    }

}