@import url('https://fonts.googleapis.com/css2?family=Cinzel:wght@400..900&family=Galada&family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&family=Silkscreen:wght@400;700&display=swap');
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: "Inter", serif;
    background: linear-gradient(to bottom right, #ffffff, #20266a); 
}
.logo img {
  height: auto;
  max-height: 60px;
  width: auto;
}



.navbar {
    background-color: #003366;
    text-align: center;
    padding: 30px 0;
    border: none;
    outline: none;
  }
  
  .navbar ul {
    list-style-type: none;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    gap: 20px;
  }
  
  .navbar ul li {
    display: inline;
  }
  
  .navbar ul li a {
    color: rgb(255, 255, 255);
    text-decoration: none;
    padding: 8px 16px;
    font-family: "Inter", serif;
    font-size: 20px;
  }
  
  
  .navbar  :hover{
    color: #a6a6a6;
  }

  .whatsapp-button {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background-color: #25d366;
    color: white;
    font-size: 18px;
    font-weight: bold;
    padding: 15px 25px;
    border-radius: 30px;
    text-decoration: none;
    width: fit-content;
    transition: transform 0.3s, box-shadow 0.3s;
    box-shadow: 0px 5px 10px rgba(0, 0, 0, 0.2);
}

.whatsapp-button img {
    width: 24px;
    height: 24px;
}

.whatsapp-button:hover {
    transform: scale(1.1);
    box-shadow: 0px 8px 15px rgba(0, 0, 0, 0.3);
}

.contact-container {
    margin-top: 100px;
    display: flex;
    justify-content: space-between;
    padding: 50px;
    animation: fadeInUp 1s ease-out;
}

.contact-text {
    max-width: 40%;
}

.contact-text h1 {
    font-family: "Inter", serif;
    font-size: 48px;
    margin-bottom: 20px;
    color: #000;
}

.contact-text p {

    font-size: 18px;
    margin-bottom: 20px;
    color: #666;
}

.contact-text h3 {
    margin-top: 20px;
    font-weight: bold;
    color: #000;
}

.contact-form {
    width: 50%;
}

form {
    display: flex;
    flex-direction: column;
}

.input-group {
    margin-bottom: 20px;
}

.input-group label {
    font-weight: bold;
    margin-bottom: 5px;
    display: block;
}

.input-group input, 
.input-group textarea {
    width: 100%;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
}

textarea {
    height: 100px;
}

button {
    padding: 10px 20px;
    background-color: #003366;
    color: #fff;
    border: none;
    cursor: pointer;
}








button:hover {
    background-color: #898a8a;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.mapa {
    margin-top: 100px;
    width: 100%;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
  }
  
  .mapa h2 {
    text-align: center;
    color: white;
    padding: 20px;
    font-size: 1.5em;
  }
  
  .map-container {
    flex-grow: 1;
    width: 100%;
    height: 400px;
  }
  
  .mapa iframe {
    width: 100%;
    height: 400px;
    border: 0;
  }




  .footer-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    padding: 40px;
    align-items: flex-start;
    background-color: #f8f8f8;
  }
  
  .institutional,
  .menu,
  .contact {
    width: 30%;
    box-sizing: border-box;
  }
  
  .institutional h3,
  .menu h3,
  .contact h3 {
    font-size: 20px;
    margin-bottom: 20px;
    font-weight: bold;
    color: #003366;
  }
  
  .institutional p,
  .menu ul li,
  .contact p {
    font-size: 16px;
    margin-bottom: 15px;
    line-height: 1.6;
    color: #333;
  }
  
  .institutional p img {
    width: 30px;
    margin-right: 12px;
    vertical-align: middle;
  }
  
  .menu ul {
    list-style: none;
    padding: 0;
  }
  
  .menu ul li {
    font-size: 16px;
    margin-bottom: 10px;
    font-weight: 600;
    color: #333;
    position: relative;
    transition: color 0.3s ease-in-out;
    display: block;
    width: max-content;
  }
  
  .menu ul li::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -2px;
    width: 0;
    height: 2px;
    background-color: #003366;
    transition: width 0.3s ease-in-out;
  }
  
  .menu ul li:hover {
    color: #003366;
  }
  
  .menu ul li:hover::after {
    width: 100%;
  }
  
  .contact {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
  }
  
  .contact p {
    color: #333;
    font-size: 16px;
  }
  
  .contact .button {
    display: inline-block;
    padding: 10px 20px;
    background-color: #003366;
    color: white;
    font-weight: bold;
    border-radius: 5px;
    text-align: center;
    transition: background-color 0.3s ease;
    margin-top: 10px;
  }
  
  .contact .button:hover {
    background-color: #002244;
  }
  
  .footer-bottom-line {
    width: 100%;
    height: 5px;
    background-color: #003366;
  }
  
  .footer-bottom {
    background-color: #002855;
    padding: 10px 0;
    text-align: center;
    color: white;
    font-size: 14px;
    margin-top: 20px;
  }
  
  @media (max-width: 768px) {
    .institutional,
    .menu,
    .contact {
      width: 100%;
      margin-bottom: 20px;
    }
  
    .footer-content {
      padding: 20px;
    }
  }
  