@charset "utf-8";
/* CSS Document */


*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    font-family:'Arial', sans-serif;
}


html{
    scroll-behavior:smooth;
}


body{
    color:#333;
    background:#fff;
}


.container{
    width:90%;
    max-width:1200px;
    margin:auto;
}



/* ================= HEADER ================= */


.header{

    width:100%;
    background:#ffffff;
    position:fixed;
    top:0;
    left:0;
    z-index:999;
    box-shadow:0 3px 15px rgba(0,0,0,.08);

}



.header-content{

    display:flex;
    align-items:center;
    justify-content:space-between;
    height:90px;

}



.logo img{

    width:300px;

}



.menu ul{

    display:flex;
    list-style:none;
    gap:30px;

}



.menu ul li a{

    text-decoration:none;
    color:#222;
    font-size:16px;
    font-weight:600;
    transition:.3s;

}



.menu ul li a:hover{

    color:#0066cc;

}



.header-button a{

    background:#0066cc;
    color:white;
    padding:14px 25px;
    border-radius:30px;
    text-decoration:none;
    font-weight:bold;

}



.menu-mobile{

    display:none;

}




/* ================= HERO ================= */


.hero{

    height:700px;
    background:url("images/banner.jpg") center/cover no-repeat;
    position:relative;
    display:flex;
    align-items:center;
    margin-top:90px;

}



.hero-overlay{

    position:absolute;
    width:100%;
    height:100%;
    background:rgba(0,35,80,.65);

}



.hero-content{

    position:relative;
    z-index:2;

}



.hero-text{

    max-width:650px;
    color:white;

}



.hero-text h1{

    font-size:52px;
    line-height:1.2;
    margin-bottom:25px;

}



.hero-text p{

    font-size:20px;
    line-height:1.7;
    margin-bottom:35px;

}



.hero-buttons{

    display:flex;
    gap:20px;

}



.btn-primary,
.btn-secondary{

    padding:16px 35px;
    border-radius:30px;
    text-decoration:none;
    font-weight:bold;

}



.btn-primary{

    background:#0066cc;
    color:white;

}



.btn-secondary{

    border:2px solid white;
    color:white;

}





/* ================= TITULOS ================= */


.section-title{

    text-align:center;
    margin-bottom:50px;

}



.section-title h2{

    font-size:38px;
    color:#0a2540;
    margin-bottom:15px;

}



.section-title p{

    color:#666;
    font-size:18px;

}



.section-title.left{

    text-align:left;

}





/* ================= SERVICIOS ================= */


.services{

    padding:100px 0;

}



.services-grid{

    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:30px;

}



.service-card{

    background:white;
    border-radius:15px;
    overflow:hidden;
    box-shadow:0 10px 30px rgba(0,0,0,.08);
    transition:.3s;
    padding-bottom:25px;

}



.service-card:hover{

    transform:translateY(-8px);

}



.service-card img{

    width:100%;
    height:220px;
    object-fit:cover;

}



.service-card h3{

    padding:20px 20px 10px;
    color:#0a2540;

}



.service-card p{

    padding:0 20px;
    line-height:1.7;

}



.service-card a{

    display:inline-block;
    margin:20px;
    color:#0066cc;
    text-decoration:none;
    font-weight:bold;

}





/* ================= NOSOTROS ================= */


.about{

    padding:100px 0;
    background:#f7f9fc;

}



.about-content{

    display:grid;
    grid-template-columns:1fr 1fr;
    gap:60px;
    align-items:center;

}



.about-image img{

    width:100%;
    border-radius:20px;

}



.about-text p{

    line-height:1.8;
    margin-bottom:20px;

}



.about-list div{

    margin-bottom:12px;
    font-weight:600;

}



.about-list span{

    color:#0066cc;
    margin-right:10px;

}





/* ================= BENEFICIOS ================= */


.benefits{

    padding:100px 0;

}



.benefits-grid{

    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:25px;

}



.benefit-box{

    padding:35px 25px;
    text-align:center;
    border-radius:15px;
    box-shadow:0 10px 25px rgba(0,0,0,.08);

}



.icon{

    font-size:35px;
    color:#0066cc;
    font-weight:bold;
    margin-bottom:20px;

}



.benefit-box h3{

    margin-bottom:15px;
    color:#0a2540;

}




/* ================= CARRERAS ================= */


.careers{

    padding:100px 0;
    background:#f7f9fc;

}



.career-grid{

    display:grid;
    grid-template-columns:repeat(6,1fr);
    gap:20px;

}



.career-card{

    text-align:center;
    background:white;
    border-radius:12px;
    overflow:hidden;
    box-shadow:0 8px 20px rgba(0,0,0,.08);

}



.career-card img{

    width:100%;
    height:120px;
    object-fit:cover;

}



.career-card h3{

    padding:15px;

}





/* ================= RESPONSIVE ================= */


@media(max-width:992px){


.menu,
.header-button{

    display:none;

}


.menu-mobile{

    display:block;

}



.services-grid,
.benefits-grid{

    grid-template-columns:repeat(2,1fr);

}



.about-content{

    grid-template-columns:1fr;

}



.career-grid{

    grid-template-columns:repeat(3,1fr);

}



.hero-text h1{

    font-size:38px;

}


}




@media(max-width:600px){


.services-grid,
.benefits-grid,
.career-grid{

    grid-template-columns:1fr;

}



.hero{

    height:600px;

}



.hero-text h1{

    font-size:32px;

}



.hero-buttons{

    flex-direction:column;

}



}





/* ================= PROCESO DE TRABAJO ================= */


.process{

    padding:100px 0;

}



.process-grid{

    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:25px;

}



.process-item{

    text-align:center;
    padding:35px 25px;
    background:#fff;
    border-radius:15px;
    box-shadow:0 10px 25px rgba(0,0,0,.08);

}



.process-item span{

    display:inline-flex;
    width:70px;
    height:70px;
    justify-content:center;
    align-items:center;
    border-radius:50%;
    background:#0066cc;
    color:white;
    font-size:25px;
    font-weight:bold;
    margin-bottom:20px;

}



.process-item h3{

    color:#0a2540;
    margin-bottom:15px;

}



.process-item p{

    line-height:1.6;
    color:#666;

}





/* ================= ESTADISTICAS ================= */


.counter{

    padding:80px 0;
    background:#0066cc;

}



.counter-grid{

    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:30px;

}



.counter-box{

    text-align:center;
    color:white;

}



.counter-box h2{

    font-size:50px;
    margin-bottom:10px;

}



.counter-box p{

    font-size:18px;

}





/* ================= TESTIMONIOS ================= */


.testimonials{

    padding:100px 0;

}



.testimonial-grid{

    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:30px;

}



.testimonial-card{

    background:white;
    padding:35px;
    border-radius:15px;
    box-shadow:0 10px 30px rgba(0,0,0,.08);

}



.stars{

    color:#f4b400;
    font-size:22px;
    margin-bottom:20px;

}



.testimonial-card p{

    line-height:1.7;
    font-style:italic;
    margin-bottom:25px;

}



.testimonial-card h3{

    color:#0a2540;

}



.testimonial-card span{

    color:#777;

}





/* ================= CTA ================= */


.cta{

    padding:90px 0;
    background:url("images/cta-bg.jpg") center/cover no-repeat;
    text-align:center;
    color:white;
    position:relative;

}



.cta:before{

    content:"";
    position:absolute;
    inset:0;
    background:rgba(0,40,90,.75);

}



.cta .container{

    position:relative;

}



.cta h2{

    font-size:42px;
    margin-bottom:20px;

}



.cta p{

    font-size:20px;
    margin-bottom:35px;

}



.cta a{

    background:white;
    color:#0066cc;
    padding:16px 40px;
    border-radius:30px;
    text-decoration:none;
    font-weight:bold;

}





/* ================= CONTACTO ================= */


.contact{

    padding:100px 0;
    background:#f7f9fc;

}



.contact-grid{

    display:grid;
    grid-template-columns:1fr 1fr;
    gap:50px;

}



.contact-info h2{

    font-size:38px;
    color:#0a2540;
    margin-bottom:20px;

}



.contact-info p{

    line-height:1.7;
    margin-bottom:30px;

}



.contact-item{

    margin-bottom:20px;
    font-size:17px;

}



.contact-form form{

    background:white;
    padding:35px;
    border-radius:15px;
    box-shadow:0 10px 30px rgba(0,0,0,.08);

}



.contact-form input,
.contact-form textarea{

    width:100%;
    padding:15px;
    margin-bottom:15px;
    border:1px solid #ddd;
    border-radius:8px;
    font-size:15px;

}



.contact-form textarea{

    height:140px;
    resize:none;

}



.contact-form button{

    width:100%;
    padding:16px;
    background:#0066cc;
    color:white;
    border:none;
    border-radius:30px;
    font-size:16px;
    cursor:pointer;
    font-weight:bold;

}





/* ================= FOOTER ================= */


.footer{

    background:#071d33;
    color:white;
    padding:70px 0 0;

}



.footer-grid{

    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:40px;

}



.footer img{

    width:180px;
    margin-bottom:20px;

}



.footer p{

    line-height:1.7;
    color:#d4dbe3;

}



.footer h3{

    margin-bottom:20px;

}



.footer ul{

    list-style:none;

}



.footer ul li{

    margin-bottom:12px;
    color:#d4dbe3;

}



.footer ul li a{

    color:#d4dbe3;
    text-decoration:none;

}



.footer-bottom{

    margin-top:50px;
    padding:20px;
    text-align:center;
    background:#051523;

}





/* ================= BOTÓN FLOTANTE WHATSAPP ================= */

.whatsapp{

    position:fixed;
    right:25px;
    bottom:25px;
    width:62px;
    height:62px;
    background:#25D366;
    border-radius:50%;
    display:flex;
    justify-content:center;
    align-items:center;
    color:#fff;
    font-size:35px;
    text-decoration:none;
    box-shadow:0 6px 20px rgba(0,0,0,.25);
    z-index:9999;
    transition:all .3s ease;

}

.whatsapp:hover{

    transform:scale(1.1);

}





/* ================= AJUSTES RESPONSIVE ================= */



@media(max-width:992px){


.process-grid{

    grid-template-columns:repeat(2,1fr);

}



.counter-grid{

    grid-template-columns:repeat(2,1fr);

}



.testimonial-grid{

    grid-template-columns:1fr;

}



.contact-grid{

    grid-template-columns:1fr;

}



.footer-grid{

    grid-template-columns:repeat(2,1fr);

}


}




@media(max-width:600px){


.process-grid,
.counter-grid,
.footer-grid{

    grid-template-columns:1fr;

}



.cta h2{

    font-size:30px;

}


}


/* ================= ANIMACIONES ================= */


.service-card,
.benefit-box,
.career-card,
.process-item,
.testimonial-card{

    opacity:0;
    transform:translateY(40px);
    transition:.7s ease;

}



.show{

    opacity:1;
    transform:translateY(0);

}




/* MENU MOVIL */


@media(max-width:992px){


.menu.active{

    display:block;
    position:absolute;
    top:90px;
    left:0;
    width:100%;
    background:white;
    padding:30px;

}



.menu.active ul{

    flex-direction:column;
    text-align:center;

}



.menu-mobile span{

    display:block;
    width:30px;
    height:3px;
    background:#0066cc;
    margin:6px;

}


}

/* ================= MODAL CARRERAS ================= */


.modal{

display:none;
position:fixed;
z-index:9999;
left:0;
top:0;
width:100%;
height:100%;
background:rgba(0,0,0,.65);

}


.modal-content{

background:white;
width:90%;
max-width:600px;
margin:80px auto;
padding:35px;
border-radius:15px;
position:relative;

}


.close{

position:absolute;
right:20px;
top:10px;
font-size:35px;
cursor:pointer;

}


.modal-content h2{

color:#0066cc;
margin-bottom:20px;

}


.modal-content li{

padding:8px;
border-bottom:1px solid #eee;

}

/* ================= OPCIONES FORMULARIO ================= */


.form-row{

    display:flex;
    gap:25px;
    margin-bottom:20px;

}



.check-box,
.service-box{

    font-size:15px;
    color:#444;

}



.check-box input,
.service-box input{

    width:auto;
    margin-right:8px;

}



.service-box{

    margin-bottom:20px;

}



.service-box p{

    margin-bottom:10px;

}



.service-box label{

    margin-right:25px;

}



@media(max-width:768px){

.form-row{

    flex-direction:column;
    gap:10px;

}

}



.form-description{

    font-size:16px;
    color:#555;
    margin-bottom:20px;
    line-height:1.5;

}


/* Animación del botón WhatsApp */

@keyframes pulse{

    0%{
        transform:scale(1);
    }

    50%{
        transform:scale(1.08);
    }

    100%{
        transform:scale(1);
    }

}

.whatsapp{

    animation:pulse 2s infinite;

}



.whatsapp:hover{

    transform:scale(1.15);
    background:#1EBE5D;

}


/* ================= ANIMACIÓN DEL LOGO ================= */

.logo img{

    transition:all .4s ease;
    animation:logoFade 1.2s ease;

}

.logo img:hover{

    transform:scale(1.05);
    filter:brightness(1.08) drop-shadow(0 0 8px rgba(212,175,55,.35));

}

@keyframes logoFade{

    from{

        opacity:0;
        transform:scale(.85);

    }

    to{

        opacity:1;
        transform:scale(1);

    }

}




/* ================= GENERADOR DE TESIS ================= */

.generador-tesis {
    padding: 70px 20px;
    background: #f7f9fc;
    text-align: center;
}

.generador-tesis h2 {
    font-size: 32px;
    color: #003B73;
    margin-bottom: 15px;
}

.generador-tesis p {
    color: #555;
    margin-bottom: 35px;
}

.form-generador {
    max-width: 600px;
    margin: auto;
    background: white;
    padding: 35px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    text-align: left;
}

.form-generador label {
    display: block;
    margin-top: 15px;
    font-weight: 600;
}

.form-generador input,
.form-generador select {
    width: 100%;
    padding: 12px;
    margin-top: 8px;
    border: 1px solid #ddd;
    border-radius: 8px;
}


.form-generador button {
    width: 100%;
    margin-top: 25px;
    padding: 14px;
    background: #003B73;
    color: white;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    font-size: 16px;
}

.form-generador button:hover {
    background: #0057A8;
}


.resultado-titulo {
    margin-top: 25px;
    padding: 20px;
    background: #eef5ff;
    border-radius: 10px;
    font-weight: 600;
    color: #003B73;
}
