/* Reset general */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Galderglynn Regular', sans-serif;
  background-color: #344429;
  color: #f4f9f3; 
  line-height: 1.5;
  min-height: 100vh;
}


/* ---------- HEADER FIJO ---------- */
header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  padding: 0 1.5rem;
  background-color: #4C5F41;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 1000;
  height: 80px;
  box-shadow: 0 2px 5px rgba(0,0,0,0.15);
}

header img {
  height: 45px;
}

.nav-menu {
  display: flex;
  gap: 1.2rem;
  flex-wrap: wrap;
}

.nav-menu a {
  color: #ffffff;
  text-decoration: none;
  font-weight: 500;
  font-size: 1rem;
  transition: color 0.3s ease;
}

.nav-menu a:hover {
  color: #d6d1bb;
}

.nav-menu ul {
  list-style: none;
  display: flex;
  gap: 1.2rem;
  flex-wrap: wrap;
  margin: 0;
  padding: 0;
}

.nav-menu li {
  display: inline-block;
}

/* Contenedor del formulario */
.formulario-container {
  background-color: rgba(255, 255, 255, 0.95);
  border-radius: 20px;
  padding: 40px;
  max-width: 600px;
  margin: 100px auto;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(6px);
}

/* Título */
.formulario-container h2 {
  font-size: 2.2rem;
  color: #3f4c2e;
  margin-bottom: 1.5rem;
  text-align: center;
}
/* Subtítulo */
.subtexto {
  text-align: center;
  font-size: 1rem;
  color: #6b7d5e;
  margin-bottom: 1.5rem;
}

/* Etiquetas */
label {
  display: block;
  margin-top: 20px;
  font-weight: 600;
  color: #344429;
  font-size: 1rem;
}

/* Inputs de texto, email y número */
input[type="text"],
input[type="email"],
input[type="number"] {
  width: 100%;
  padding: 12px;
  margin-top: 6px;
  border: 1px solid #ccc;
  border-radius: 12px;
  background-color: #f9f9f9;
  font-size: 1rem;
  transition: border 0.3s ease;
}

input[type="text"]:focus,
input[type="email"]:focus,
input[type="number"]:focus {
  outline: none;
  border: 2px solid #3f4c2e;
}

/* Radios */
input[type="radio"] {
  margin-right: 10px;
  accent-color: #4C5F2D;
}

/* Párrafo de fecha */
p {
  margin-top: 20px;
  font-weight: bold;
  color: #2a3d1d;
}

/* Botón */
button {
  background-color: #3f4c2e;
  color: white;
  border: none;
  padding: 14px;
  border-radius: 25px;
  font-weight: 600;
  cursor: pointer;
  width: 100%;
  font-size: 1rem;
  transition: all 0.3s ease;
}

button:hover {
  background-color: #2e3a1f;
  transform: scale(1.02);
}

/* Responsivo */
@media (max-width: 600px) {
  .formulario-container {
    margin: 40px 20px;
    padding: 30px 20px;
  }
}

/* PIE DE PÁGINA */

.footer-contenido {
  margin-top: 2rem;
  font-size: 0.875rem;
  text-align: center;
  padding: 1.5rem;
  background-color: #4C5F41;
  color: #ffffff;
  padding: 2rem 1rem;
  border-top: 1px solid #344432;
}

footer p {
  color: #ffffff;
  font-weight: normal;
}