@import url('https://fonts.googleapis.com/css2?family=Encode+Sans+Expanded:wght@100;200;300;400;500;600;700;800;900&display=swap');


body {
    margin: 0; /* Elimina los márgenes predeterminados del navegador */
    padding: 0; /* Elimina los rellenos predeterminados */
    box-sizing: border-box; /* Asegura que el padding y border no aumenten el tamaño de los elementos */
    
    font-family: 'Encode Sans Expanded', sans-serif;
    font-size: 14px; /* Tamaño de fuente base */
    background-color: white; /* Color de fondo */
    
    line-height: 1.5; /* Espaciado entre líneas */
    text-align: left; /* Alineación del texto */
    
    display: flex; /* Útil si quieres que el contenido crezca dinámicamente */
    flex-direction: column; /* Organiza el contenido en columnas */
    min-height: 100vh; /* Garantiza que el cuerpo cubra toda la altura de la pantalla */
}



/* Estilos de la parte 1 del header */
header{
    z-index: 1000;
}

.part1 {
    background-color: #065597;
    font-size: 12px;
    padding: 10px 120px;
}

.part1 a img {
    width: 20px;
    padding-right: 10px;
    height: 20px;
}


.part1 a {
    text-decoration: none;
    color: white;
    display: flex;
    transition: .2s;
}

.part1 a:hover{
    text-decoration: underline;
    transform: scale(1.1);
}

.part1 ul {
    display: flex;
    align-items: center;
    padding: 0;
    margin: 0;
    list-style: none;
}


.part1 .correo {
    padding-left: 40px;
}

.part1 li:last-child {
    margin-right: 0;
}

.part1 .redes {
    display: flex;
    flex-direction: row;
}



.part1 nav {
    display: flex;
    justify-content: space-between;
}

/* Estilos para la parte 2 del header */
header .part2 {
    background-color: white;
    padding: 12px 120px;
    box-shadow: 0 4px 9px rgba(0, 0, 0, 0.1);
}

.part2 img {
    height: 90px;
    margin: 10px 0;
}

.part2 a {
    text-decoration: none;
    color: #00939c;
    display: flex;
    align-items: center;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 13px;
    justify-content: center;
    width: 100%;
}

.part2 a:hover {
    color: #065597;
}

.part2 nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
}

.menu1 {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.part2 ul {
    list-style: none;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 40px;
    margin: 0;
    padding: 0;
}



button {
    padding: 5px 60px;
    background-color: #00939c;
    color: white;
    border: 2px solid #00939c;
    cursor: pointer;
    font-size: 12px;
    font-weight: 600;
    border-radius: 20px;
    text-transform: uppercase;
    transition: 0.3s;
}

button:hover {
    background-color: white;
    color: #00939c;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

#menu_hamburguesa, .labe_hamburguesa {
    display: none;
}


@media screen and (max-width: 1020px) {



}



/* Estilos para pantallas pequeñas */
@media screen and (max-width: 1400px) {

    .part1 nav {
        display: flex;
        flex-direction: column;
        align-items: center; /* Asegura que los elementos estén centrados */
    }
    
    .part1 ul {
        display: flex;
        flex-direction: column;
        align-items: center;
        padding: 0;
        margin: 0;
    }
    
    .part1 .correo {
        padding-left: 0;
    }
    
    .part1 a img {
        width: 18px; /* Ajusta el tamaño de la imagen */
        height: 18px;
    }
    
    .part1 .redes {
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 10px;
        padding-top: 10px;
        padding-bottom: 5px;
    }
    
    .part1 .redes img {
        padding-right: 0;
    }
    
    header .part2{
        padding: 0px 0px;
        flex-wrap: wrap;
    }

    .part2 nav {
        display: flex;
        flex-direction: column;
        align-items: center;
        position: relative;
    }
    
    .part2 img {
        margin-top: 0;
    }
    
    .part2 nav ul {
        display: flex;
        list-style: none;
        gap: 5px;
    }
    
    .part2 a {
        display: flex;
        justify-content: center; /* Centra el texto horizontalmente */
        align-items: center; /* Centra el texto verticalmente */
        font-size: 12px;
    }
    
    button {
        margin-top: 5px;
        padding: 6px 50px; /* Ajusta el tamaño del botón */
        font-size: 11px;
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .menu1{
        display: flex;
        align-items: center;
        justify-content: space-between;
        max-width: 100%;
        padding: 10px 0;
    }

    .menu1 img{
        margin: 0;
        padding: 0px;

    }

    .menu1 ul{
        flex-direction: column;
    }

    .menu1 ul img{
        padding-left: 20px;
    }

    .ul_links {
        z-index: 100;
        width: 100%;
        background-color:white;
        position: absolute;
        top: 90px;
        left: 0;
        height: 0;
        overflow: hidden;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 5rem;
        transition: all .3s;
        box-shadow: 0px 4px 9px rgba(0, 0, 0, 0.2);
    }


    .ul_links ul .boton{
        margin-top: 0;
    }

    .labe_hamburguesa{
        display: block;
        padding-right: 20px;
    }

    .menu_hamburguesa:checked + .ul_links {
        height: 25vh;
    }

    .list_icon{
        color: #00939c;
        cursor: pointer;
    }
    
.part2 img {
    height: 60px;
    margin: 5px 0;
}

}

@media screen and (max-width: 500px) {
.menu1{
    gap: 100px;
}


}






.footer {
    background: linear-gradient(to right, #00939c, #065597);
    color: white;
    padding:100px 0px 0px;
    text-align: center;
    clip-path: polygon(50% 0, 100% 10%, 100% 100%, 0 100%, 0 10%);
}

.footer-container {
    display: flex;
    justify-content: space-between;
    padding: 5px 190px;
}

.footer-logo{
    display: flex;
    align-items: end;
}

.footer-logo img {
    width: 130px;
    height: 130px;
}

.footer-container .texto{
    max-width: 400px;
    text-align: left;
    padding-left: 20px;
    font-size: 14px;
    font-weight: 300;
}

.redes2{
    display: flex;
    list-style: none;
    gap: 20px;
    padding-left: 20px;
}

.redes2 img{
    width: 30px;
    height: auto;
    transition: .2s;
}

.redes2 img:hover{
    text-decoration: underline;
    transform: scale(1.1);
}

.grupo2{
    display: flex;
    margin: 0;
    padding: 0;
    max-width: 800px;
}

.footer-links {
    text-align: left;
    padding-right: 120px;
    padding-left: 50px;
}

.footer-links h3 {
    text-transform: uppercase;
    font-size: 14px;
    font-weight: 600;
}

.footer-links ul {
    padding-left: 0;
    margin: 0;
    list-style: none;

}

.footer-links ul li {
    padding-bottom: 5px;
    font-weight: 300;
    font-size: 14px;
}

.footer-links ul li a {
    color: white;
    text-decoration: none;
}



.footer-links ul li a:hover {
    text-decoration: underline;
}

.footer-contact {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
    max-width: 350px;
}

.footer-contact h3 {
    text-transform: uppercase;
    font-size: 14px;
    font-weight: 600;
}

.footer-contact ul {
    list-style: none;
    padding-left: 0;
    margin: 0;
    padding-top: 5px;
}

.footer-contact ul li {
    display: flex;
    align-items: center;
    gap: 8px; /* Espacio entre el icono y el texto */
    padding-bottom: 8px;
}

.footer-contact ul li img {
    width: 15px;
    height: auto;
}

.footer-contact ul li a {
    color: white;
    text-decoration: none;
    font-size: 14px;
    font-weight: 300;
    display: flex;
    align-items: center;
    gap: 8px;
    text-align: left;
}

.footer-contact ul li a:hover{
    text-decoration: underline;
} 


.footer-bottom {
    margin-top: 20px;
    border-top: 1px solid white;
    padding-top: 10px;
    margin: 20px 190px;
    padding-bottom: 10px;
    font-size: 12px;
}



@media screen and (max-width: 1400px) {

    .footer-container {
        display: flex;
        flex-direction: column;
        padding: 30px 0px;
        align-items: center;
    }

    .footer-logo{
        flex-direction: column;
        align-items: center;
    }

    .footer-container .texto{
        text-align: center;
        padding-left: 0px;
    }

    .footer-container .grupo1{
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .redes2{ 
        padding-left: 0px;
    }
    
    .grupo2{
        padding-top: 20px;
        align-items: center;
        flex-direction: row-reverse;
        gap: 70px;
    }

    .footer-links {
        padding-right: 0px;
        padding-left: 0px;
    }

    .footer-bottom {
        margin: 0px 100px;
    }

}

@media screen and (max-width: 400px) {

    .footer-container .texto{
        text-align: center;
        padding: 0 30px;
    }

    .grupo2{
        padding-top: 5px;
        align-items: center;
        flex-direction: column;
        gap: 10px;
    }

    .footer-links{
        text-align: center;
        padding: 10px 30px;
    }

    .footer-links {
        padding-right: 0px;
        padding-left: 0px;
    }

    .footer-bottom {
        margin: 0px 30px;
    }

    .footer-contact {
        align-items: center;
        text-align: center;
        max-width: 100%;
        padding: 0px 50px;
    }

    .footer-contact ul li{
        display: flex;
        flex-direction: column; /* Asegura que los <li> estén en columna */
        align-items: center; /* Centra cada <li> dentro del <ul> */
    }
    
}


.whatsapp-button {
  position: fixed;
  bottom: 100px;
  right: 70px;
  z-index: 999;
  background-color: #25D366;
  border-radius: 50%;
  padding: 12px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.3);
  transition: transform 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
}

.whatsapp-button img {
  width: 32px;
  height: 32px;
}

.whatsapp-text {
  background-color: #25D366;
  color: white;
  font-size: 14px;
  padding: 8px 12px;
  border-radius: 20px;
  margin-right: 10px;
  opacity: 0;
  transform: translateX(10px);
  white-space: nowrap;
  pointer-events: none;
  transition: opacity 0.3s ease, transform 0.3s ease;
  position: absolute;
  right: 60px;
  bottom: 28px;
}

.whatsapp-button:hover .whatsapp-text {
  opacity: 1;
  transform: translateX(0);
}

.whatsapp-button:hover {
  transform: scale(1.05);
}
