:root {
    ---grey-ba: 51, 51, 51;
    ---black-ba: black;
    ---blue-ba: #022A5D;
    ---blue-ba2: 2, 42, 93;
    ---grey-footer: rgb(29, 29, 29);
    ---gold-ba: 201, 163, 38;
    ---green-ba: #04724D;

    ---border-radius: 25px;
    ---transition: 150ms
}
/* Prepresets */
a {
    text-decoration: none;
    color: inherit;
}
.boton-flotante {
    height: 60px;
    width: 60px;
    display: flex;
    position: fixed;
    bottom: 50px;
    right: 40px;
    transition: ease-in 250ms;
    opacity: 30%;
}
.boton-flotante img  {
    width: 100%;
}
.boton-flotante:hover {
    transform: scale(1.09);
    opacity: 100%;
}


/* Presets */
.btn-1 {
    padding: 10px 15px;
    background-color: var(---green-ba);
    color: white;
    border-radius: var(---border-radius);
}
.btn-2 {
    padding: 10px 15px;
    color: white;
    background-color: rgba(var(---gold-ba), 0.8);
    border-radius: var(---border-radius);

}

body {
    padding: 0;
    margin: 0;
    font-family: Poppins;
}
h1,h2,h3,h4,h5,h6 {
    padding: 0;
    margin: 0;
}
.header {
    height: 120px;
    width: 100%;
    margin: 0;
}
.logoba {
    height: 90px;
    transition: 1000ms;
}

.logotext {
    height: 60px
}
.header {
    display: flex;
    align-items: center;
    padding: 0;
    margin: 0;

}
.section-header1 {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40%;
    height: 100%;
}
.section-header1 img {
    margin: 0 20px;
}
.section-header2 {
    width: 60%;
    display: flex;
    justify-content: space-evenly;
    align-items: center;
}
.section-header2 a, li {
    list-style-type: none;
    text-decoration: none;
    color: black;
    font-weight: 500;
    
}
.section-header1, .section-header2 {
    margin: 0;
    padding: 0;
}

/* Menu Hamburger desplegable */
.menu {
    height: 100%;
    width: 100%;
    position: fixed;
    top: 0;
    left: 0;
    background-color: rgba(0, 0, 0, 0.8);
    transform: translateX(-100%);
    transition: transform 0.3s ease;
    z-index: 999;
}

.menu.open {
    transform: translateX(0);
}

.menu .close-btn {
    position: absolute;
    top: 20px;
    right: 30px;
    font-size: 36px;
    color: white;
    background: none;
    border: none;
    cursor: pointer;
}

/* Estilo de las opciones del menú */
.menu ul {
    list-style: none;
    padding: 50px 0 0 0;
    text-align: center;
}

.menu ul li {
    padding: 20px;
    font-size: 19px;
    color: white;
}

.menu ul li a {
    text-decoration: none;
    color: white;
    display: block;
}

.menu ul li a:hover {
    background-color: rgba(255, 255, 255, 0.2);
}

/* Estilos del botón de las tres barras (hamburguesa) */
.hamburger {
    position: absolute;

    cursor: pointer;
    font-size: 30px;
    z-index: 1000;
}
.menu-desp {
    display: none;
    width: 20%;
    height: 100%;
    justify-content: center;
    align-items: center;
}

/* Width 767 */
@media only screen and (max-width: 767px) {
    .section-header2 {
        display: none;
    }
    .menu-desp {
        display: flex;
    }
    .section-header1 {
        width: 80%;
        
    }
    
}
/* Main */
.main {
    width: 100%;
    height: auto;
    padding: 0;
    margin: 0;
}
.present {
    max-height: 85vh;
    margin: 0;
    background-size: cover;
    background-position: center;
    text-align: center;
    justify-items: center;
    align-content: center;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    position: relative;

}

.video-present {
    width: 100%;
    min-height: 100%;
    object-fit: cover;
}
.video-text-present {
    color: white;
    text-align: center;
    font-size: 2.7rem;
    font-weight: bold;
    text-shadow: 2px 2px 10px rgba(0,0,0,0.7);
}
.video-text-present-p {
    color: white;
    text-align: center;
    font-size: 1.5rem;
}
.texts-present {
    position: absolute;
    top: 50%; 
    left: 50%;
    transform: translate(-50%, -50%);
}
h1 {
    padding: 0px 0 20px 0;
    margin: 0;
    font-size: 35px;
    font-weight: 700;
    color: white;
}
.p-present {
    width: 40%;
}
.textdescrip-present {
    color: white;
    text-shadow: 0 5px 30px 0 black;
    line-height: 30px;

}
.contactus-present {
    width: fit-content;
    padding: 20px 40px;
    border: none;
    background-color: #698136;
    border-radius: 20px;
    color: white;
    font-family: montserrat;
    font-weight: 500;
    size: 20px;
    margin: 50px 0 0 0;
    transition: 200ms ease-in-out;
}
.contactus-present:hover {
    transform: scale(1.09);
}
@media only screen and (max-width: 767px) {
    .present {
        height: 88vh;
    }
    .p-present {
        width: 80%;
        justify-content: center;
        margin: 0 10%
    }
    .contactus-present {
        padding: 20px;
    }
    .video-text-present {
        font-size: 2.5rem;
    }
    .video-text-present-p {
        font-size: 1rem;
    }
    .texts-present {
        width: 70%;
    }
    .texts-present a {
        margin-top: 25px;
    }
    .section h2 {
        text-align: center;
        justify-content: center;
    }
    .present a {
        margin-top: 25px;
    }
}
/* Clientes */
.clientes-home {
    padding: 50px 30px;
    background-color: var(---blue-ba);
    height: 500px;
    color: white;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
section h2 {
    font-size: 28px;
    border-bottom: 4px solid var(---green-ba);
    margin: 0px 0 20px 0;
}
.general-clientes {
    display: flex;
    width: 90%;
    justify-content: space-evenly;
    flex-wrap: wrap;
    margin: 25px 0;
}
.boxes-clientes-home {
    height: 250px;
    width: 250px;
    background-color: white;
    border-radius: 20px;
    
}
@media only screen and (max-width: 767px) {
    .boxes-clientes-home {
        height: 70vw;
        width: 70vw;
        margin-top: 20px;
    }
    .clientes-home {
        height: auto;
    }
}
/* Servicios */
.servicios-home {
    width: 100%;
    display: flex;
    align-items: center;
    flex-direction: column;
    margin: 70px 0;

    

}
.servicios-box-home {
    width: 25%;
    color: white;
    height: 150px;
    border-radius: var(---border-radius);
    background-color: rgba(var(---grey-ba), 0.5);
    padding: 15px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}
.servicios-box-home img {
    margin-top: 15px;
    height: 70px;
}
.boxes-servicios-home {
    width: 90%;
    display: flex;
    justify-content: space-evenly;
    flex-wrap: wrap;
    gap: 15px;
    
}
@media only screen and (max-width: 767px) {
    .servicios-box-home {
        width: 70%;
    }
}
/* Equipo */
.equipo-home {
    background-image: url(../assets/equipo.jpeg);
    background-size: cover;
    display: flex;
    height: 500px;
    flex-direction: column;
    align-items: center;
    padding: 25px;
    color: white;
    transition: background-position 0.1s linear;
}
.equipo-home h2 {
    text-shadow: 0 0 10px black;
}
/* Contactanos */
.contacto-home {
    padding: 25px;
    display: flex;
    justify-content: center;
}
.form-contacto-home {
    display: flex;
    flex-direction: column;
    width: 40%;
}
.form-contacto-home form {
    background-color: #022A5D;
    padding: 35px;
    border-radius: var(---border-radius);
}
.form-contacto-home input, textarea {
    width: 90%;
    padding: 12px;
    border-radius: 10px;
    border: none;
    margin: 10px;
    transition: var(---transition);
    
}
.form-contacto-home textarea {
    height: 100px;
    resize: none;
}
.form-contacto-home input:focus, .form-contacto-home textarea:focus {
    outline: none;

}
.form-contacto-home label {
    color: white;
    margin-left: 35px;
}
.form-contacto-home button {
    padding: 10px 25px;
    border-radius: var(---border-radius);
    border: none;
    transition: var(---transition);
}
.form-contacto-home input:focus,
.form-contacto-home textarea:focus {
    box-shadow: 0 0 15px rgb(var(---gold-ba));
}
.enviar-home button:hover {
    background-color: var(---green-ba);
    transform: scale(1.09);
    color: white;
}
.enviar-home {
    display: flex;
    justify-content: center;
}
@media only screen and (max-width: 767px) {
    .form-contacto-home {
        width: 95%;
    }
}
/* footer */
 /* Footer */
  .footer {
    background-color: var(---grey-footer);
    color: #fff;
    padding: 80px 20px 40px 20px;
    border-radius: 35px 35px 0 0 ;
  }

  .footer-container {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
  }
  .footer-description {
    text-align: center;
  }
  .imga {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .footer-section img {
    height: 100px;

  }

  .footer-section {
    flex: 1 1 200px;

  }

  
  .footer-section h3 {
    margin-bottom: 15px;
    font-size: 18px;
    color: white
  }

  .footer-section p, .footer-section ul {
    font-size: 14px;
    line-height: 1.6;
  }

  .footer-section ul {
    list-style: none;
  }

  .footer-section ul li {
    margin-bottom: 10px;
  }

  .footer-section ul li a {
    color: #fff;
    text-decoration: none;
    transition: color 0.3s;
  }

  .footer-section ul li a:hover {
    color: #f0a500;
  }

  .socials {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
  }

  .social-link {
    background: #333;
    padding: 8px 12px;
    border-radius: 5px;
    text-decoration: none;
    color: #fff;
    transition: background 0.3s;
    font-size: 14px;
  }

  .social-link:hover {
    background: #f0a500;
    color: #000;
  }

  .subscribe-form {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 10px;
  }

  .subscribe-form input {
    padding: 10px;
    border: none;
    border-radius: 5px;
    flex: 1 1 150px;
  }

  .subscribe-form button {
    padding: 10px 20px;
    border: none;
    background-color: var(---green-ba);
    color: #000;
    border-radius: 5px;
    cursor: pointer;
    transition: background 0.3s;
  }

  .subscribe-form button:hover {
    background-color: rgb(var(---gold-ba));
  }

  .footer-bottom {
    text-align: center;
    margin-top: 30px;
    font-size: 13px;
    color: #ccc;
  }

  /* Responsive */
  @media (max-width: 768px) {
    .footer-container {
      flex-direction: column;
      align-items: flex-start;
    }

    .footer-section {
      width: 100%;
    }
  }





  
  /* Contact Page */
  /* CONTACTO PAGE */
.contact-page {
    width: 100%;
    min-height: 100vh;
    background-color: #f5f5f5;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 50px 20px;
    box-sizing: border-box;
}

.contact-page h1 {
    font-size: 3rem;
    color: rgb(var(---blue-ba2));
    margin-bottom: 30px;
    text-align: center;
}

.contact-page .contact-container {
    display: flex;
    justify-content: space-between;
    width: 100%;
    max-width: 1200px;
    gap: 50px;
    flex-wrap: wrap;
}

.contact-page .contact-info {
    flex: 1 1 40%;
    background-color: rgb(var(---blue-ba2));
    color: white;
    padding: 40px;
    border-radius: var(---border-radius);
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-page .contact-info h2 {
    margin-bottom: 20px;
    font-size: 2rem;
    color: white;
}

.contact-page .contact-info p {
    font-size: 1rem;
    line-height: 1.6;
}

.contact-page .contact-info a {
    color: var(---green-ba);
    text-decoration: underline;
    transition: 150ms;
}

.contact-page .contact-info a:hover {
    color: rgb(var(---gold-ba));
}

.contact-page .contact-form {
    flex: 1 1 55%;
    background-color: white;
    padding: 40px;
    border-radius: var(---border-radius);
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.contact-page .contact-form form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-page .contact-form label {
    font-size: 1rem;
    font-weight: 500;
    color: rgb(var(---grey-ba));
}

.contact-page .contact-form input,
.contact-page .contact-form textarea {
    padding: 15px;
    border-radius: var(---border-radius);
    border: 1px solid rgba(var(---grey-ba), 0.3);
    font-size: 1rem;
    transition: var(---transition);
}

.contact-page .contact-form input:focus,
.contact-page .contact-form textarea:focus {
    outline: none;
    box-shadow: 0 0 15px rgb(var(---gold-ba));
}

.contact-page .contact-form textarea {
    resize: none;
    min-height: 150px;
}

.contact-page .contact-form button {
    width: fit-content;
    padding: 12px 30px;
    background-color: var(---green-ba);
    color: white;
    border: none;
    border-radius: var(---border-radius);
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    transition: var(---transition);
}

.contact-page .contact-form button:hover {
    background-color: rgb(var(---gold-ba));
    color: black;
    transform: scale(1.05);
}

/* Responsive */
@media (max-width: 1024px) {
    .contact-page .contact-container {
        flex-direction: column;
        align-items: center;
    }
    .contact-page .contact-info,
    .contact-page .contact-form {
        flex: 1 1 100%;
    }
}


/* UBICACION PAGE */
/* UBICACIÓN PAGE */
.ubicacion-page {
    width: 100%;
    padding: 50px 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    box-sizing: border-box;
}

.ubicacion-page .ubicacion-header {
    text-align: center;
    margin-bottom: 40px;
}

.ubicacion-page .ubicacion-header h1 {
    font-size: 3rem;
    color: rgb(var(---blue-ba2));
    margin-bottom: 15px;
}

.ubicacion-page .ubicacion-header p {
    font-size: 1.3rem;
    color: rgb(var(---grey-ba));
    line-height: 1.6;
}

.ubicacion-page .mapa-container {
    width: 100%;
    max-width: 1200px;
    border-radius: var(---border-radius);
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.2);
    margin-bottom: 40px;
    transition: transform 0.3s ease;
}

.ubicacion-page .mapa-container iframe {
    width: 100%;
    height: 500px;
    border: none;
}

.ubicacion-page .ubicacion-info {
    text-align: center;
    max-width: 800px;
    color: rgb(var(---grey-ba));
    font-size: 1.2rem;
    line-height: 1.8;
}

.ubicacion-page .ubicacion-info a {
    color: var(---green-ba);
    text-decoration: underline;
    transition: var(---transition);
}

.ubicacion-page .ubicacion-info a:hover {
    color: rgb(var(---gold-ba));
}

/* Responsive */
@media (max-width: 768px) {
    .ubicacion-page .ubicacion-header h1 {
        font-size: 2.2rem;
    }
    .ubicacion-page .ubicacion-header p {
        font-size: 1.1rem;
    }
    .ubicacion-page .ubicacion-info {
        font-size: 1rem;
    }
    .ubicacion-page .mapa-container iframe {
        height: 600px;
    }
}
