/* css/contacto.css */

/* ====== Reset y tipografía ====== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: Arial, sans-serif;
  background: #ebdece;
  color: #111;
  line-height: 1.5;
}

/* ====== Cabecera ====== */
.site-header {
  background: #000;
  padding: 1rem 0;
  text-align: center;
}

.logo {
  width: 120px;
  height: auto;
}

/* ====== Navegación ====== */
.nav {
  background: #f0f0f0;
  text-align: center;
  padding: 0.5rem 0;
}

.nav-links {
  list-style: none;
  display: flex;
  justify-content: center;
  gap: 1rem;
}

.nav-links li a {
  color: #000;
  text-decoration: none;
  text-transform: uppercase;
  font-size: 0.85rem;
  transition: color 0.3s ease;
}

.nav-links li a:hover {
  color: #ff6600;
}

.menu-toggle {
  display: none; /* Botón oculto por defecto */
  background: none;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
  color: #000;
  margin-right: 1rem;
}

/* ====== Contenido principal ====== */
.text-content {
  max-width: 600px;
  margin: 2rem auto;
  padding: 1rem;
  text-align: center;
}

.text-content h2 {
  font-size: 2rem;
  color: #000;
  margin-bottom: 1rem;
}

.text-content p {
  font-size: 1rem;
  margin: 0.75rem 0;
  color: #333;
}

.text-content a {
  color: #ff6600;
  text-decoration: none;
}

.text-content a:hover {
  text-decoration: underline;
}

/* ====== Responsive ====== */
@media (max-width: 600px) {
  /* Menú hamburguesa visible en pantallas pequeñas */
  .menu-toggle {
    display: block;
    position: absolute;
    top: 15px;
    right: 15px;
  }

  /* Navegación vertical en móviles */
  .nav-links {
    flex-direction: column;
    gap: 0;
    background: #f0f0f0;
    padding: 1rem;
    display: none; /* Oculto por defecto */
  }

  .nav-links li {
    padding: 0.5rem 0;
  }

  /* Clase que activa el menú */
  .nav-links.active {
    display: flex;
  }
}
