/* ============================================================
   JOELMAXXED — styles.css
   ============================================================ */

:root {
  --black: #050705;
  --dark: #050705;
  --card: #080a08;
  --green: #00ff6a;
  --green-dim: #00c952;
  --green-glow: rgba(0,255,106,0.12);
  --gold: #c8a84b;
  --gold-dim: #a08030;
  --white: #f0f4f0;
  --muted: #7a8c7a;
  --border: rgba(0,255,106,0.15);
  --border-gold: rgba(200,168,75,0.25);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: var(--black);
  color: var(--white);
  font-family: 'DM Sans', sans-serif;
  font-weight: 300;
  line-height: 1.65;
  overflow-x: hidden;
}

/* ── AGE POPUP ───────────────────────────────────────────── */

/* Estado cerrado del aviso de edad: siempre debe liberar la página */
#age-popup[hidden],
#age-popup.is-closed,
.age-popup-overlay.hidden {
  display: none !important;
}

.age-popup-overlay {
  position: fixed; inset: 0; z-index: 9999;
  background: rgba(4,6,4,0.97);
  display: flex; align-items: center; justify-content: center;
  padding: 1.5rem;
  backdrop-filter: blur(8px);
}
.age-popup-overlay.hidden { display: none; }
.age-popup-box {
  background: #050705;
  border: 1px solid var(--border);
  max-width: 480px; width: 100%;
  padding: 3rem 2.5rem;
  text-align: center;
  position: relative;
}
.age-popup-box::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 2px;
  background: linear-gradient(90deg, transparent, var(--green), transparent);
}
.age-popup-logo {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.6rem; letter-spacing: 0.14em;
  color: var(--green); margin-bottom: 1.5rem;
}
.age-popup-logo span { color: var(--gold); }
.age-popup-icon { font-size: 2.5rem; margin-bottom: 1rem; }
.age-popup-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 2rem; letter-spacing: 0.1em;
  color: var(--white); margin-bottom: 1rem;
}
.age-popup-text {
  font-size: 0.88rem; color: var(--muted);
  line-height: 1.7; margin-bottom: 1.5rem;
}
.age-popup-question {
  font-family: 'Syne', sans-serif;
  font-weight: 700; font-size: 1.2rem;
  color: var(--white); margin-bottom: 1.5rem;
}
.age-popup-btns { display: flex; gap: 1rem; justify-content: center; margin-bottom: 1.5rem; flex-wrap: wrap; }
.age-btn-yes {
  background: var(--green); color: var(--black);
  font-family: 'Syne', sans-serif; font-weight: 700;
  font-size: 0.9rem; letter-spacing: 0.06em;
  padding: 0.85rem 2rem; border: none; cursor: pointer;
  clip-path: polygon(8px 0%, 100% 0%, calc(100% - 8px) 100%, 0% 100%);
  transition: background 0.2s;
}
.age-btn-yes:hover { background: var(--green-dim); }
.age-btn-no {
  background: transparent; color: var(--muted);
  font-family: 'DM Sans', sans-serif; font-size: 0.88rem;
  padding: 0.85rem 1.5rem;
  border: 1px solid rgba(122,140,122,0.3); cursor: pointer;
  transition: all 0.2s;
}
.age-btn-no:hover { border-color: #ff4444; color: #ff6666; }
.age-popup-legal {
  font-size: 0.72rem; color: rgba(122,140,122,0.6);
  line-height: 1.6; border-top: 1px solid var(--border);
  padding-top: 1rem;
}

/* ── PHOTO GRID 4x4 ──────────────────────────────────────── */
.photo-grid-block {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 0;
  border: 1px solid var(--border);
  background: #050705;
}
.photo-col { overflow: hidden; }
.photo-col-label {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1rem; letter-spacing: 0.25em;
  padding: 0.7rem 1.2rem; text-align: center;
}
.before-label { background: rgba(255,68,68,0.12); color: #ff6666; border-bottom: 1px solid rgba(255,68,68,0.2); }
.after-label  { background: rgba(0,255,106,0.08); color: var(--green); border-bottom: 1px solid var(--border); }
.photo-grid-4 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: var(--border);
}
.photo-slot {
  aspect-ratio: 3/4;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center; gap: 0.5rem;
  background: rgba(255,255,255,0.02);
  transition: background 0.2s;
}
.before-slot:hover { background: rgba(255,68,68,0.04); }
.after-slot  { background: rgba(0,255,106,0.02); }
.after-slot:hover  { background: rgba(0,255,106,0.06); }
.photo-slot-icon { font-size: 1.6rem; opacity: 0.35; }
.photo-slot-text { font-size: 0.7rem; color: var(--muted); letter-spacing: 0.1em; }
.photo-divider-col {
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  padding: 0 1.8rem; gap: 0.8rem;
  background: #050705;
  align-self: stretch;
}

/* ── CALL BLOCK ──────────────────────────────────────────── */
.form-call-block {
  display: flex; gap: 1.2rem; align-items: flex-start;
  padding: 1.5rem;
  border: 1px solid var(--border-gold);
  background: rgba(200,168,75,0.04);
}
.form-call-icon { font-size: 1.8rem; flex-shrink: 0; margin-top: 0.1rem; }
.form-call-title {
  font-family: 'Syne', sans-serif; font-weight: 700;
  font-size: 1rem; color: var(--gold); margin-bottom: 0.4rem;
}
.form-call-desc { font-size: 0.85rem; color: var(--muted); margin-bottom: 1rem; line-height: 1.6; }
.form-call-options { display: flex; flex-direction: column; gap: 0.7rem; }

/* Radio & Checkbox custom */
.radio-opt, .checkbox-opt {
  display: flex; align-items: flex-start; gap: 0.75rem;
  cursor: pointer; font-size: 0.88rem; color: rgba(240,244,240,0.8);
  line-height: 1.5;
}
.radio-opt input, .checkbox-opt input { display: none; }
.radio-custom, .checkbox-custom {
  width: 18px; height: 18px; flex-shrink: 0;
  border: 1px solid rgba(0,255,106,0.3);
  background: transparent; margin-top: 2px;
  display: flex; align-items: center; justify-content: center;
  transition: all 0.2s;
}
.radio-custom { border-radius: 50%; }
.radio-opt input:checked ~ .radio-custom {
  background: var(--green); border-color: var(--green);
  box-shadow: 0 0 6px var(--green);
}
.radio-opt input:checked ~ .radio-custom::after {
  content: ''; width: 6px; height: 6px;
  border-radius: 50%; background: var(--black);
}
.checkbox-opt input:checked ~ .checkbox-custom {
  background: var(--green); border-color: var(--green);
}
.checkbox-opt input:checked ~ .checkbox-custom::after {
  content: '✓'; color: var(--black); font-size: 0.75rem; font-weight: 700;
}

/* ── LEGAL BLOCK ─────────────────────────────────────────── */
.form-legal-block {
  border: 1px solid rgba(255,68,68,0.25);
  background: rgba(255,68,68,0.04);
  padding: 1.5rem;
}
.form-legal-header {
  font-family: 'Syne', sans-serif; font-weight: 700;
  font-size: 0.82rem; letter-spacing: 0.1em;
  color: #ff8888; margin-bottom: 0.8rem;
}
.form-legal-text {
  font-size: 0.82rem; color: var(--muted);
  line-height: 1.7;
}
.form-legal-text strong { color: rgba(240,244,240,0.7); }

/* ── NAV ─────────────────────────────────────────────────── */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  padding: 1.2rem 5%;
  background: rgba(8,10,8,0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}
.logo {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.8rem;
  letter-spacing: 0.12em;
  color: var(--green);
}
.logo span { color: var(--gold); }
.nav-cta {
  background: var(--green);
  color: var(--black);
  font-weight: 500;
  font-size: 0.82rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.55rem 1.4rem;
  border: none; cursor: pointer;
  text-decoration: none;
  clip-path: polygon(8px 0%, 100% 0%, calc(100% - 8px) 100%, 0% 100%);
  transition: background 0.2s;
}
.nav-cta:hover { background: var(--green-dim); }
.nav-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
}

/* ── TICKER ──────────────────────────────────────────────── */
.ticker {
  background: var(--green);
  color: var(--black);
  font-family: 'Bebas Neue', sans-serif;
  font-size: 0.9rem;
  letter-spacing: 0.2em;
  padding: 0.6rem 0;
  overflow: hidden;
  white-space: nowrap;
  margin-top: 72px;
  width: 100%;
}
.ticker-inner {
  display: flex;
  width: max-content;
  flex-wrap: nowrap;
  will-change: transform;
  animation: ticker 22s linear infinite;
}
.ticker-inner span {
  display: inline-block;
  flex: 0 0 auto;
  padding-right: 4rem;
}
@keyframes ticker {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ── HERO ────────────────────────────────────────────────── */
.hero {
  min-height: 100vh;
  display: flex; flex-direction: column; justify-content: center;
  padding: 8rem 5% 5rem;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute; inset: 0;
  background: transparent;
  pointer-events: none;
}
.hero-eyebrow {
  font-size: 0.75rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: 1.5rem;
  display: flex; align-items: center; gap: 0.8rem;
}
.hero-eyebrow::before {
  content: '';
  width: 32px; height: 1px;
  background: var(--green);
  display: inline-block;
}
h1 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(4rem, 10vw, 9rem);
  line-height: 0.92;
  letter-spacing: 0.02em;
  margin-bottom: 2rem;
  max-width: 900px;
}
h1 em { font-style: normal; color: var(--green); }
h1 .outline { -webkit-text-stroke: 1.5px var(--gold); color: transparent; }
.hero-sub {
  font-size: clamp(1rem, 1.8vw, 1.2rem);
  color: rgba(240,244,240,0.7);
  max-width: 560px;
  margin-bottom: 3rem;
  line-height: 1.75;
}
.hero-sub strong { color: var(--white); font-weight: 500; }
.hero-actions { display: flex; align-items: center; gap: 1.5rem; flex-wrap: wrap; }

.btn-primary {
  background: var(--green);
  color: var(--black);
  font-weight: 500;
  font-size: 0.9rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 1rem 2.4rem;
  border: none; cursor: pointer;
  text-decoration: none;
  clip-path: polygon(12px 0%, 100% 0%, calc(100% - 12px) 100%, 0% 100%);
  transition: all 0.2s;
  display: inline-block;
}
.btn-primary:hover { background: var(--green-dim); transform: translateY(-2px); }

.btn-ghost {
  color: var(--muted);
  font-size: 0.85rem;
  letter-spacing: 0.06em;
  text-decoration: none;
  display: flex; align-items: center; gap: 0.5rem;
  transition: color 0.2s;
}
.btn-ghost:hover { color: var(--white); }
.btn-ghost::after { content: '↓'; font-size: 1.1rem; }

.hero-stats {
  margin-top: 5rem;
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  max-width: 540px;
  border: 1px solid var(--border);
}
.stat { padding: 1.2rem 1.4rem; border-right: 1px solid var(--border); }
.stat:last-child { border-right: none; }
.stat-num {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 2.2rem;
  color: var(--green);
  line-height: 1;
  letter-spacing: 0.04em;
}
.stat-label {
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  margin-top: 0.3rem;
}

/* ── VIDEO ───────────────────────────────────────────────── */
.video-section {
  padding: 5rem 5%;
  background: #050705;
  border-bottom: 1px solid var(--border);
}
.video-label {
  text-align: center;
  font-size: 0.72rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: 1.5rem;
}
.video-wrapper {
  position: relative;
  width: 100%;
  max-width: 900px;
  margin: 0 auto;
  aspect-ratio: 16/9;
  background: #050705;
  border: 1px solid var(--border);
  overflow: hidden;
  cursor: pointer;
}
.video-wrapper::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 70% 60% at 50% 50%, rgba(0,255,106,0.06) 0%, transparent 70%);
  pointer-events: none;
}
.video-placeholder {
  position: absolute; inset: 0;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  gap: 1.2rem;
}
.video-play-btn {
  width: 80px; height: 80px;
  border-radius: 50%;
  border: 2px solid var(--green);
  display: flex; align-items: center; justify-content: center;
  transition: all 0.3s;
  background: rgba(0,255,106,0.08);
}
.video-play-btn svg { width: 30px; height: 30px; fill: var(--green); margin-left: 4px; }
.video-wrapper:hover .video-play-btn { background: rgba(0,255,106,0.18); transform: scale(1.08); }
.video-soon {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.4rem;
  letter-spacing: 0.2em;
  color: var(--muted);
}
.video-caption {
  text-align: center;
  font-size: 0.82rem;
  color: var(--muted);
  margin-top: 1.2rem;
  letter-spacing: 0.06em;
}

/* ── SHARED SECTION STYLES ───────────────────────────────── */
section { padding: 6rem 5%; }
.section-tag {
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: 1rem;
}
h2 {
  font-family: 'Syne', sans-serif;
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  font-weight: 800;
  line-height: 1.05;
  margin-bottom: 1.5rem;
}
h2 em { font-style: italic; color: var(--gold); }
.section-lead {
  font-size: 1.05rem;
  color: rgba(240,244,240,0.65);
  max-width: 600px;
  margin-bottom: 3.5rem;
}

/* ── PROBLEM ─────────────────────────────────────────────── */
.problem { background: #050705; }
.problem-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
}
.problem-item {
  background: #050705;
  padding: 1.8rem 2rem;
  display: flex; gap: 1rem;
}
.problem-icon { font-size: 1.4rem; flex-shrink: 0; margin-top: 0.1rem; }
.problem-item h4 {
  font-family: 'Syne', sans-serif;
  font-size: 1rem; font-weight: 700;
  margin-bottom: 0.4rem; color: var(--white);
}
.problem-item p { font-size: 0.88rem; color: var(--muted); line-height: 1.6; }

/* ── BIOHACKING INTRO ────────────────────────────────────── */
.bio-intro { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center; }
.bio-visual { position: relative; aspect-ratio: 1; max-width: 420px; }
.bio-image-card {
  border: 1px solid var(--border);
  background: #050705;
  overflow: hidden;
  box-shadow: 0 0 35px rgba(0,255,106,0.08);
}
.bio-image-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 70% 65% at 50% 45%, rgba(0,255,106,0.08), transparent 70%);
  pointer-events: none;
  z-index: 1;
}
.bio-image-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}
.bio-hex {
  width: 100%; height: 100%;
  background: #050705;
  border: 1px solid var(--border);
  clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
  display: flex; align-items: center; justify-content: center;
  flex-direction: column; gap: 0.5rem;
}
.bio-hex-inner {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 5rem; color: var(--green);
  line-height: 1; letter-spacing: 0.1em;
}
.bio-hex-label { font-size: 0.7rem; letter-spacing: 0.25em; text-transform: uppercase; color: var(--muted); }
.bio-pillars { display: flex; flex-direction: column; gap: 1.2rem; }
.pillar {
  display: flex; gap: 1.2rem; align-items: flex-start;
  padding: 1.2rem;
  border: 1px solid var(--border);
  background: #050705;
  transition: border-color 0.2s;
}
.pillar:hover { border-color: var(--green); }
.pillar-num {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 2rem; color: var(--green);
  line-height: 1; flex-shrink: 0; width: 2.5rem;
}
.pillar h4 { font-family: 'Syne', sans-serif; font-weight: 700; font-size: 0.95rem; margin-bottom: 0.3rem; }
.pillar p { font-size: 0.85rem; color: var(--muted); }

/* ── PEPTIDES ────────────────────────────────────────────── */
.peptides { background: #050705; }
.peptide-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--border-gold);
  border: 1px solid var(--border-gold);
}
.peptide-card { background: #050705; padding: 2rem; transition: background 0.2s; }
.peptide-card:hover { background: rgba(200,168,75,0.05); }
.peptide-badge {
  display: inline-block;
  font-size: 0.68rem; letter-spacing: 0.15em; text-transform: uppercase;
  color: var(--gold); border: 1px solid var(--border-gold);
  padding: 0.2rem 0.6rem; margin-bottom: 0.8rem;
}
.peptide-card h4 {
  font-family: 'Syne', sans-serif; font-weight: 700;
  font-size: 1.1rem; margin-bottom: 0.5rem; color: var(--white);
}
.peptide-card p { font-size: 0.85rem; color: var(--muted); line-height: 1.65; }

/* ── VS ──────────────────────────────────────────────────── */
.vs-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1px; background: var(--border); }
.vs-col { padding: 2.5rem; background: #050705; }
.vs-col.active { background: rgba(0,255,106,0.04); }
.vs-header { display: flex; align-items: center; gap: 0.8rem; margin-bottom: 1.8rem; }
.vs-dot { width: 10px; height: 10px; border-radius: 50%; background: var(--muted); flex-shrink: 0; }
.vs-dot.green { background: var(--green); box-shadow: 0 0 8px var(--green); }
.vs-col h3 { font-family: 'Syne', sans-serif; font-size: 1.1rem; font-weight: 700; }
.vs-list { list-style: none; display: flex; flex-direction: column; gap: 0.9rem; }
.vs-list li { font-size: 0.88rem; color: var(--muted); display: flex; gap: 0.7rem; align-items: flex-start; }
.vs-list li::before { content: '—'; color: var(--muted); flex-shrink: 0; }
.vs-col.active .vs-list li { color: rgba(240,244,240,0.85); }
.vs-col.active .vs-list li::before { content: '✓'; color: var(--green); }

/* ── FOR WHO ─────────────────────────────────────────────── */
.who-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1rem; margin-top: 1rem;
}
.who-card {
  padding: 1.8rem;
  border: 1px solid var(--border);
  background: #050705;
  position: relative; overflow: hidden;
  transition: border-color 0.25s;
}
.who-card::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 2px;
  background: linear-gradient(90deg, var(--green) 0%, transparent 100%);
  opacity: 0; transition: opacity 0.25s;
}
.who-card:hover { border-color: rgba(0,255,106,0.35); }
.who-card:hover::before { opacity: 1; }
.who-emoji { font-size: 1.6rem; margin-bottom: 0.8rem; display: block; }
.who-card h4 { font-family: 'Syne', sans-serif; font-weight: 700; font-size: 0.95rem; margin-bottom: 0.5rem; color: var(--white); }
.who-card p { font-size: 0.85rem; color: var(--muted); }

/* ── TRANSFORMATION ──────────────────────────────────────── */
.transformation { background: var(--black); }
.transf-wrapper { display: flex; flex-direction: column; gap: 3.5rem; }
.transf-cards {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
}
.transf-card { border: 1px solid var(--border); background: #050705; overflow: hidden; }
.transf-card.after { border-color: rgba(0,255,106,0.35); }
.transf-label-badge {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1rem; letter-spacing: 0.25em;
  padding: 0.6rem 1.2rem; text-align: center;
}
.before-badge { background: rgba(255,68,68,0.12); color: #ff6666; border-bottom: 1px solid rgba(255,68,68,0.2); }
.after-badge  { background: rgba(0,255,106,0.1);  color: var(--green); border-bottom: 1px solid var(--border); }
.transf-photo-placeholder {
  aspect-ratio: 3/4;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center; gap: 0.8rem;
  background: rgba(255,255,255,0.02);
  border-bottom: 1px solid var(--border);
}
.transf-photo-placeholder.after-photo { background: rgba(0,255,106,0.03); }
.transf-photo-icon { font-size: 2.5rem; opacity: 0.4; }
.transf-photo-text { font-size: 0.78rem; color: var(--muted); letter-spacing: 0.1em; }
.transf-stats { padding: 1.4rem 1.2rem; display: flex; flex-direction: column; gap: 0.9rem; }
.transf-stat-item { display: flex; flex-direction: column; gap: 0.35rem; }
.transf-stat-label { font-size: 0.72rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--muted); }
.transf-bar-wrap { height: 4px; background: rgba(255,255,255,0.07); border-radius: 2px; overflow: hidden; }
.transf-bar { height: 100%; border-radius: 2px; transition: width 1.2s ease; }
.transf-divider {
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  padding: 0 2rem; gap: 0.8rem;
}
.transf-arrow { font-size: 2.5rem; color: var(--green); line-height: 1; }
.transf-years { font-size: 0.72rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--muted); text-align: center; line-height: 1.6; }

/* Timeline */
.transf-timeline {
  border: 1px solid var(--border);
  background: #050705;
  padding: 2.5rem;
}
.tl-header { margin-bottom: 2rem; }
.tl-items { display: flex; flex-direction: column; position: relative; }
.tl-items::before {
  content: '';
  position: absolute;
  left: 7px; top: 12px; bottom: 12px;
  width: 1px; background: var(--border);
}
.tl-item {
  display: flex; gap: 1.5rem; align-items: flex-start;
  padding: 1.5rem 0;
  border-bottom: 1px solid rgba(0,255,106,0.06);
}
.tl-item:last-child { border-bottom: none; }
.tl-dot {
  width: 15px; height: 15px; border-radius: 50%;
  flex-shrink: 0; margin-top: 4px; position: relative; z-index: 1;
}
.tl-dot.red   { background: #ff4444; box-shadow: 0 0 8px rgba(255,68,68,0.5); }
.tl-dot.gold  { background: var(--gold); box-shadow: 0 0 8px rgba(200,168,75,0.5); }
.tl-dot.green { background: var(--green); box-shadow: 0 0 8px rgba(0,255,106,0.5); }
.tl-dot.gold2 { background: var(--gold); box-shadow: 0 0 8px var(--gold); }
.tl-phase { font-size: 0.7rem; letter-spacing: 0.18em; text-transform: uppercase; color: var(--muted); margin-bottom: 0.3rem; }
.tl-content h4 { font-family: 'Syne', sans-serif; font-weight: 700; font-size: 1rem; color: var(--white); margin-bottom: 0.5rem; }
.tl-content p { font-size: 0.88rem; color: var(--muted); line-height: 1.7; }

.transf-cta {
  display: flex; flex-direction: column;
  align-items: center; gap: 1.2rem;
  text-align: center; padding: 2.5rem;
  border: 1px solid var(--border);
  background: rgba(0,255,106,0.03);
}
.transf-cta p { font-family: 'Syne', sans-serif; font-weight: 700; font-size: 1.3rem; color: var(--white); }

/* ── MENTOR ──────────────────────────────────────────────── */
.mentor { background: #050705; }
.mentor-inner { display: grid; grid-template-columns: 1fr 1.5fr; gap: 5rem; align-items: center; }
.mentor-avatar {
  aspect-ratio: 3/4; background: #050705;
  border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
}
.mentor-avatar-inner {
  width: 100%; height: 100%;
  display: flex; align-items: center; justify-content: center;
  flex-direction: column; gap: 1rem; padding: 2rem;
}
.avatar-initials {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 6rem; color: var(--green);
  letter-spacing: 0.1em; line-height: 1; opacity: 0.6;
}
.avatar-tag { font-size: 0.72rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--muted); text-align: center; }
.mentor-badge {
  display: inline-block;
  background: rgba(0,255,106,0.1); color: var(--green);
  font-size: 0.72rem; letter-spacing: 0.15em; text-transform: uppercase;
  padding: 0.3rem 0.8rem; border: 1px solid var(--border); margin-bottom: 1.2rem;
}
.mentor-quote {
  font-family: 'Syne', sans-serif;
  font-size: clamp(1.3rem, 2.5vw, 2rem); font-weight: 700;
  line-height: 1.3; margin-bottom: 1.5rem; color: var(--white);
}
.mentor-quote em { font-style: italic; color: var(--green); }
.mentor-bio { font-size: 0.92rem; color: var(--muted); line-height: 1.75; margin-bottom: 2rem; }
.mentor-facts { display: flex; gap: 2rem; flex-wrap: wrap; }
.mfact-num { font-family: 'Bebas Neue', sans-serif; font-size: 2rem; color: var(--gold); line-height: 1; }
.mfact-label { font-size: 0.75rem; color: var(--muted); letter-spacing: 0.08em; }

/* ── TESTIMONIALS ────────────────────────────────────────── */
.testimonials-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1px; background: var(--border); border: 1px solid var(--border); margin-top: 1rem;
}
.tcard { background: #050705; padding: 2rem; }
.tcard-stars { color: var(--gold); font-size: 0.85rem; margin-bottom: 0.8rem; letter-spacing: 0.1em; }
.tcard-text { font-size: 0.9rem; color: rgba(240,244,240,0.8); line-height: 1.7; margin-bottom: 1.2rem; font-style: italic; }
.tcard-author { font-size: 0.78rem; color: var(--muted); letter-spacing: 0.08em; text-transform: uppercase; }
.tcard-result {
  margin-top: 0.6rem; display: inline-block;
  font-size: 0.75rem; color: var(--green);
  border: 1px solid var(--border); padding: 0.2rem 0.6rem;
}


/* ── SOCIAL SECTION ──────────────────────────────────────── */
.social-section {
  background: var(--black);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  text-align: center;
}
.social-section .section-lead { margin-left: auto; margin-right: auto; }
.social-lead { margin-bottom: 2.5rem; }
.social-button-grid {
  max-width: 900px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}
.social-btn {
  position: relative;
  min-height: 120px;
  padding: 1.6rem 1.4rem;
  border: 1px solid var(--border);
  background: rgba(17,22,17,0.82);
  color: var(--white);
  text-decoration: none;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.9rem;
  overflow: hidden;
  transition: border-color 0.25s ease, transform 0.25s ease, background 0.25s ease, box-shadow 0.25s ease;
}
.social-btn::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(circle at 50% 0%, rgba(0,255,106,0.12), transparent 60%);
  opacity: 0;
  transition: opacity 0.25s ease;
}
.social-btn:hover,
.social-btn:focus-visible {
  transform: translateY(-4px);
  border-color: rgba(0,255,106,0.55);
  background: rgba(0,255,106,0.055);
  box-shadow: 0 18px 40px rgba(0,0,0,0.22), 0 0 24px rgba(0,255,106,0.08);
  outline: none;
}
.social-btn:hover::before,
.social-btn:focus-visible::before { opacity: 1; }
.social-icon {
  width: 52px; height: 52px;
  display: flex; align-items: center; justify-content: center;
  border: 1px solid rgba(0,255,106,0.28);
  background: rgba(0,255,106,0.05);
  color: var(--green);
  border-radius: 999px;
  position: relative;
  z-index: 1;
}
.social-icon svg { width: 28px; height: 28px; fill: currentColor; }
.social-btn span:last-child {
  position: relative;
  z-index: 1;
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: 1rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.social-btn.instagram .social-icon { color: #f0f4f0; }
.social-btn.tiktok .social-icon { color: var(--green); }
.social-btn.youtube .social-icon { color: #ff5a5a; border-color: rgba(255,90,90,0.35); background: rgba(255,90,90,0.06); }

/* ── FORM ────────────────────────────────────────────────── */
.form-section { background: #050705; border-top: 1px solid var(--border); }
.form-wrapper { max-width: 700px; margin: 0 auto; }
.form-tag {
  display: inline-block;
  background: rgba(0,255,106,0.08); color: var(--green);
  font-size: 0.72rem; letter-spacing: 0.2em; text-transform: uppercase;
  padding: 0.4rem 1rem; border: 1px solid var(--border); margin-bottom: 1.5rem;
}
.form-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(2.5rem, 6vw, 5rem);
  line-height: 0.95; margin-bottom: 0.8rem;
}
.form-title span { color: var(--green); }
.form-subtitle { font-size: 0.95rem; color: var(--muted); margin-bottom: 2.5rem; line-height: 1.65; }
.apply-form { display: flex; flex-direction: column; gap: 1.2rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-field { display: flex; flex-direction: column; gap: 0.4rem; }
.form-field label { font-size: 0.75rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--muted); }
.form-field input,
.form-field select,
.form-field textarea {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(0,255,106,0.2);
  color: var(--white);
  font-family: 'DM Sans', sans-serif;
  font-size: 0.95rem;
  padding: 0.85rem 1rem;
  outline: none;
  transition: border-color 0.2s;
  appearance: none;
}
.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  border-color: var(--green);
  background: rgba(0,255,106,0.04);
}
.form-field input::placeholder,
.form-field textarea::placeholder { color: rgba(122,140,122,0.6); }
.form-field select option { background: #050705; color: var(--white); }
.form-field textarea { resize: vertical; min-height: 110px; }
.form-disclaimer {
  font-size: 0.78rem; color: var(--muted); line-height: 1.6;
  padding: 1rem; border-left: 2px solid var(--border);
  background: rgba(0,255,106,0.02);
}
.form-submit {
  background: var(--green);
  color: var(--black);
  font-family: 'Syne', sans-serif; font-weight: 700;
  font-size: 1rem; letter-spacing: 0.08em; text-transform: uppercase;
  padding: 1.2rem 2rem; border: none; cursor: pointer;
  clip-path: polygon(12px 0%, 100% 0%, calc(100% - 12px) 100%, 0% 100%);
  transition: all 0.2s;
  display: flex; align-items: center; justify-content: center; gap: 0.7rem;
}
.form-submit:hover { background: var(--green-dim); transform: translateY(-2px); }
.form-submit svg { width: 20px; height: 20px; }
.limited-note { text-align: center; font-size: 0.78rem; color: var(--muted); margin-top: 0.5rem; letter-spacing: 0.06em; }
.limited-note span { color: var(--green); }

/* ── FOOTER ──────────────────────────────────────────────── */
footer {
  padding: 3rem 5%;
  border-top: 1px solid var(--border);
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 1rem;
}
.footer-logo { font-family: 'Bebas Neue', sans-serif; font-size: 1.5rem; letter-spacing: 0.12em; color: var(--green); }
.footer-logo span { color: var(--gold); }
.footer-copy { font-size: 0.78rem; color: var(--muted); }
.footer-links { display: flex; gap: 1.5rem; }
.footer-links a { font-size: 0.78rem; color: var(--muted); text-decoration: none; transition: color 0.2s; }
.footer-links a:hover { color: var(--white); }

.footer-credit {
  width: 100%;
  margin-top: 1.25rem;
  padding-top: 1.25rem;
  border-top: 1px solid var(--border);
  text-align: center;
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
}
.footer-credit a {
  color: var(--green);
  font-weight: 500;
  text-decoration: none;
  transition: color 0.2s ease, text-shadow 0.2s ease;
}
.footer-credit a:hover,
.footer-credit a:focus-visible {
  color: var(--white);
  text-shadow: 0 0 12px rgba(0,255,106,0.35);
  outline: none;
}

/* ── ANIMATIONS ──────────────────────────────────────────── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}
.fade-up { animation: fadeUp 0.8s ease forwards; }
.delay-1 { animation-delay: 0.1s;  opacity: 0; }
.delay-2 { animation-delay: 0.25s; opacity: 0; }
.delay-3 { animation-delay: 0.4s;  opacity: 0; }
.delay-4 { animation-delay: 0.55s; opacity: 0; }

/* ── RESPONSIVE ──────────────────────────────────────────── */
@media (max-width: 768px) {
  nav                 { gap: 1rem; }
  .nav-actions        { gap: 0.7rem; }
  .social-button-grid { grid-template-columns: 1fr; }
  .social-btn         { min-height: 105px; }
  .peptide-grid       { grid-template-columns: repeat(2, 1fr); }
  .problem-grid       { grid-template-columns: 1fr; }
  .bio-intro          { grid-template-columns: 1fr; }
  .bio-visual         { max-width: 280px; margin: 0 auto; }
  .vs-grid            { grid-template-columns: 1fr; }
  .mentor-inner       { grid-template-columns: 1fr; }
  .form-row           { grid-template-columns: 1fr; }
  .transf-cards       { grid-template-columns: 1fr; }
  .transf-divider     { flex-direction: row; padding: 1.5rem 0; justify-content: center; }
  .transf-timeline    { padding: 1.5rem; }
  .hero-stats         { grid-template-columns: 1fr; border: none; }
  .stat               { border-right: none; border-bottom: 1px solid var(--border); }
  h1                  { font-size: 3.5rem; }
}


/* ── FONDO NEGRO UNIFORME ──────────────────────────────────
   Ajuste solicitado: elimina zonas azuladas y unifica todos los fondos principales.
*/
html,
body,
section,
.problem,
.peptides,
.transformation,
.mentor,
.form-section,
.social-section,
.bio-intro,
.video-section,
.vs-col,
.who-card,
.peptide-card,
.tcard,
.pillar,
.transf-card,
.transf-timeline,
.transf-cta,
.mentor-avatar,
.photo-grid-block,
.photo-divider-col,
.age-popup-box,
.video-wrapper,
.form-field input,
.form-field select,
.form-field textarea {
  background-color: #050705 !important;
}

.social-section,
.hero::before,
.video-wrapper::before,
.bio-visual::before,
.social-btn::before {
  background-image: none !important;
}

.social-btn {
  background: #050705 !important;
}

.social-btn:hover,
.social-btn:focus-visible {
  background: rgba(0,255,106,0.045) !important;
}


/* ── FIX FINAL: NEGRO UNIFORME ABSOLUTO ────────────────────
   Elimina cualquier bloque azulado/verdoso de fondo y fuerza una base negra única.
*/
:root {
  --black: #050705 !important;
  --dark: #050705 !important;
  --card: #050705 !important;
}

html,
body,
nav,
section,
.hero,
.video-section,
.problem,
.peptides,
.transformation,
.mentor,
.form-section,
.social-section,
.bio-intro,
.bio-visual,
.bio-hex,
.problem-item,
.peptide-card,
.vs-col,
.who-card,
.pillar,
.tcard,
.transf-card,
.transf-timeline,
.transf-cta,
.mentor-avatar,
.photo-grid-block,
.photo-col,
.photo-slot,
.photo-divider-col,
.form-wrapper,
.video-wrapper,
.age-popup-box,
.form-field input,
.form-field select,
.form-field textarea,
.social-btn {
  background-color: #050705 !important;
}

.hero::before,
.hero::after,
.video-wrapper::before,
.bio-visual::before,
.bio-visual::after,
.social-section::before,
.social-section::after,
.social-btn::before,
.social-btn::after,
.who-card::before,
.age-popup-box::before {
  background-image: none !important;
}

.hero,
section,
.problem,
.peptides,
.mentor,
.form-section,
.social-section,
.video-section {
  background-image: none !important;
}

/* Mantiene el diseño premium sin tintar el fondo */
.problem-grid,
.vs-grid,
.peptide-grid,
.testimonials-grid,
.photo-grid-4 {
  background-color: rgba(0,255,106,0.15) !important;
}

.social-btn:hover,
.social-btn:focus-visible,
.peptide-card:hover,
.who-card:hover,
.pillar:hover {
  background-color: #050705 !important;
}

/* ============================================================
   RESPONSIVE MOBILE FINAL — JOELMAXXED
   Optimización completa para tablet y móvil
   ============================================================ */

img,
video,
svg {
  max-width: 100%;
}

@media (max-width: 1100px) {
  .peptide-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .testimonials-grid,
  .who-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .mentor-inner,
  .bio-intro {
    gap: 3rem;
  }
}

@media (max-width: 820px) {
  html,
  body {
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
  }

  nav {
    padding: 0.85rem 4.5% !important;
    gap: 0.75rem;
  }

  .logo {
    font-size: 1.45rem;
    letter-spacing: 0.08em;
    white-space: nowrap;
  }

  .nav-actions {
    display: flex;
    align-items: center;
    gap: 0.55rem;
  }

  .nav-cta {
    font-size: 0.68rem;
    padding: 0.52rem 0.9rem;
    letter-spacing: 0.06em;
    white-space: nowrap;
  }

  .ticker {
    margin-top: 61px;
    font-size: 0.76rem;
    padding: 0.48rem 0;
  }

  section,
  .video-section {
    padding: 4.2rem 5%;
  }

  .hero {
    min-height: auto;
    padding: 5.2rem 5% 4rem;
  }

  .hero-eyebrow {
    font-size: 0.66rem;
    letter-spacing: 0.16em;
    margin-bottom: 1rem;
  }

  .hero-eyebrow::before {
    width: 22px;
  }

  h1 {
    font-size: clamp(3.25rem, 17vw, 5.4rem) !important;
    line-height: 0.9;
    max-width: 100%;
    margin-bottom: 1.35rem;
    word-break: normal;
  }

  h2 {
    font-size: clamp(2rem, 10vw, 3rem);
    line-height: 1.08;
    margin-bottom: 1.1rem;
  }

  .hero-sub,
  .section-lead,
  .form-subtitle {
    font-size: 0.98rem;
    line-height: 1.65;
    max-width: 100%;
  }

  .hero-sub {
    margin-bottom: 2rem;
  }

  .hero-actions {
    flex-direction: column;
    align-items: stretch;
    gap: 0.9rem;
  }

  .btn-primary,
  .btn-ghost,
  .form-submit {
    width: 100%;
    text-align: center;
    justify-content: center;
  }

  .btn-ghost {
    padding: 0.8rem 1rem;
    border: 1px solid var(--border);
  }

  .hero-stats {
    width: 100%;
    max-width: none;
    margin-top: 2.6rem;
    grid-template-columns: 1fr;
    border: 1px solid var(--border);
  }

  .stat {
    border-right: none !important;
    border-bottom: 1px solid var(--border);
    padding: 1rem 1.1rem;
  }

  .stat:last-child {
    border-bottom: none;
  }

  .video-wrapper {
    aspect-ratio: 16 / 10;
  }

  .video-play-btn {
    width: 64px;
    height: 64px;
  }

  .problem-grid,
  .vs-grid,
  .testimonials-grid,
  .who-grid,
  .form-row,
  .bio-intro,
  .mentor-inner,
  .transf-cards {
    grid-template-columns: 1fr !important;
  }

  .problem-item,
  .pillar,
  .who-card,
  .tcard,
  .vs-col,
  .peptide-card {
    padding: 1.35rem;
  }

  .bio-visual,
  .bio-image-card {
    width: 100%;
    max-width: 420px !important;
    margin: 0 auto;
    aspect-ratio: 3 / 2;
  }

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

  .peptide-grid {
    grid-template-columns: 1fr !important;
  }

  .photo-grid-block {
    grid-template-columns: 1fr !important;
  }

  .photo-divider-col {
    padding: 1.1rem;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
  }

  .photo-divider-col .transf-arrow,
  .transf-divider .transf-arrow {
    transform: rotate(90deg);
  }

  .transf-years {
    font-size: 0.68rem;
  }

  .photo-grid-4 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .photo-slot {
    aspect-ratio: 3 / 4;
  }

  .transf-divider {
    padding: 1rem 0;
  }

  .transf-timeline {
    padding: 1.35rem;
  }

  .tl-item {
    gap: 1rem;
    padding: 1.2rem 0;
  }

  .tl-content p {
    font-size: 0.86rem;
  }

  .mentor-avatar {
    width: 100%;
    max-width: 420px;
    margin: 0 auto;
    aspect-ratio: 3 / 4;
  }

  .mentor-quote {
    font-size: clamp(1.85rem, 8vw, 2.8rem);
    line-height: 1.08;
  }

  .mentor-bio {
    font-size: 0.96rem;
  }

  .mentor-facts {
    grid-template-columns: 1fr;
    gap: 1px;
  }

  .social-section {
    text-align: left;
  }

  .social-section h2,
  .social-section .section-tag,
  .social-section .section-lead {
    text-align: left;
  }

  .social-button-grid {
    grid-template-columns: 1fr !important;
    gap: 0.85rem;
  }

  .social-btn {
    width: 100%;
    min-height: 84px !important;
    padding: 1rem 1.15rem;
    justify-content: flex-start;
  }

  .social-icon {
    width: 48px;
    height: 48px;
  }

  .form-wrapper {
    width: 100%;
    max-width: 100%;
  }

  .form-title {
    font-size: clamp(2.7rem, 14vw, 4.2rem);
    line-height: 0.92;
  }

  .apply-form {
    gap: 1rem;
  }

  .form-field input,
  .form-field select,
  .form-field textarea {
    width: 100%;
    font-size: 16px; /* evita zoom automático en iPhone */
    padding: 0.95rem 1rem;
  }

  .form-field textarea {
    min-height: 140px;
  }

  .form-call-block,
  .form-legal-block {
    padding: 1.1rem;
  }

  .form-call-block {
    flex-direction: column;
    gap: 0.8rem;
  }

  .radio-opt,
  .checkbox-opt {
    align-items: flex-start;
  }

  footer {
    flex-direction: column;
    align-items: flex-start;
    padding: 2.4rem 5%;
  }

  .footer-links {
    flex-direction: column;
    gap: 0.75rem;
  }

  .footer-credit {
    text-align: left;
  }
}

@media (max-width: 520px) {
  nav {
    padding-left: 4% !important;
    padding-right: 4% !important;
  }

  .logo {
    font-size: 1.25rem;
  }

  .nav-cta {
    font-size: 0.62rem;
    padding: 0.48rem 0.72rem;
  }

  section,
  .video-section {
    padding: 3.5rem 4.5%;
  }

  .hero {
    padding: 4.8rem 4.5% 3.5rem;
  }

  h1 {
    font-size: clamp(2.9rem, 18vw, 4.2rem) !important;
  }

  h2 {
    font-size: clamp(1.9rem, 10.5vw, 2.6rem);
  }

  .section-tag {
    font-size: 0.64rem;
    letter-spacing: 0.16em;
  }

  .hero-sub,
  .section-lead,
  .form-subtitle,
  .problem-item p,
  .peptide-card p,
  .who-card p,
  .pillar p,
  .tcard-text,
  .mentor-bio {
    font-size: 0.9rem;
  }

  .btn-primary,
  .form-submit {
    padding: 0.95rem 1.15rem;
    font-size: 0.78rem;
    letter-spacing: 0.06em;
  }

  .problem-item {
    flex-direction: column;
    gap: 0.55rem;
  }

  .problem-icon {
    margin-top: 0;
  }

  .pillar {
    gap: 0.9rem;
  }

  .pillar-num {
    font-size: 1.65rem;
    width: 2rem;
  }

  .photo-grid-4 {
    grid-template-columns: 1fr 1fr;
  }

  .transf-timeline {
    padding: 1rem;
  }

  .tl-items::before {
    left: 6px;
  }

  .tl-dot {
    width: 13px;
    height: 13px;
  }

  .transf-cta {
    padding: 1.4rem;
  }

  .transf-cta p {
    font-size: 1.05rem;
  }

  .mentor-avatar {
    max-width: 340px;
  }

  .mentor-quote {
    font-size: 1.9rem;
  }

  .mfact-num {
    font-size: 2.1rem;
  }

  .social-btn span:last-child {
    font-size: 1rem;
  }

  .form-title {
    font-size: clamp(2.45rem, 15vw, 3.6rem);
  }

  .age-popup-box {
    padding: 2rem 1.25rem;
  }

  .age-popup-btns {
    flex-direction: column;
  }

  .age-btn-yes,
  .age-btn-no {
    width: 100%;
  }
}

@media (max-width: 380px) {
  .logo {
    font-size: 1.08rem;
  }

  .nav-cta {
    font-size: 0.58rem;
    padding: 0.44rem 0.58rem;
  }

  h1 {
    font-size: 2.62rem !important;
  }

  .hero-stats,
  .problem-grid,
  .peptide-grid,
  .vs-grid,
  .photo-grid-block,
  .transf-timeline,
  .social-btn,
  .form-call-block,
  .form-legal-block {
    width: 100%;
  }
}

/* ── NAV SOCIAL ICONS ──────────────────────────────────── */
.nav-socials {
  display: flex;
  align-items: center;
  gap: 0.45rem;
}

.nav-social-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 10px;
  color: #a0c8a0;
  background: rgba(122, 156, 122, 0.12);
  border: 1px solid rgba(122, 156, 122, 0.25);
  transition: color 0.2s ease, background 0.2s ease, border-color 0.2s ease, transform 0.15s ease;
  text-decoration: none;
  flex-shrink: 0;
}

.nav-social-icon:hover {
  color: #c8f0c8;
  background: rgba(122, 156, 122, 0.22);
  border-color: rgba(122, 156, 122, 0.5);
  transform: translateY(-1px);
}

/* WhatsApp comunidad — botón destacado */
.nav-social-icon.whatsapp-comunidad {
  color: #080a08;
  background: #25d366;
  border-color: #25d366;
  gap: 0.4rem;
  width: auto;
  padding: 0 0.75rem;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  white-space: nowrap;
}

.nav-social-icon.whatsapp-comunidad:hover {
  color: #080a08;
  background: #1fba57;
  border-color: #1fba57;
  transform: translateY(-1px);
}

.nav-social-icon.whatsapp-comunidad .wa-label {
  display: inline;
}

/* Separador visual */
.nav-socials-divider {
  width: 1px;
  height: 22px;
  background: rgba(122, 156, 122, 0.2);
  flex-shrink: 0;
}

@media (max-width: 600px) {
  .nav-socials {
    gap: 0.3rem;
  }
  .nav-social-icon {
    width: 34px;
    height: 34px;
  }
  .nav-social-icon svg {
    width: 16px !important;
    height: 16px !important;
  }
  .nav-social-icon.whatsapp-comunidad {
    height: 34px;
    padding: 0 0.55rem;
    font-size: 0.65rem;
  }
  .nav-social-icon.whatsapp-comunidad .wa-label {
    display: none;
  }
  .nav-socials-divider {
    display: none;
  }
}

/* ============================================================
   AJUSTES FINALES PC + MÓVIL + COMUNIDAD WHATSAPP
   ============================================================ */

/* Header más limpio en PC: evita que la parte de arriba quede apretada */
nav {
  min-height: 76px;
  gap: 1.2rem;
  padding: 1rem clamp(1.25rem, 4vw, 4.5rem) !important;
}

.logo {
  flex-shrink: 0;
  line-height: 1;
}

.nav-actions {
  min-width: 0;
  justify-content: flex-end;
}

.nav-socials {
  flex-wrap: nowrap;
}

.nav-cta {
  white-space: nowrap;
  flex-shrink: 0;
}

.ticker {
  margin-top: 76px;
}

.hero {
  padding-top: clamp(7.5rem, 10vw, 10rem);
  min-height: calc(100vh - 76px);
}

/* En pantallas medias de PC/tablet quitamos el texto de comunidad arriba para que no rompa */
@media (max-width: 1080px) {
  .nav-social-icon.whatsapp-comunidad .wa-label {
    display: none;
  }

  .nav-social-icon.whatsapp-comunidad {
    width: 38px;
    padding: 0;
  }
}

/* Tablet y móvil: header en dos líneas ordenadas */
@media (max-width: 820px) {
  nav {
    min-height: auto;
    display: grid;
    grid-template-columns: 1fr;
    justify-items: center;
    gap: 0.75rem;
    padding: 0.85rem 1rem !important;
  }

  .logo {
    font-size: 1.65rem;
    text-align: center;
  }

  .nav-actions {
    width: 100%;
    justify-content: center;
    gap: 0.65rem;
    flex-wrap: wrap;
  }

  .nav-socials {
    justify-content: center;
  }

  .nav-cta {
    padding: 0.62rem 1rem;
    font-size: 0.72rem;
  }

  .ticker {
    margin-top: 124px;
  }

  .hero {
    padding-top: 5.8rem;
    min-height: auto;
  }
}

@media (max-width: 600px) {
  nav {
    position: fixed;
    padding: 0.7rem 0.75rem !important;
  }

  .logo {
    font-size: 1.42rem;
  }

  .nav-actions {
    gap: 0.45rem;
  }

  .nav-socials {
    order: 2;
    width: 100%;
  }

  .nav-cta {
    order: 1;
    font-size: 0.68rem;
    padding: 0.58rem 0.95rem;
  }

  .ticker {
    margin-top: 128px;
  }

  .hero {
    padding-top: 4.8rem;
  }

  .hero h1,
  h1 {
    font-size: clamp(3rem, 15vw, 4.1rem) !important;
    line-height: 0.95;
    max-width: 100%;
  }

  .hero-sub {
    max-width: 100%;
  }

  .hero-actions {
    width: 100%;
  }

  .hero-actions .btn-primary,
  .hero-actions .btn-ghost {
    width: 100%;
    justify-content: center;
    text-align: center;
  }
}

@media (max-width: 420px) {
  .nav-social-icon {
    width: 32px;
    height: 32px;
    border-radius: 9px;
  }

  .nav-cta {
    font-size: 0.62rem;
    padding: 0.55rem 0.8rem;
  }

  .ticker {
    margin-top: 124px;
  }
}

/* Botón de comunidad en apartado redes */
.social-btn.whatsapp-community {
  border-color: rgba(37, 211, 102, 0.45);
  background: linear-gradient(135deg, rgba(37, 211, 102, 0.18), rgba(0, 255, 106, 0.07));
  color: #f0f4f0;
}

.social-btn.whatsapp-community::before {
  background: linear-gradient(135deg, rgba(37, 211, 102, 0.25), transparent 65%);
}

.social-btn.whatsapp-community .social-icon {
  background: #25d366;
  color: #050705;
  border-color: #25d366;
  box-shadow: 0 0 22px rgba(37, 211, 102, 0.2);
}

.social-btn.whatsapp-community:hover {
  border-color: #25d366;
  box-shadow: 0 20px 55px rgba(37, 211, 102, 0.14);
}

/* La sección de redes queda perfecta con 4 botones en PC y en móvil */
.social-button-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

@media (max-width: 980px) {
  .social-button-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 560px) {
  .social-button-grid {
    grid-template-columns: 1fr;
  }

  .social-btn {
    min-height: 82px;
  }
}
