body {
  margin: 0;
  background-color: #f4f4f4;;
  font-family: 'Open Sans', sans-serif;
}

.site-header {
  background-color: #f4f4f4;;
  display: flex;
  align-items: center;
  padding: 10px 20px;
  justify-content: space-between;
  border-bottom: 1px solid #f4f4f4;
  position: sticky;
  top: 0;
  z-index: 1000;
}

.logo {
  height: 50px;
  width: auto;
  
}

/* style.css */
.navbar {
  display: flex;
  align-items: center;
  justify-content: flex-start; /* Para alinear todo a la izquierda */
  gap: 2rem; /* Espacio entre elementos */
  padding: 1rem 2rem;
  background-color: #e0e0e0;
  border-bottom: 1px solid #ccc;
  width: 100%;
  position: sticky;
  top: 0;
  z-index: 1000;
  transition: top 0.3s;
  text-align: center;
}
.navbar.hidden {
  top: -100px; /* Ajusta según el alto de tu navbar */
}

.nav-links a {
  color: #1b2854;
  margin-left: 20px;
  text-decoration: none;
  font-weight: bold;
}

.nav-links a:hover {
  text-decoration: underline;
}

@media (max-width: 768px) {
  .nav-links {
    flex-direction: column;
    align-items: center;
    width: 100%;
  }


}
.hero-image {
  width: 100%;
  height: 80vh;
  background-image: url('img/imagen_index.jpeg');
  background-size: cover;
  background-position: center;
}

.site-footer {
  background-color: #001b44;
  color: white;
  padding: 40px 20px;
  font-size: 20px;
}

.footer-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
}

.footer-column {
  flex: 1 1 180px;
  margin: 10px;
}

.footer-column h4 {
  margin-bottom: 10px;
  color: white;
}

.footer-column a {
  display: block;
  margin-bottom: 5px;
  color: #ccc;
  text-decoration: none;
}

.footer-column a:hover {
  color: white;
}
/* Estilo para imagen responsiva */
.responsive-img {
  width: 100%;
  height: auto;
  display: block;
}

/* Opcional: darle contexto o separación */
.hero-section {
  max-width: 1200px;
  margin: 0 auto;
  padding: 1rem;
}
.text-container {
  max-width: 1000px;
  margin: 2rem auto;
  padding: 1.5rem;
  font-family: 'Open Sans', sans-serif;
  font-size: 17px;
  line-height: 1.6;
  color: #333;
  background-color:white; /* color claro suave */
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1); /* sombra sutil */
}

.text-container h2 {
  margin-bottom: 1rem;
  font-size: 2rem;
  text-align: center;
  color: #001b44; /* o el color que combine con tu diseño */
}
  .form-container {
      max-width: 800px;
      margin: 6rem auto 2rem;
      padding: 2rem;
      background-color: #ffffff;
      border-radius: 10px;
      box-shadow: 0 4px 8px rgba(0,0,0,0.1);
      font-family: "Open Sans", sans-serif;
      
    }

    .form-container h2 {
      text-align: center;
      margin-bottom: 1.5rem;
      color: #005A87;
    }

    .form-group {
      margin-bottom: 1rem;
    }

    .form-group label {
      display: block;
      margin-bottom: 0.5rem;
      font-weight: bold;
    }

    .form-group input,
    .form-group textarea {
      width: 100%;
      padding: 0.75rem;
      border: 1px solid #ccc;
      border-radius: 5px;
      font-size: 1rem;
    }

    .form-group textarea {
      resize: vertical;
      height: 150px;
    }

    .form-group button {
      background-color: #005A87;
      color: white;
      padding: 0.75rem 1.5rem;
      border: none;
      border-radius: 5px;
      cursor: pointer;
      font-size: 1rem;
    }

    .form-group button:hover {
      background-color: #003d5c;
    }
      .privacy-container {
      max-width: 1000px;
      margin: 3rem auto;
      padding: 2rem;
      font-family: "Open Sans", sans-serif;
      color: #2e3c4e;
      line-height: 1.7;
    }

    .privacy-container h2 {
      font-size: 2rem;
      font-weight: bold;
      margin-bottom: 1rem;
      color: #002b5b;
    }

    .privacy-container p {
      margin-bottom: 1.5rem;
      text-align: justify;
    }
.full-width-video {
  width: 100%;          /* 100% del ancho de la pantalla */
  height: auto;          /* Altura proporcional al ancho */
  display: block;
  margin: 0 ;
  padding: 0;
  object-fit: cover;
  z-index: 0;
  position: relative;
 
         /* Recorta y llena el área, sin distorsionar */
}
