* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Raleway', sans-serif;
  background-color: #ffffff;
  color: #110B11;
}

.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 80px;
  background-color: #ffffff;
  display: flex;
  justify-content: center; /* Centramos el contenido principal */
  align-items: center;
  padding: 0 2rem;
  z-index: 1000;
}

.logo {
  position: absolute; /* Lo sacamos del flujo para que no afecte el centrado */
  left: 2rem;
}

.logo img {
  height: 50px;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 2rem;
}

.nav-link {
  text-decoration: none;
  color: #0E3166;
  font-weight: 500;
  transition: color 0.3s ease;
}

.nav-link.active {
  color: #E06D06;
}


/* BOTON CAMBIO DE IDIOMA ES */

.lang-selector {
  position: absolute;
  right: 2rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  cursor: pointer;
  font-weight: 500;
  color: #0E3166;
  transition: opacity 0.3s;
}

.lang-selector img {
  height: 20px;
  width: 20px;
}

.lang-selector:hover {
  opacity: 0.7;
}



.contact-banner {
  background-color: #003D73; /* azul profundo */
  color: white;
  padding: 3rem 2rem;
  text-align: center;
}

.contact-banner h2 {
  font-size: 2.2rem;
  margin-bottom: 1rem;
}

.contact-banner p {
  font-size: 1.2rem;
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.6;
}

.contact-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  max-width: 900px;
  margin: 0 auto;
  gap: 2rem;
}

.contact-form {
  flex: 1 1 45%;
  background-color: #EBF5EE;
  padding: 2rem;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.contact-info {
  flex: 1 1 45%;
  background-color: #fafafa;
  padding: 2rem;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.contact-form h3, .contact-info h3 {
  margin-bottom: 1rem;
  color: #0E3166;
}


/* .contact-form button {
  padding: 0.8rem 2rem;
  background-color: #0E3166;
  color: white;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  font-weight: bold;
} */

.b-goggleforms {
  padding: 0.8rem 2rem;
  background-color: #0E3166;
  color: white;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  font-weight: bold;
}

.contact-info p {
  margin: 0.5rem 0;
  color: #333;
}

/* FOOTER */
.custom-footer {
  background-color: #EBF5EE;
  color:#0E3166;
  padding: 4rem 2rem;
  font-size: 0.95rem;
}

.footer-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.footer-brand,
.footer-links,
.footer-contact {
  flex: 1 1 28%;
  min-width: 250px;
}

.footer-brand h3 {
  font-size: 1.6rem;
  margin-bottom: 0.5rem;
  color: #0E3166;
}

.footer-brand p {
  margin-bottom: 1rem;
  line-height: 1.6;
}

.social-icons a {
  display: inline-block;
  margin-right: 1rem;
}

.social-icons img {
  height: 28px;
  width: 28px;
  transition: transform 0.3s ease;
}

.social-icons img:hover {
  transform: scale(1.2);
}

.footer-links h4,
.footer-contact h4 {
  color: #0E3166;
  margin-bottom: 1rem;
}

.footer-links ul {
  list-style: none;
  padding: 0;
}

.footer-links li {
  margin-bottom: 0.5rem;
}

.footer-links a {
  color: #0E3166;
  text-decoration: none;
  transition: text-decoration 0.3s ease;
}

.footer-links a:hover {
  text-decoration: underline;
}

.footer-contact p {
  margin-bottom: 0.5rem;
  line-height: 1.5;
}

.enlace {
  color: #0E3166;
}