/* 1. Estilos Globales y Reset */
body {
  font-family: "Roboto", Arial, sans-serif;
  margin: 0;
  padding: 0;
  background-color: #f4f4f4;
  color: #333;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

a {
  text-decoration: none;
  color: inherit;
}

/* 2. Barra de Navegación */
.navbar {
  background-color: #007bff; /* Azul primario */
  color: white;
  padding: 15px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.navbar-brand,
.nav-link-home {
  font-size: 1.5em;
  font-weight: bold;
  cursor: pointer;
  color: white;
}

.navbar-links a {
  color: white;
  padding: 5px 10px;
  border: 1px solid transparent;
  border-radius: 4px;
  transition: background-color 0.3s;
  cursor: pointer;
}

.navbar-links a:hover {
  background-color: rgba(255, 255, 255, 0.1);
  border-color: white;
}

/* 3. Cabecera (Header) con el logo */
.header {
  background-color: #f0da32;
  padding: 40px 20px;
  text-align: center;
  border-bottom: 1px solid #ddd;
}

.header .logo {
  max-width: 250px; /* Tamaño del logo. AJUSTAR según sea necesario. */
  height: auto;
  margin: 0 auto;
  display: block;
}

/* 4. Contenido Principal Común */
main {
  flex-grow: 1;
  padding: 50px 20px;
}

.content-section {
  background-color: #f8f7db;
  max-width: 800px;
  margin: 0 auto;
  padding: 40px;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.05);
}

/* Estilos En Construcción */
.construction-box h2 {
  color: #333;
  margin-bottom: 20px;
  font-size: 2em;
  text-align: center;
}

.construction-image {
  width: 100%;
  height: auto;
  max-height: 300px;
  background-color: #eee;
  margin-bottom: 20px;
  border-radius: 4px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-style: italic;
  color: #666;
  overflow: hidden;
}

.construction-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Estilos Términos */
.terms-content h2 {
  color: #333;
  margin-bottom: 20px;
}

.terms-content h3 {
  margin-top: 30px;
  color: #333;
}

/* Botón de Regreso */
.back-button {
  background-color: #6c757d;
  color: white;
  border: none;
  padding: 10px 15px;
  border-radius: 4px;
  cursor: pointer;
  font-size: 1em;
  margin-top: 20px;
  transition: background-color 0.3s;
}

.back-button:hover {
  background-color: #5a6268;
}

/* Clase de utilidad para el routing (ocultar/mostrar) */
.hidden {
  display: none;
}

/* 5. Pie de Página (Footer) */
.footer {
  background-color: #333;
  color: white;
  padding: 20px;
  text-align: center;
}

.social-links a {
  color: white;
  margin: 0 15px;
  font-size: 1.8em;
  transition: color 0.3s;
}

.social-links a:hover {
  color: #007bff;
}

.center {
  text-align: center;
}

.footer p {
  margin-top: 10px;
  font-size: 0.9em;
}
