/* BRO moteros — style.20260508093242.css */

*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --black:   #0a0a0a;
  --dark:    #111111;
  --dark2:   #1a1a1a;
  --mid:     #2a2a2a;
  --border:  #333333;
  --muted:   #666666;
  --text:    #cccccc;
  --white:   #f0ede8;
  --accent:  #FF8C00;
  --accent2: #ffa733;
}

html {
  scroll-behavior: smooth;
}

body {
  background-color: var(--black);
  color: var(--text);
  font-family: 'Source Sans 3', sans-serif;
  font-weight: 300;
  font-size: 20px;
  line-height: 1.6;
  min-height: 100vh;
}

body::before {
  content: '';
  position: fixed;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='4' height='4'%3E%3Crect width='4' height='4' fill='%230a0a0a'/%3E%3Ccircle cx='1' cy='1' r='0.4' fill='%23ffffff' opacity='0.03'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 0;
}

/* ─────────────────────────────
   LAYOUT
───────────────────────────── */

.page-wrap {
  position: relative;
  z-index: 1;
  max-width: 480px;
  margin: 0 auto;
  padding: 0 20px 60px;
}

/* ─────────────────────────────
   HEADER
───────────────────────────── */

header {
  text-align: center;
  padding: 48px 0 32px;
  border-bottom: 1px solid var(--border);
}

.logo-link {
  display: inline-block;
}

.logo-link img {
  width: 200px;
  max-width: 100%;
  filter: drop-shadow(0 0 20px rgba(255,140,0,0.25));
  transition: filter 0.3s;
}

.logo-link:hover img {
  filter: drop-shadow(0 0 30px rgba(255,140,0,0.5));
}

.tagline {
  font-family: 'Oswald', sans-serif;
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--muted);
  margin-top: 14px;
}

.tagline span {
  color: var(--accent);
}

.accent-line {
  width: 40px;
  height: 2px;
  background: var(--accent);
  margin: 16px auto 0;
}

/* ─────────────────────────────
   NAV SECTIONS
───────────────────────────── */

.nav-section {
  border-bottom: 1px solid var(--border);
}

.nav-section--last {
  border-bottom: none;
}

.section-label {
  font-family: 'Oswald', sans-serif;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--muted);
  padding: 20px 0 8px;
}

nav a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 13px 0;
  text-decoration: none;
  color: var(--text);
  font-family: 'Oswald', sans-serif;
  font-size: 19px;
  font-weight: 400;
  letter-spacing: 0.04em;
  border-top: 1px solid var(--border);
  transition: color 0.2s, padding-left 0.2s;
  position: relative;
}

nav a::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 2px;
  height: 0;
  background: var(--accent);
  transition: height 0.2s;
}

nav a:hover {
  color: var(--white);
  padding-left: 10px;
}

nav a:hover::before {
  height: 60%;
}

.nav-icon {
  color: var(--accent);
  flex-shrink: 0;
  width: 18px;
  height: 18px;
}

.nav-arrow {
  margin-left: auto;
  color: var(--border);
  font-size: 15px;
  font-family: monospace;
  transition: color 0.2s, transform 0.2s;
  display: inline-block;
}

nav a:hover .nav-arrow {
  color: var(--accent);
  transform: translateX(3px);
}

.badge {
  font-family: 'Source Sans 3', sans-serif;
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
  border: 1px solid var(--border);
  padding: 1px 5px;
  border-radius: 2px;
}

/* ─────────────────────────────
   FOOTER
───────────────────────────── */

footer {
  margin-top: 48px;
  padding-top: 32px;
  border-top: 1px solid var(--border);
  text-align: center;
}

.social-links {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-bottom: 24px;
}

.social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border: 1px solid var(--border);
  border-radius: 2px;
  color: var(--muted);
  text-decoration: none;
  transition: border-color 0.2s, color 0.2s, background 0.2s;
}

.social-links a:hover {
  border-color: var(--accent);
  color: var(--white);
  background: rgba(255, 140, 0, 0.08);
}

.social-links a svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}

.copyright {
  font-size: 14px;
  color: var(--muted);
  letter-spacing: 0.05em;
  line-height: 1.8;
}

.copyright strong {
  font-weight: 600;
  color: var(--text);
}

/* ─────────────────────────────
   RESPONSIVE
───────────────────────────── */

@media (max-width: 360px) {
  .logo-link img { width: 160px; }
  nav a { font-size: 17px; }
}

/* ─────────────────────────────
   PÁGINAS INTERIORES
───────────────────────────── */

.back-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: 'Oswald', sans-serif;
  font-size: 14px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
  text-decoration: none;
  margin-bottom: 32px;
  transition: color 0.2s;
}
.back-link:hover { color: var(--accent); }

.page-title {
  font-family: 'Oswald', sans-serif;
  font-size: 30px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 6px;
}

.page-subtitle {
  font-size: 15px;
  color: var(--muted);
  letter-spacing: 0.08em;
  margin-bottom: 32px;
}

.page-header {
  padding: 36px 0 24px;
  border-bottom: 1px solid var(--border);
  margin-bottom: 32px;
}

/* Bloques de texto */
.text-block {
  font-size: 20px;
  color: var(--text);
  line-height: 1.8;
  margin-bottom: 28px;
}

.text-block p { margin-bottom: 18px; }
.text-block p:last-child { margin-bottom: 0; }

.highlight { color: var(--accent); font-weight: 600; }

/* Secciones con título */
.section-title {
  font-family: 'Oswald', sans-serif;
  font-size: 20px;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--white);
  padding: 24px 0 12px;
  border-top: 1px solid var(--border);
  margin-top: 8px;
}

/* Mandamientos / listas */
.mandamiento {
  display: flex;
  gap: 14px;
  padding: 14px 0;
  border-bottom: 1px solid var(--border);
  font-size: 17px;
  color: var(--text);
  line-height: 1.6;
}
.mandamiento:last-child { border-bottom: none; }

.mandamiento-num {
  font-family: 'Oswald', sans-serif;
  font-size: 24px;
  font-weight: 700;
  color: var(--accent);
  flex-shrink: 0;
  width: 28px;
  line-height: 1.4;
}

/* Junta directiva */
.miembro {
  padding: 18px 0;
  border-bottom: 1px solid var(--border);
}
.miembro:last-child { border-bottom: none; }

.miembro-cargo {
  font-family: 'Oswald', sans-serif;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 4px;
}
.miembro-nombre {
  font-size: 19px;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 4px;
}
.miembro-email a {
  font-size: 16px;
  color: var(--muted);
  text-decoration: none;
  transition: color 0.2s;
}
.miembro-email a:hover { color: var(--accent); }

/* Solicitud: tarjetas de tipo de socio */
.socio-card {
  border: 1px solid var(--border);
  border-radius: 2px;
  padding: 20px;
  margin-bottom: 16px;
}
.socio-card-title {
  font-family: 'Oswald', sans-serif;
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 14px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--border);
}
.socio-card-title.accent { color: var(--accent); }
.socio-card ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.socio-card ul li {
  font-size: 16px;
  color: var(--text);
  padding: 5px 0;
  border-bottom: 1px solid #1e1e1e;
  display: flex;
  gap: 8px;
}
.socio-card ul li:last-child { border-bottom: none; }
.socio-card ul li::before {
  content: '—';
  color: var(--accent);
  flex-shrink: 0;
}

/* Botones de acción */
.btn-primary {
  display: inline-block;
  font-family: 'Oswald', sans-serif;
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--black);
  background: var(--accent);
  text-decoration: none;
  padding: 12px 24px;
  border-radius: 2px;
  transition: background 0.2s;
}
.btn-primary:hover { background: var(--accent2); }

.btn-secondary {
  display: inline-block;
  font-family: 'Oswald', sans-serif;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text);
  border: 1px solid var(--border);
  text-decoration: none;
  padding: 10px 20px;
  border-radius: 2px;
  transition: border-color 0.2s, color 0.2s;
}
.btn-secondary:hover { border-color: var(--accent); color: var(--white); }

.btn-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

/* Rutas */
.ruta-mes {
  font-family: 'Oswald', sans-serif;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--accent);
  padding: 24px 0 8px;
  border-top: 1px solid var(--border);
  margin-top: 8px;
}
.ruta-mes:first-child { border-top: none; padding-top: 8px; }

.ruta-item {
  padding: 14px 0;
  border-bottom: 1px solid #1a1a1a;
}
.ruta-item:last-child { border-bottom: none; }

.ruta-fecha {
  font-family: 'Oswald', sans-serif;
  font-size: 14px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 4px;
}

.ruta-nombre {
  font-size: 17px;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 6px;
}
.ruta-nombre a {
  color: var(--white);
  text-decoration: none;
  transition: color 0.2s;
}
.ruta-nombre a:hover { color: var(--accent); }

.ruta-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 15px;
  color: var(--muted);
}
.ruta-meta span { display: flex; gap: 4px; align-items: center; }

.ruta-tipo {
  display: inline-block;
  font-size: 10px;
  font-family: 'Oswald', sans-serif;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 2px 7px;
  border-radius: 2px;
  border: 1px solid var(--border);
  color: var(--muted);
  margin-bottom: 6px;
}
.ruta-tipo.abierta { border-color: var(--accent); color: var(--accent); }

.ruta-links { margin-top: 8px; display: flex; gap: 10px; }
.ruta-links a {
  font-size: 14px;
  font-family: 'Oswald', sans-serif;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  text-decoration: none;
  border: 1px solid var(--border);
  padding: 3px 8px;
  border-radius: 2px;
  transition: color 0.2s, border-color 0.2s;
}
.ruta-links a:hover { color: var(--white); border-color: var(--muted); }

/* Galería / fotorama wrapper */
.gallery-intro {
  text-align: center;
  font-size: 17px;
  color: var(--text);
  line-height: 1.7;
  padding: 24px 0;
  border-bottom: 1px solid var(--border);
  margin-bottom: 24px;
}

/* ─────────────────────────────
   TÍTULO EN PÁGINAS INTERIORES
───────────────────────────── */

.inner-page-title {
  padding: 24px 0 24px;
  border-bottom: 1px solid var(--border);
  margin-bottom: 28px;
}

.inner-page-title .back-link {
  margin-bottom: 16px;
}

.inner-page-title .page-title {
  margin-bottom: 4px;
}
