@import url('https://fonts.googleapis.com/css2?family=DM+Sans:wght@400;500&family=Bebas+Neue&display=swap');

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

:root {
  --negro: #080808;
  --negro-2: #111111;
  --negro-3: #1a1a1a;
  --dorado: #c89600;
  --dorado-claro: #f5c842;
  --dorado-oscuro: #8a6600;
  --rojo: #8b1a1a;
  --rojo-claro: #b52020;
  --crema: #f5f0e8;
  --crema-2: #c8b890;
  --crema-3: #7a6040;
  --font-display: 'Bebas Neue', sans-serif;
  --font-title:   'Bebas Neue', sans-serif;
  --font-body: 'DM Sans', sans-serif;
}

html {
  scroll-behavior: smooth;
}

body {
  background: var(--negro);
  color: var(--crema);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
}

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

img {
  max-width: 100%;
  display: block;
}

/* ─── NAV TOP ─── */
.nav-top {
  position: sticky;
  top: 0;
  z-index: 200;
  background: rgba(8,8,8,0.95);
  border-bottom: 1px solid rgba(200,150,0,0.15);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.nav-top-inner {
  max-width: 900px;
  margin: 0 auto;
  padding: 12px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.nav-brand {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 26px;
  font-weight: 400;
  color: var(--dorado);
  letter-spacing: 3px;
  text-transform: uppercase;
  white-space: nowrap;
  display: flex;
  align-items: center;
  gap: 10px;
}

.nav-brand-logo {
  height: 24px;
  width: auto;
  border-radius: 50%;
  filter: drop-shadow(0 0 5px rgba(200, 150, 0, 0.4));
}

.nav-links {
  display: flex;
  gap: 4px;
  flex-wrap: wrap;
}

.nav-link {
  font-size: 12px;
  color: var(--crema-3);
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 6px 10px;
  border-radius: 3px;
  transition: color 0.2s, background 0.2s;
}

.nav-link:hover {
  color: var(--dorado);
  background: rgba(200,150,0,0.08);
}

.nav-cta {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--crema);
  background: var(--rojo);
  padding: 8px 16px;
  border-radius: 3px;
  border: 1px solid rgba(200,150,0,0.2);
  transition: background 0.2s;
  white-space: nowrap;
}

.nav-cta:hover {
  background: var(--rojo-claro);
}

/* ─── BOMBITAS ─── */
.bombita {
  display: inline-block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--dorado-claro);
  box-shadow: 0 0 5px rgba(245,200,66,0.6);
  animation: bombita-parpadeo 2.4s ease-in-out infinite;
}

.bombita:nth-child(2) { animation-delay: 0.3s; }
.bombita:nth-child(3) { animation-delay: 0.6s; }
.bombita:nth-child(4) { animation-delay: 0.9s; }
.bombita:nth-child(5) { animation-delay: 1.2s; }
.bombita:nth-child(6) { animation-delay: 1.5s; }
.bombita:nth-child(7) { animation-delay: 1.8s; }
.bombita:nth-child(8) { animation-delay: 2.1s; }
.bombita:nth-child(9) { animation-delay: 0.15s; }

@keyframes bombita-parpadeo {
  0%, 100% { opacity: 1; box-shadow: 0 0 5px rgba(245,200,66,0.6); }
  50% { opacity: 0.2; box-shadow: none; }
}

/* ─── SECTIONS ─── */
.section {
  padding: 64px 20px;
  border-bottom: 1px solid rgba(200,150,0,0.08);
}

.section.alt {
  background: var(--negro-2);
}

.section-inner {
  max-width: 900px;
  margin: 0 auto;
}

.section-label {
  display: block;
  font-size: 11px;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--crema-3);
  margin-bottom: 12px;
  text-align: center;
}

.section-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 38px;
  font-weight: 400;
  color: var(--dorado);
  margin-bottom: 32px;
  line-height: 1.1;
  text-align: center;
  letter-spacing: 2px;
  text-transform: uppercase;
}

/* ─── REDES ─── */
.redes-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: center;
  max-width: 520px;
  margin: 0 auto;
}

.red-card {
  flex: 0 0 calc(50% - 8px);   /* exactamente la mitad menos el gap */
  max-width: 240px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  padding: 24px 16px;
  border: 1px solid rgba(200,150,0,0.2);
  border-radius: 12px;
  background: var(--negro-2);
  color: var(--crema-3);
  text-decoration: none;
  transition: border-color 0.2s, color 0.2s, background 0.2s;
}

.red-card:hover {
  border-color: rgba(200,150,0,0.6);
  color: var(--dorado);
  background: rgba(200,150,0,0.05);
}

.red-icon {
  width: 44px;
  height: 44px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.red-icon svg {
  width: 44px;    /* tamaño fijo — todos los iconos iguales */
  height: 44px;
  display: block;
}

.red-nombre {
  font-family: var(--font-title);
  font-size: 20px;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.red-handle {
  font-family: var(--font-body);
  font-size: 12px;
  letter-spacing: 1px;
  opacity: 0.6;
  text-align: center;
}

/* ─── NAV BOTTOM ─── */
.nav-bottom {
  background: #040404;
  border-top: 1px solid rgba(200,150,0,0.1);
  padding: 32px 20px;
}

.nav-bottom-inner {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.nav-bottom-links {
  display: flex;
  justify-content: center;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 8px;
}

.nav-bottom-link {
  font-size: 11px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--crema-3);
  padding: 4px 8px;
  transition: color 0.2s;
}

.nav-bottom-link:hover {
  color: var(--dorado);
}

.nav-bottom-divider {
  width: 1px;
  height: 14px;
  background: rgba(200,150,0,0.2);
  margin: 0 8px;
  display: inline-block;
  vertical-align: middle;
}

.nav-bottom-copy {
  font-size: 11px;
  color: rgba(122,96,64,0.5);
  letter-spacing: 1px;
  margin-top: 12px;
}

/* ─── UTILIDADES ─── */
.hidden {
  display: none !important;
}

@media (max-width: 600px) {
  .nav-links {
    display: none;
  }
  .section-title {
    font-size: 26px;
  }
}

/* ─── NAV USER PILL (landing con sesión activa) ─── */
.nav-user-pill {
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(200,150,0,0.1);
  border: 1px solid rgba(200,150,0,0.25);
  border-radius: 20px;
  padding: 6px 14px 6px 10px;
  transition: background 0.2s;
}

.nav-user-pill:hover {
  background: rgba(200,150,0,0.18);
}

.nav-user-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #4caf50;
  box-shadow: 0 0 5px rgba(76,175,80,0.6);
  flex-shrink: 0;
}

.nav-user-nick {
  font-size: 13px;
  font-weight: 500;
  color: #c89600;
  letter-spacing: 0.5px;
}
