*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body{
    font-family: 'Open Sans', sans-serif;
}

/* HEADER */

header{
    width: 100%;
    background: #0a1a33;
    padding: 15px 50px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

@media (max-width: 768px){
    header{
        grid-template-columns: 1fr;
        align-items: center;
        padding: 15px;
    }

    nav{
        display: flex;
        flex-direction: column;
        gap: 10px;
        margin-top: 10px;
    }
}

/* LOGO */

.logo img{
    width: 120px;
    height: auto;
}

/* NAV */

nav a{
    text-decoration: none;
    color: #ffffff;
    font-size: 16px;
    margin-left: 35px;
    transition: 0.3s;
}

nav a:hover{
    color: #0D6EFD;
}

/* BOTÓN COTIZAR DEL MENÚ */

.btnCotizar{
    background: #d4af37;
    color: #ffffff;
    padding: 10px 20px;
    border-radius: 8px;
    font-weight: bold;
}

.btnCotizar:hover{
    background: #8d7222;
}

@media (max-width: 768px){
    .hero{
        text-align: center;
        padding: 40px 20px;
    }

    .hero h1{
        font-size: 24px;
    }

    .hero p{
        font-size: 16px;
    }
}

/* HERO */

.hero{
    min-height: 100vh;
    background: linear-gradient(rgba(10,26,51,0.35), rgba(10,26,51,0.35)),
    url("fondo.jpeg");
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    padding: 0 60px;
}

.heroContenido{
    max-width: 700px;
    color: white;
}

/* TITULOS */

.heroContenido h1{
    line-height: 1.1;
    margin-bottom: 25px;
}

.tituloGrande{
    display: block;
    font-size: 72px;
    font-weight: 700;
    margin-bottom: 15px;
    color: #ffffff;
}

.tituloPequeño{
    display: block;
    font-size: 26px;
    font-weight: 500;
    line-height: 1.5;
    color: #ffffff;
}

/* TEXTO */

.centralHero p{
    font-size: 20px;
    line-height: 1.8;
    margin-top: 25px;
    color: #ffffff;
}

/* BOTONES */

.botonesHero{
    display: flex;
    gap: 30px;
    margin-top: 80px;
}

.botonesHero .btn1{
    background: #d4af37;
    color: #ffffff;
    padding: 12px 24px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
}

.botonesHero .btn2{
    background: #25D366;
    color: #ffffff;
    padding: 12px 24px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
}

/* LINKS ABAJO */

.linksHero{
    margin-top: 45px;
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    align-items: center;
}

.linksHero a{
    color: #ffffff;
    text-decoration: none;
    font-size: 17px;
    font-weight: 600;
    transition: 0.3s;
}

.linksHero a:hover{
    color: #d4af37;
}

.linksHero span{
    color: #d4af37;
    font-size: 18px;
}

/* MANTENIMIENTO */

.valor{
    min-height: 100vh;
    background: linear-gradient(rgba(255,255,255,0.75), rgba(255,255,255,0.75)),
    url("mante.jpeg");
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    padding: 0 60px;
}

.contenedorValor{
    max-width: 1100px;
    margin: auto;
}

.contenedorValor h2{
    font-size: 42px;
    color: #0a1a33;
    font-family: 'Montserrat', sans-serif;
    margin-bottom: 35px;
    line-height: 1.3;
}

.contenedorValor p{
    font-size: 20px;
    color: #444444;
    line-height: 1.8;
    margin-bottom: 22px;
}

.fraseFinal{
    margin-top: 35px;
    font-size: 22px;
    color: #0a1a33;
}

.fraseFinal strong{
    color: #d4af37;
}

/*BENEFICIOS*/ 

.beneficios{
    min-height: 100vh;
    background: url("azul.jpeg");
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    padding: 0 60px;
}

.contenedorBeneficios{
    max-width: 1200px;
    margin: auto;
}

.contenedorBeneficios h2{
    text-align: center;
    font-size: 42px;
    color: #ffffff;
    font-family: 'Montserrat', sans-serif;
    margin-bottom: 55px;
}

.gridBeneficios{
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.cardBeneficio{
    background: #f5f7fa;
    padding: 35px 28px;
    border-radius: 14px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.08);
    transition: 0.3s;
}

.cardBeneficio:hover{
    transform: translateY(-8px);
}

.cardBeneficio h3{
    font-size: 24px;
    color: #0a1a33;
    margin-bottom: 18px;
    font-family: 'Montserrat', sans-serif;
}

.cardBeneficio p{
    font-size: 18px;
    color: #555555;
    line-height: 1.7;
}

/*SERVICIOS*/

.servicios{
    background: #c4c4c9;
    padding: 90px 60px;
}

.contenedorServicios{
    max-width: 1200px;
    margin: auto;
}

.contenedorServicios h2{
    text-align: center;
    font-size: 42px;
    color: #0a1a33;
    font-family: 'Montserrat', sans-serif;
    margin-bottom: 18px;
}

.textoServicios{
    text-align: center;
    font-size: 20px;
    color: #000000;
    margin-bottom: 55px;
}

.gridServicios{
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.cardServicio{
    background: #ffffff;
    padding: 35px 28px;
    border-radius: 14px;
    border-radius: 14px;
    text-align: center;
}

.iconoServicio{
    width: 60px;
    height: 60px;
    object-fit: contain;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 18px;
}

.cardServicio:hover{
    transform: translateY(-8px);
}

.cardServicio h3{
    font-size: 24px;
    color: #0a1a33;
    margin-bottom: 16px;
    font-family: 'Montserrat', sans-serif;
}

.cardServicio p{
    font-size: 18px;
    color: #555555;
    line-height: 1.7;
}

/*SOBRE NOSOTROS*/

.nosotros{
    background: #ffffff;
    padding: 100px 60px;
}

.contenedorNosotros{
    max-width: 1200px;
    margin: auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.textoNosotros h2{
    font-size: 42px;
    color: #0a1a33;
    font-family: 'Montserrat', sans-serif;
    margin-bottom: 28px;
}

.textoNosotros p{
    font-size: 20px;
    color: #555555;
    line-height: 1.8;
    margin-bottom: 22px;
}

.btnNosotros{
    display: inline-block;
    margin-top: 15px;
    background: #d4af37;
    color: white;
    padding: 12px 24px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
}

.imagenNosotros img{
    width: 100%;
    border-radius: 18px;
    object-fit: cover;
    background: (rgba(10,26,51,0.35));
}

/*proceso*/

.proceso{
    min-height: 100vh;
    background: url("azul.jpeg");
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    padding: 0 60px;
}

.contenedorProceso{
    max-width: 1200px;
    margin: auto;
}

.contenedorProceso h2{
    text-align: center;
    font-size: 42px;
    color: #ffffff;
    font-family: 'Montserrat', sans-serif;
    margin-bottom: 18px;
}

.textoProceso{
    text-align: center;
    font-size: 20px;
    color: #d4af37;
    margin-bottom: 60px;
}

.gridProceso{
    display: grid;
    grid-template-columns: repeat(4,1fr);
    gap: 30px;
}

.paso{
    background: #ffffff;
    padding: 35px 28px;
    border-radius: 16px;
    text-align: center;
    box-shadow: 0 8px 18px rgba(0,0,0,0.08);
}

.iconoPaso{
    width: 70px;
    height: 70px;
    object-fit: contain;
    display: block;
    margin: 0 auto 22px auto;
}

.paso h3{
    font-size: 24px;
    color: #0a1a33;
    margin-bottom: 18px;
    font-family: 'Montserrat', sans-serif;
}

.paso p{
    font-size: 18px;
    color: #555555;
    line-height: 1.7;
}

/*==================================
        LLAMADO A LA ACCIÓN
==================================*/

.cta{
    background:
    linear-gradient(rgba(10,26,51,0.88), rgba(10,26,51,0.88)),
    url("cta.jpeg");

    background-size: cover;
    background-position: center;
    padding: 100px 60px;
    text-align: center;
}

.contenedorCTA{
    max-width: 1000px;
    margin: auto;
}

.contenedorCTA h2{
    color: #ffffff;
    font-size: 42px;
    font-family: 'Montserrat', sans-serif;
    margin-bottom: 20px;
}

.contenedorCTA p{
    color: #e5e5e5;
    font-size: 20px;
    margin-bottom: 40px;
}

.botonesCTA{
    display: flex;
    justify-content: center;
    gap: 25px;
}

.botonesCTA .btn1{
    background: #d4af37;
    color: white;
    padding: 14px 26px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
}

.botonesCTA .btn2{
    background: #25D366;
    color: white;
    padding: 14px 26px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
}


/*==================================
            CONTACTO
==================================*/

.contacto{
    background: #b5b7b9;
    padding: 100px 60px;
}

.contenedorContacto{
    max-width: 900px;
    margin: auto;
    text-align: center;
}

.contenedorContacto h2{
    font-size: 42px;
    color: #0a1a33;
    font-family: 'Montserrat', sans-serif;
    margin-bottom: 18px;
}

.textoContacto{
    font-size: 20px;
    color: #000000;
    margin-bottom: 45px;
}

.formularioContacto{
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.formularioContacto input,
.formularioContacto textarea{
    padding: 15px;
    border: 1px solid #dddddd;
    border-radius: 10px;
    font-size: 16px;
}

.formularioContacto textarea{
    grid-column: span 2;
    height: 140px;
    resize: none;
}

.formularioContacto button{
    grid-column: span 2;
    background: #0a1a33;
    color: white;
    border: none;
    padding: 15px;
    border-radius: 10px;
    font-size: 18px;
    font-weight: bold;
    cursor: pointer;
}

.btnWhatsApp{
    position: fixed;
    right: 25px;
    bottom: 25px;
    width: 68px;
    height: 68px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 8px 18px rgba(0,0,0,0.25);
    z-index: 9999;
    text-decoration: none;
    transition: 0.3s;
}

.btnWhatsApp:hover{
    transform: scale(1.10);
}

.btnWhatsApp i{
    font-size: 38px;
    color: #ffffff;
}

.menuWsp{
    position: fixed;
    right: 25px;
    bottom: 100px;
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 8px 18px rgba(0,0,0,0.25);
    display: none;
    z-index: 9999;
}

.menuWsp a{
    display: block;
    padding: 12px 18px;
    text-decoration: none;
    color: black;
    font-size: 14px;
}

.menuWsp a:hover{
    background: #f1f1f1;
}

.footer{
    background: #06152e;
    color: white;
    padding: 50px 10%;
}

.footer-contenido{
    display: grid;
    grid-template-columns: repeat(auto-fit,minmax(250px,1fr));
    gap: 30px;
}

.footer h2,
.footer h3{
    color: #d4a436;
    margin-bottom: 15px;
}

.footer p,
.footer a{
    color: #ddd;
    text-decoration: none;
    display: block;
    margin-bottom: 10px;
    font-size: 15px;
}

.footer a:hover{
    color: #d4a436;
}

.footer-copy{
    text-align: center;
    border-top: 1px solid rgba(255,255,255,0.2);
    margin-top: 30px;
    padding-top: 20px;
    font-size: 14px;
}


/* ========================= */
/* 📱 RESPONSIVE CELULAR */
/* ========================= */

@media (max-width: 768px){

    /* 🔹 HEADER */
    header{
        flex-direction: column;
        align-items: center;
        padding: 15px;
    }

    .menu{
        display: flex;
        flex-direction: column;
        gap: 10px;
        margin-top: 10px;
        text-align: center;
    }

    /* 🔹 HERO */
    .hero{
        padding: 40px 20px;
        text-align: center;
    }

    .tituloGrande{
        font-size: 26px;
    }

    .tituloPequeño{
        font-size: 16px;
    }

    .hero p{
        font-size: 14px;
    }

    .botonesHero{
        display: flex;
        flex-direction: column;
        gap: 10px;
        margin-top: 20px;
    }

    .botonesHero a{
        width: 100%;
    }

    /* 🔹 LINKS HERO */
    .linksHero{
        display: flex;
        flex-direction: column;
        gap: 5px;
        margin-top: 15px;
    }

    /* 🔹 SECCIONES */
    section{
        padding: 40px 20px;
    }

    h2{
        font-size: 22px;
        text-align: center;
    }

    p{
        font-size: 14px;
        text-align: center;
    }

    /* 🔹 BENEFICIOS */
    .gridBeneficios{
        grid-template-columns: 1fr;
        gap: 20px;
    }

    /* 🔹 SERVICIOS (🔥 2 POR FILA) */
    .gridServicios{
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }

    .cardServicio{
        padding: 10px;
        text-align: center;
    }

    .cardServicio h3{
        font-size: 14px;
    }

    .cardServicio p{
        font-size: 12px;
    }

    .cardServicio img{
        width: 100%;
        height: auto;
    }

    /* 🔹 NOSOTROS */
    .contenedorNosotros{
        flex-direction: column;
        text-align: center;
    }

    .imagenNosotros img{
        width: 100%;
        margin-top: 20px;
    }

    /* 🔹 PROCESO */
    .gridProceso{
        grid-template-columns: 1fr;
        gap: 20px;
    }

    /* 🔹 CTA */
    .botonesCTA{
        display: flex;
        flex-direction: column;
        gap: 10px;
    }

    .botonesCTA a{
        width: 100%;
    }

    /* 🔹 FORMULARIO */
    .formularioContacto{
        display: flex;
        flex-direction: column;
    }

    .formularioContacto input,
    .formularioContacto textarea{
        width: 100%;
        margin-bottom: 10px;
    }

    /* 🔹 FOOTER */
    .footer-contenido{
        grid-template-columns: 1fr;
        text-align: center;
    }

    /* 🔹 BOTÓN WHATSAPP */
    .btnWhatsApp{
        width: 60px;
        height: 60px;
        right: 15px;
        bottom: 15px;
    }

    /* 🔹 MENÚ WHATSAPP */
    .menuWsp{
        right: 15px;
        bottom: 80px;
        width: 180px;
    }
}