* {
    margin: 0;
    padding: 0;
    font-family: "Poppins", serif;
}

/* //encabezado imegen de cubierta extendida*/

.header {
    min-height: 80vh;
    width: 100%;
    background-image: linear-gradient(rgba(4, 9, 30, 0.7), rgba(4, 9, 30, 0.7)), url(IMG/wel.png);
    background-position: center;
    background-size: cover;
    position: relative;

}

/* barra de navegacion */
nav {
    display: flex;
    padding: 2%;
    justify-content: space-between;
    align-items: center;


}

/* configuracion de tamaño de logo */
nav img {
    width: 70px;
}

/* configuracion de barra de navegacion texto y color */
.nav-links {
    flex: 1;
    text-align: right;
}

.nav-links ul li {
    list-style: none;
    display: inline-block;
    padding: 8px 12px;
    position: relative;
}

.nav-links ul li a {
    color: #fff;
    text-decoration: none;
    font-size: 18px;

}

.nav-links ul li::after {
    content: '';
    width: 0%;
    height: 2px;
    background: #F15C05;
    display: block;
    margin: auto;
    transition: 0.5s;

}

.nav-links ul li:hover::after {
    width: 100%;
}

/* configurar cuadro de texto principal */

.text-box {
    width: 90%;
    color: #fff;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
}

.text-box h1 {
    font-size: 72px;
}

.text-box p {
    margin: 10px 0 40px;
    font-size: 14px;
    color: #fff;
}

.boton-btn {
    display: inline-block;
    text-decoration: none;
    color: #fff;
    border: 1px solid #fff;
    padding: 12px 34px;
    font-size: 13px;
    background: transparent;
    position: relative;
    cursor: pointer;
}

.boton-btn:hover {
    border: 1px solid #F15C05;
    background: #F15C05;
    transition: 1s;
}

nav .fa-solid {
    display: none;
}

/* configuracion de barra en dispositivos moviles */

@media(max-width: 700px) {
    .text-box h1 {
        font-size: 24px;
    }

    .nav-links ul li {
        display: block;
    }

    .nav-links {
        position: fixed;
        background: #F15C05;
        height: 100vh;
        width: 200px;
        top: 0;
        right: -200px;
        text-align: left;
        z-index: 2;
        transition: 1s;
    }

    nav .fa-solid {
        display: block;
        color: #fff;
        margin: 10px;
        font-size: 22px;
        cursor: pointer;
    }

    .nav-links ul {
        padding: 30px;

    }
}

/* seccion nosotros o acerca de*/

.acerca-de {
    width: 80%;
    margin: auto;
    text-align: center;
    padding-top: 50px;
}

.acerca-de-col {
    flex-basis: 31%;
    border-radius: 10px;
    margin-bottom: 30px;
    position: relative;
    overflow: hidden;
}

.acerca-de img {
    width: 100%;
    display: block;
}

.layer {
    background: transparent;
    height: 100%;
    width: 100%;
    position: absolute;
    top: 0;
    left: 0;
    transition: 0.5s;

}

.layer:hover {
    background: rgba(241, 92, 5, 0.8);
}

.layer h3 {
    width: 100%;
    font-weight: 500;
    color: #fff;
    font-size: 25px;
    bottom: 0;
    left: 20%;
    transform: translateX(-25%);
    position: absolute;
    opacity: 0;
    transition: 0.5s;
}

.layer:hover h3 {
    bottom: 44%;
    opacity: 1;
}

/* seccion de servicios */

.servicios {
    width: 80%;
    margin: auto;
    text-align: center;
    padding-top: 100px;
}

h1 {
    font-size: 24px;
    font-weight: 600;
}

p {
    color: #777;
    font-size: 14px;
    font-weight: 300;
    line-height: 22px;
    padding: 10px;
}

.row {
    margin-top: 5%;
    display: flex;
    justify-content: space-between;
}

.servicios-col {
    flex-basis: 21%;
    background: #fff3f3;
    border-radius: 10px;
    margin-bottom: 5%;
    padding: 20px 12px;
    box-sizing: border-box;
    transition: 0.5s;
}

h3 {
    text-align: center;
    font-weight: 600;
    margin: 10px 0;
}

.servicios-col:hover {
    box-shadow: 0 0 20px 0px rgba(0, 0, 0, 0.2);

}

@media(max-width: 700px) {
    .row {
        flex-direction: column;
    }
}


/* seccion contactenos */

.contactenos {
    margin: 100px auto;
    width: 80%;
    background-image: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url(IMG/banner.jpeg);
    background-position: center;
    background-size: cover;
    border-radius: 10px;
    text-align: center;
    padding: 200px 0;
}

.contactenos h1 {
    color: #fff;
    margin-bottom: 40px;
    padding: 0;

}

@media(max-width: 700px) {
    .contactenos h1 {
        font-size: 24px;
    }
}

/* seccion de footer */


.footer {
    width: 100%;
    text-align: center;
    padding: 30px o;
}

.footer h4 {
    margin-bottom: 25px;
    margin-top: 150px;
    font-weight: 600;
}

.icons .fa-brands {
    color: #F15C05;
    margin: 0 18px;
    cursor: pointer;
    padding: 18px 0;
}

.fa-sun {
    color: #F15C05;
}

/* seccion de widget whatsapp */



.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background-color: #25D366;
    color: white;
    font-size: 24px;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.3);
    z-index: 1000;
    text-decoration: none;
}

.whatsapp-float:hover {
    background-color: #128C7E;
}



/* Estilos para la pagina acerca de o nosotros */

.sub-header {
    height: 50vh;
    width: 100%;
    background-image: linear-gradient(rgba(4, 9, 30, 0.7), rgba(4, 9, 30, 0.7)), url(IMG/About1.jpg);
    background-position: center;
    background-size: cover;
    text-align: center;
    color: #fff;

}

.sub-header h1 {
    margin-top: 100px;
    font-size: 28px;
}

.acerca-de {
    width: 80%;
    margin: auto;
    padding-top: 80px;
    padding-bottom: 50px;

}

.acerca-col {
    flex-basis: 48%;
    padding: 30px 2px;
}

.acerca-col img {
    width: 100%;
}

.acerca-col h1 {
    padding-top: 80px;

}

.acerca-col p {
    padding: 15px;
    text-align: justify;
}

.red-btn {
    border: 1px solid #F15C05;
    background: transparent;
    color: #F15C05;
}

.red-btn:hover {
    color: #fff;
}

.mision {
    width: 80%;
    margin: auto;
    padding-top: 80px;
    padding-bottom: 50px;
}

.mision-col {
    flex-basis: 48%;
    padding: 30px 2px;
}

.mision-col img {
    width: 100%;
    max-width: 800px;


}

.mision-col h1 {
    padding-top: 75px;
    text-align: center;
}

.mision-col p {
    padding: 15px;
    text-align: center;
}

.vision {
    width: 80%;
    margin: auto;
    padding-top: 80px;
    padding-bottom: 50px;
}

.vision-col {
    flex-basis: 48%;
    padding: 30px 2px;
}

.vision-col img {
    width: 100%;
    max-width: 800px;
}

.vision-col h1 {
    padding-top: 75px;
    text-align: center;
}

.vision-col p {
    padding: 15px;
    text-align: center;
}

/* seccion de valores corporativos */


.valores {
    padding: 20px;
    text-align: center;
}

.valores h1 {
    margin-top: 90px;
    margin: 0;
    font-size: 28px;
    font-weight: 600;
    margin-bottom: 45px;
}

.valores p {
    color: #777;
    font-size: 14px;
    font-weight: 300;
    line-height: 22px;
    padding: 10px;

}

.row {
    margin-top: 5%;
    display: flex;
    justify-content: space-between;
}

.valores-col {
    flex: 1 1 300px;
    margin: 10px;
    padding: 20px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    border-radius: 10px;
    background-color: #f9f9f9;
    transition: transform 0.3s, box-shadow 0.3s;
}

.valores-col img {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
}

.valores-col h3 {
    margin: 10px 0;
    font-size: 20px;
}

.valores-col p {
    color: #777;
    font-size: 14px;
    font-weight: 300;
    line-height: 22px;
    padding: 10px;
}

/* Hover Effect */
.valores-col:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

/* Media Quienes */
@media (max-width: 700px) {
    .valores h1 {
        font-size: 24px;
    }

    .valores p {
        font-size: 14px;
    }

    .valores-col {
        flex: 1 1 100%;
    }
}


/* Estilos para la pagina servicios */

.sub-header-s {
    height: 50vh;
    width: 100%;
    background-image: linear-gradient(rgba(4, 9, 30, 0.7), rgba(4, 9, 30, 0.7)), url(IMG/Serviciosespe.jpg);
    background-position: center;
    background-size: cover;
    text-align: center;
    color: #fff;
}

.sub-header-s h1 {
    margin-top: 100px;
    font-size: 28px;
}

.services {
    text-align: center;
    padding: 20px;
    background-color: #fff;
    border-bottom: 0px solid #ccc;
}

.services h1 {
    margin-top: 90px;
    margin: 0;
    font-size: 28px;
    font-weight: 600;
    margin-bottom: 45px;
}

.services p {
    color: #777;
    font-size: 14px;
    font-weight: 300;
    line-height: 22px;
    padding: 10px;
}

.services-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    margin-top: 90px;
    margin-left: 30px;
    margin-right: 30px;
}

.service {
    flex: 1 1 calc(23.333% - 30px);
    box-sizing: border-box;
    margin: 10px 20px;
    padding: 20px;
    border: 1px solid #ccc;
    border-radius: 8px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.service:hover {
    transform: translateY(-10px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    border-color: #F15C05;
}

.service img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
}

.service h3 {
    margin: 10px 0;
    font-size: 20px;
}

.service p {
    color: #777;
    font-size: 14px;
    font-weight: 300;
    line-height: 22px;
    padding: 10px;
}

@media (max-width: 700px) {
    .service {
        flex: 1 1 calc(50% - 40px);
        margin: 10px 20px;
    }
}

@media (max-width: 480px) {
    .service {
        flex: 1 1 calc(100% - 40px);
        margin: 10px 20px;
    }
}

/* seccion de formulario cotizacion */

.requests {
    padding: 20px 10px;
    background-color: #fff;
    text-align: center;
}

.requests-box {
    border: 1px solid #ccc;
    margin: 30px auto;
    /* Centra el contenedor */
    padding: 15px;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    width: 50%;
    /* Ocupa el 50% del ancho */
}

.requests-box h3 {
    text-align: left;
    font-size: 22px;
    margin-bottom: 15px;
    color: #333;
}

.request-form {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.request-form input,
.request-form select,
.request-form textarea {
    width: 100%;
    padding: 8px;
    margin: 10px 0;
    box-sizing: border-box;
    border: 1px solid #ccc;
    border-radius: 5px;
    outline: none;
    background: #f0f0f0;
    font-size: 14px;
}

.request-form textarea {
    resize: vertical;
}

.requests-form button {
    margin: 10px 0;
}

@media(max-width:700px) {
    .sub-header-s h1 {
        font-size: 24px;
    }
}


/* Estilos para la pagina de contactenos */

.sub-header-c {
    height: 50vh;
    width: 100%;
    background-image: linear-gradient(rgba(4, 9, 30, 0.7), rgba(4, 9, 30, 0.7)), url(IMG/contac.jpg);
    background-position: center;
    background-size: cover;
    text-align: center;
    color: #fff;
}

.sub-header-c h1 {
    margin-top: 100px;
    font-size: 28px;
}

.location {
    width: 80%;
    margin: auto;
    padding: 80px 0;
}

.location iframe {
    width: 100%;
}

.contact-us {
    width: 80%;
    margin: auto;
}

.contact-col {
    flex-basis: 48%;
    margin-bottom: 30px;
}

.contact-col div {
    display: flex;
    align-items: center;
    margin-bottom: 40px;
}

.contact-col div .fa-solid {
    font-size: 28px;
    color: #F15C05;
    margin: 10px;
    margin-right: 30px;

}

.contact-col div p {
    padding: 0;
}

.contact-col div h5 {
    font-size: 20px;
    margin-bottom: 5px;
    color: #555;
    font-weight: 400;
}

/* Diseño de formulario de contacto */

.contact-col input,
.contact-col textarea {
    width: 100%;
    padding: 15px;
    margin-bottom: 17px;
    outline: none;
    border: 1px solid #ccc;
    box-sizing: border-box;
}