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

:root {
  --gold: #C9A84C;
  --gold-light: #E8C96A;
  --green: #22c55e;
  --black: #000000;
  --dark: #080808;
  --dark2: #0f0f0f;
  --dark3: #161616;
  --dark4: #1f1f1f;
  --white: #F5F5F0;
  --gray: #555;
  --gray2: #888;
  --gray3: #bbb;
}

html { scroll-behavior: smooth; }
body { background: var(--black); color: var(--white); font-family: 'Outfit', sans-serif; overflow-x: hidden; }

/* ── NAV ── */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  display: flex; justify-content: space-between; align-items: center;
  padding: 0 60px; height: 84px;
  border-bottom: 1px solid rgba(201,168,76,0.18);
  background: rgba(0,0,0,0.88); backdrop-filter: blur(28px);
}
.logo-link { display: flex; align-items: center; text-decoration: none; }
.logo-img { height: 90px; width: auto; object-fit: contain; mix-blend-mode: screen; }
.logo-img--footer { height: 44px; }
nav ul { display: flex; gap: 36px; list-style: none; align-items: center; }
nav a { color: var(--gray2); text-decoration: none; font-size: 14px; font-weight: 500; letter-spacing: 0.4px; transition: color 0.2s; }
nav a:hover { color: var(--white); }
.nav-cta { background: transparent; color: var(--gold) !important; padding: 9px 24px; border-radius: 100px; border: 1px solid rgba(201,168,76,0.6) !important; font-weight: 600 !important; transition: all 0.2s !important; }
.nav-cta:hover { background: var(--gold) !important; color: #000 !important; border-color: var(--gold) !important; }
.nav-cta-tg {
  background: linear-gradient(135deg, #2AABEE, #229ED9) !important;
  color: #fff !important;
  border: none !important;
  box-shadow: 0 4px 16px rgba(42,171,238,0.25) !important;
  letter-spacing: 0.3px !important;
}
.nav-cta-tg:hover {
  background: linear-gradient(135deg, #3dbcff, #2AABEE) !important;
  box-shadow: 0 6px 24px rgba(42,171,238,0.4) !important;
  transform: translateY(-1px);
}
.btn-tg-solid { background: linear-gradient(135deg, #2AABEE, #229ED9) !important; color: #fff !important; box-shadow: 0 4px 16px rgba(42,171,238,0.25) !important; }
.btn-tg-solid:hover { background: linear-gradient(135deg, #3dbcff, #2AABEE) !important; box-shadow: 0 8px 32px rgba(42,171,238,0.4) !important; }
.btn-tg {
  border: 1px solid rgba(42,171,238,0.4) !important;
  color: #2AABEE !important;
  background: rgba(42,171,238,0.05) !important;
}
.btn-tg:hover {
  background: linear-gradient(135deg, #2AABEE, #229ED9) !important;
  border-color: transparent !important;
  color: #fff !important;
  box-shadow: 0 8px 24px rgba(42,171,238,0.3) !important;
  transform: translateY(-2px);
}

/* ── HERO ── */
.hero {
  min-height: 100vh; position: relative;
  display: flex; flex-direction: column; justify-content: center;
  padding: 120px 60px 80px; overflow: hidden; background: var(--black);
}
.hero-overlay {
  position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(to top, rgba(0,0,0,1) 0%, rgba(0,0,0,0.6) 50%, rgba(0,0,0,0.2) 100%);
}
.hero-img-placeholder { position: absolute; inset: 0; z-index: 0; background: var(--black); }
.hero-img-placeholder::before {
  content: ''; position: absolute;
  width: 700px; height: 700px; border-radius: 50%;
  background: radial-gradient(circle, rgba(201,168,76,0.2) 0%, transparent 65%);
  top: -150px; right: 0%;
  animation: glow-drift 9s ease-in-out infinite;
}
.hero-img-placeholder::after {
  content: ''; position: absolute;
  width: 450px; height: 450px; border-radius: 50%;
  background: radial-gradient(circle, rgba(34,197,94,0.14) 0%, transparent 65%);
  bottom: 15%; left: 15%;
  animation: glow-drift 13s ease-in-out infinite reverse;
}
@keyframes glow-drift {
  0%, 100% { transform: translate(0, 0) scale(1); opacity: 0.8; }
  33% { transform: translate(40px, -30px) scale(1.08); opacity: 1; }
  66% { transform: translate(-25px, 20px) scale(0.93); opacity: 0.7; }
}
.hero-content { position: relative; z-index: 2; max-width: 780px; margin-bottom: 72px; }
.hero-badge {
  display: inline-flex; align-items: center; gap: 10px;
  border: 1px solid rgba(34,197,94,0.4); background: rgba(34,197,94,0.07);
  padding: 9px 22px; font-size: 11px; letter-spacing: 2.5px; text-transform: uppercase;
  color: var(--green); font-weight: 700; margin-bottom: 36px; border-radius: 100px;
}
.hero-badge span { width: 7px; height: 7px; background: var(--green); border-radius: 50%; flex-shrink: 0; animation: blink 1.5s infinite; }
@keyframes blink { 0%,100%{opacity:1} 50%{opacity:0.15} }
h1 { font-family: 'Bebas Neue', sans-serif; font-size: clamp(86px, 11vw, 150px); line-height: 0.88; letter-spacing: 2px; margin-bottom: 36px; }
h1 em {
  font-style: normal; color: var(--gold);
  position: relative; display: inline-block;
  background: linear-gradient(90deg, var(--gold) 0%, var(--gold-light) 40%, #fff8dc 50%, var(--gold-light) 60%, var(--gold) 100%);
  background-size: 200% auto;
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
  animation: shimmer 3.5s linear infinite;
}
@keyframes shimmer { 0% { background-position: 200% center; } 100% { background-position: -200% center; } }

/* ── HERO ENTRADA ── */
.hero-badge, .hero-line, .hero-content p, .hero-btns {
  opacity: 0;
  transform: translateY(28px);
  animation: hero-in 0.7s cubic-bezier(0.22,1,0.36,1) forwards;
}
.hero-badge { animation-delay: 0.1s; }
.hero-line { animation-delay: 0.28s; display: block; }
.hero-line:nth-child(2) { animation-delay: 0.42s; }
.hero-line:nth-child(3) { animation-delay: 0.56s; }
.hero-content p { animation-delay: 0.72s; }
.hero-btns { animation-delay: 0.88s; }
@keyframes hero-in { to { opacity: 1; transform: translateY(0); } }
.hero-content p { font-size: 19px; color: var(--gray3); line-height: 1.8; margin-bottom: 48px; font-weight: 400; max-width: 560px; }
.hero-btns { display: flex; gap: 16px; flex-wrap: wrap; }

.btn-main { display: inline-flex; align-items: center; gap: 9px; background: var(--gold); color: #000; padding: 15px 34px; font-size: 14px; font-weight: 700; text-decoration: none; border-radius: 100px; transition: all 0.25s; letter-spacing: 0.3px; }
.btn-main:hover { background: var(--gold-light); transform: translateY(-2px); box-shadow: 0 16px 40px rgba(201,168,76,0.35); }
.btn-main.big { padding: 19px 48px; font-size: 16px; }
.btn-outline { display: inline-flex; align-items: center; gap: 9px; border: 1px solid rgba(255,255,255,0.18); color: var(--white); padding: 15px 34px; font-size: 14px; font-weight: 500; text-decoration: none; border-radius: 100px; transition: all 0.25s; }
.btn-outline:hover { border-color: var(--gold); color: var(--gold); }

/* ── HERO CARDS ── */
.hero-cards {
  position: relative; z-index: 2;
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 0; border: 1px solid rgba(201,168,76,0.22); border-radius: 18px; overflow: hidden;
}
.hero-card {
  background: rgba(8,8,8,0.92); padding: 30px 36px;
  backdrop-filter: blur(12px); transition: background 0.3s; position: relative;
  border-right: 1px solid rgba(201,168,76,0.1);
}
.hero-card:last-child { border-right: none; }
.hero-card::after { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px; background: transparent; transition: background 0.3s; }
.hero-card:hover { background: rgba(201,168,76,0.06); }
.hero-card:hover::after { background: var(--gold); }
.hero-card.accent { background: rgba(201,168,76,0.08); }
.hero-card.accent::after { background: var(--gold); }
.card-num { font-family: 'Bebas Neue', sans-serif; font-size: 54px; color: var(--gold); line-height: 1; margin-bottom: 6px; }
.card-label { font-size: 13px; color: var(--gray2); font-weight: 400; }

/* ── TICKER ── */
.ticker-wrap { overflow: hidden; background: var(--gold); padding: 14px 0; white-space: nowrap; border-top: none; }
.ticker { display: inline-block; animation: ticker 28s linear infinite; }
.ticker span { font-family: 'Bebas Neue', sans-serif; font-size: 13px; letter-spacing: 4px; color: #000; margin: 0 36px; }
.ticker .sep { color: rgba(0,0,0,0.2); }
@keyframes ticker { from{transform:translateX(0)} to{transform:translateX(-50%)} }

/* ── SECCIONES COMUNES ── */
.sec-label { font-size: 11px; letter-spacing: 3.5px; text-transform: uppercase; color: var(--green); font-weight: 700; display: block; margin-bottom: 14px; }
.sec-title { font-family: 'Bebas Neue', sans-serif; font-size: 60px; letter-spacing: 1px; line-height: 1; }
.sec-header { display: flex; justify-content: space-between; align-items: flex-end; margin-bottom: 56px; }
.sec-sub { color: var(--gray2); font-size: 16px; max-width: 300px; line-height: 1.7; text-align: right; font-weight: 400; }

/* ── RESULTADOS ── */
.resultados { padding: 110px 60px; background: var(--dark); border-top: 1px solid rgba(201,168,76,0.12); }
.tabla-wrap { overflow-x: auto; border: 1px solid rgba(201,168,76,0.2); border-radius: 18px; box-shadow: 0 0 80px rgba(201,168,76,0.04); }
.tabla { width: 100%; border-collapse: collapse; }
.tabla thead tr { background: rgba(201,168,76,0.06); border-bottom: 1px solid rgba(201,168,76,0.2); }
.tabla th { text-align: left; font-size: 11px; letter-spacing: 2px; text-transform: uppercase; color: var(--gold); font-weight: 700; padding: 20px 28px; }
.tabla td { padding: 20px 28px; font-size: 15px; border-bottom: 1px solid rgba(255,255,255,0.04); font-weight: 400; color: var(--gray3); }
.tabla tr:last-child td { border-bottom: none; }
.tabla tbody tr:hover td { background: rgba(201,168,76,0.03); }
.sport-tag { font-size: 11px; background: rgba(255,255,255,0.06); color: var(--gray2); padding: 5px 14px; border-radius: 100px; font-weight: 600; white-space: nowrap; }
.badge { font-size: 11px; font-weight: 700; letter-spacing: 1px; padding: 6px 14px; border-radius: 100px; white-space: nowrap; }
.verde { background: rgba(34,197,94,0.1); color: var(--green); border: 1px solid rgba(34,197,94,0.25); }
.rojo { background: rgba(239,68,68,0.1); color: #ef4444; border: 1px solid rgba(239,68,68,0.2); }

/* ── SOBRE MI ── */
.sobre-mi { padding: 110px 60px; display: grid; grid-template-columns: 1fr 1fr; gap: 100px; align-items: center; background: var(--dark2); border-top: 1px solid rgba(201,168,76,0.12); }
.sobre-img { position: relative; display: flex; flex-direction: column; align-items: center; }
.slider { position: relative; border-radius: 22px; overflow: hidden; aspect-ratio: 3/4; border: 1px solid rgba(201,168,76,0.2); width: 100%; max-width: 420px; }
.slide { position: absolute; inset: 0; opacity: 0; transition: opacity 0.9s ease; z-index: 0; }
.slide.active { opacity: 1; z-index: 1; }
.img-placeholder { background: var(--dark3); width: 100%; height: 100%; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 14px; color: var(--gray); font-size: 15px; }
.img-placeholder span { font-size: 52px; opacity: 0.2; }
.slide img { width: 100%; height: 100%; object-fit: cover; object-position: center top; display: block; }
.slider-dots { position: absolute; bottom: 20px; left: 50%; transform: translateX(-50%); display: flex; gap: 8px; z-index: 10; }
.dot { width: 8px; height: 8px; border-radius: 100px; background: rgba(255,255,255,0.25); border: none; cursor: pointer; transition: all 0.4s ease; padding: 0; }
.dot.active { background: var(--gold); width: 28px; }
.sobre-stats { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-top: 16px; }
.sobre-stat { background: var(--dark3); border: 1px solid rgba(201,168,76,0.15); border-radius: 16px; padding: 24px; text-align: center; transition: border-color 0.3s; }
.sobre-stat:hover { border-color: rgba(201,168,76,0.45); }
.sobre-num { font-family: 'Bebas Neue', sans-serif; font-size: 46px; color: var(--gold); line-height: 1; margin-bottom: 6px; }
.sobre-label { font-size: 13px; color: var(--gray2); font-weight: 400; }
.sobre-content .sec-label { margin-bottom: 12px; }
.sobre-desc { color: var(--gray2); font-size: 17px; line-height: 1.85; font-weight: 400; margin-bottom: 20px; }
.sobre-btns { margin-top: 36px; }

/* ── SERVICIOS ── */
.servicios { padding: 110px 60px; background: var(--black); border-top: 1px solid rgba(201,168,76,0.12); }
.servicios-grid { display: flex; flex-direction: column; border: 1px solid rgba(201,168,76,0.2); border-radius: 22px; overflow: hidden; box-shadow: 0 0 100px rgba(201,168,76,0.04); }
.servicio-card { display: grid; grid-template-columns: 260px 1fr 230px; align-items: center; gap: 52px; padding: 40px 52px; background: var(--dark2); border-bottom: 1px solid rgba(201,168,76,0.1); transition: background 0.3s; position: relative; overflow: hidden; }
.servicio-card:last-child { border-bottom: none; }
.servicio-card:hover { background: rgba(201,168,76,0.04); }
.card-bg-icon { position: absolute; right: 280px; top: 50%; transform: translateY(-50%); font-size: 130px; color: rgba(201,168,76,0.04); pointer-events: none; z-index: 0; line-height: 1; }
.serv-left, .servicio-card > p, .serv-right { position: relative; z-index: 1; }
.servicio-card.highlight {
  background: linear-gradient(135deg, rgba(201,168,76,0.1) 0%, rgba(201,168,76,0.03) 100%);
  border-left: 3px solid var(--gold);
  box-shadow: inset 0 0 80px rgba(201,168,76,0.04);
}
.servicio-card.highlight:hover { background: linear-gradient(135deg, rgba(201,168,76,0.14) 0%, rgba(201,168,76,0.05) 100%); }
.servicio-card.highlight .card-price { font-size: 56px; }
.servicio-card.highlight .card-bg-icon { color: rgba(201,168,76,0.07); }
.card-tag.popular { animation: pulse-badge 2.5s ease-in-out infinite; }
@keyframes pulse-badge { 0%,100% { box-shadow: 0 0 0 0 rgba(201,168,76,0.5); } 50% { box-shadow: 0 0 0 7px rgba(201,168,76,0); } }
.serv-left { display: flex; align-items: center; gap: 20px; }
.serv-info { display: flex; flex-direction: column; gap: 8px; }
.card-icon { width: 56px; height: 56px; flex-shrink: 0; background: rgba(201,168,76,0.1); border: 1px solid rgba(201,168,76,0.3); border-radius: 16px; display: flex; align-items: center; justify-content: center; color: var(--gold); font-size: 22px; }
.card-tag { font-size: 10px; letter-spacing: 1.5px; text-transform: uppercase; background: rgba(255,255,255,0.06); color: var(--gray2); padding: 4px 12px; border-radius: 100px; font-weight: 600; width: fit-content; }
.card-tag.popular { background: rgba(201,168,76,0.15); color: var(--gold); border: 1px solid rgba(201,168,76,0.3); }
.servicio-card h3 { font-family: 'Bebas Neue', sans-serif; font-size: 28px; letter-spacing: 1px; color: var(--white); }
.servicio-card > p { font-size: 15px; color: var(--gray2); line-height: 1.7; font-weight: 400; }
.serv-right { display: flex; flex-direction: column; align-items: flex-end; gap: 16px; }
.card-price { font-family: 'Bebas Neue', sans-serif; font-size: 46px; color: var(--gold); line-height: 1; text-align: right; }
.card-price span { font-size: 16px; color: var(--gray2); font-family: 'Outfit', sans-serif; font-weight: 400; }
.card-btn { display: inline-flex; align-items: center; justify-content: center; padding: 12px 28px; border: 1px solid rgba(201,168,76,0.4); color: var(--gold); font-size: 13px; font-weight: 600; text-decoration: none; border-radius: 100px; transition: all 0.2s; white-space: nowrap; }
.card-btn:hover { background: var(--gold); border-color: var(--gold); color: #000; }
.highlight-btn { background: var(--gold); border-color: var(--gold); color: #000 !important; }
.highlight-btn:hover { background: var(--gold-light); border-color: var(--gold-light); }

/* ── MERCH ── */
.merch { padding: 110px 60px; background: var(--dark); border-top: 1px solid rgba(201,168,76,0.12); }
.merch-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 28px; }
.merch-card { background: var(--dark2); border: 1px solid rgba(201,168,76,0.15); border-radius: 24px; overflow: hidden; transition: all 0.35s; }
.merch-card:hover { border-color: rgba(201,168,76,0.45); box-shadow: 0 32px 80px rgba(0,0,0,0.5), 0 0 0 1px rgba(201,168,76,0.1); transform: translateY(-8px); }
.merch-img-wrap { position: relative; overflow: hidden; aspect-ratio: 16/10; background: #0a0a0a; }
.merch-img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s; }
.merch-card:hover .merch-img { transform: scale(1.06); }
.merch-badge { position: absolute; top: 18px; left: 18px; background: var(--gold); color: #000; font-size: 10px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; padding: 6px 14px; border-radius: 100px; }
.merch-info { padding: 34px; }
.merch-info h3 { font-family: 'Bebas Neue', sans-serif; font-size: 32px; letter-spacing: 1px; margin-bottom: 10px; }
.merch-info p { font-size: 15px; color: var(--gray2); line-height: 1.7; font-weight: 400; margin-bottom: 24px; }
.merch-sizes { display: flex; align-items: center; gap: 14px; margin-bottom: 24px; flex-wrap: wrap; }
.size-label { font-size: 12px; color: var(--gray2); font-weight: 600; letter-spacing: 1px; text-transform: uppercase; }
.size-btns { display: flex; gap: 8px; }
.size-btn { background: transparent; border: 1px solid rgba(255,255,255,0.1); color: var(--gray2); width: 42px; height: 42px; border-radius: 10px; font-size: 12px; font-weight: 700; cursor: pointer; transition: all 0.2s; font-family: 'Outfit', sans-serif; }
.size-btn:hover { border-color: var(--gold); color: var(--gold); }
.size-btn.active { background: rgba(201,168,76,0.15); border-color: var(--gold); color: var(--gold); }
.merch-price { font-family: 'Bebas Neue', sans-serif; font-size: 46px; color: var(--gold); line-height: 1; margin-bottom: 22px; }
.merch-price span { font-size: 16px; color: var(--gray2); font-family: 'Outfit', sans-serif; font-weight: 400; }
.merch-btn { text-align: center; }
.merch-note { text-align: center; margin-top: 48px; font-size: 14px; color: var(--gray); font-weight: 400; letter-spacing: 0.5px; }

/* ── TENDENCIAS ── */
.tendencias { padding: 110px 60px; background: var(--dark2); border-top: 1px solid rgba(201,168,76,0.12); }
.tendencias-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 28px; margin-bottom: 56px; max-width: 1100px; margin-left: auto; margin-right: auto; }
.tendencia-card { border-radius: 20px; overflow: hidden; border: 1px solid rgba(201,168,76,0.2); transition: all 0.35s; }
.tendencia-card:hover { border-color: rgba(201,168,76,0.5); transform: translateY(-6px); box-shadow: 0 24px 60px rgba(0,0,0,0.5); }
.tendencia-card img { width: 100%; height: auto; display: block; }
.tendencias-cta { text-align: center; }
.tendencias-cta p { font-size: 18px; color: var(--gray2); margin-bottom: 28px; }
.tendencias-cta strong { color: var(--gold); }
@media (max-width: 768px) {
  .tendencias { padding: 72px 20px; }
  .tendencias-grid { grid-template-columns: 1fr; }
}

/* ── CTA ── */
.cta { padding: 140px 60px; position: relative; text-align: center; background: var(--black); overflow: hidden; border-top: 1px solid rgba(201,168,76,0.12); }
.cta-bg {
  position: absolute; inset: 0; pointer-events: none;
  background:
    radial-gradient(ellipse 70% 70% at 50% 50%, rgba(201,168,76,0.1) 0%, transparent 60%),
    radial-gradient(ellipse 40% 50% at 15% 90%, rgba(34,197,94,0.07) 0%, transparent 60%),
    radial-gradient(ellipse 40% 50% at 85% 10%, rgba(201,168,76,0.07) 0%, transparent 60%);
}
.cta::before, .cta::after { content: ''; position: absolute; left: 60px; right: 60px; height: 1px; background: linear-gradient(90deg, transparent, rgba(201,168,76,0.35), transparent); }
.cta::before { top: 0; }
.cta::after { bottom: 0; }
.cta-content { position: relative; z-index: 1; max-width: 720px; margin: 0 auto; }
.cta-content h2 { font-family: 'Bebas Neue', sans-serif; font-size: clamp(54px, 7vw, 96px); letter-spacing: 2px; line-height: 0.95; margin-bottom: 26px; }
.cta-content h2 em { font-style: normal; color: var(--gold); }
.cta-content p { color: var(--gray2); font-size: 18px; line-height: 1.75; max-width: 500px; margin: 0 auto 52px; font-weight: 400; }
.cta-btns { display: flex; justify-content: center; gap: 16px; flex-wrap: wrap; }

/* ── BOTÓN FLOTANTE TELEGRAM ── */
.float-tg {
  position: fixed; bottom: 32px; right: 32px; z-index: 999;
  width: 60px; height: 60px; border-radius: 50%;
  background: linear-gradient(135deg, #2AABEE, #229ED9);
  display: flex; align-items: center; justify-content: center;
  font-size: 26px; color: #fff; text-decoration: none;
  box-shadow: 0 8px 32px rgba(42,171,238,0.45);
  transition: all 0.3s cubic-bezier(0.22,1,0.36,1);
  opacity: 0; transform: scale(0.6) translateY(20px);
}
.float-tg.visible { opacity: 1; transform: scale(1) translateY(0); }
.float-tg:hover { transform: scale(1.12) translateY(-3px); box-shadow: 0 16px 48px rgba(42,171,238,0.6); }
.float-tg-pulse {
  position: absolute; inset: -4px; border-radius: 50%;
  border: 2px solid rgba(42,171,238,0.4);
  animation: float-pulse 2s ease-out infinite;
}
@keyframes float-pulse {
  0% { opacity: 1; transform: scale(1); }
  100% { opacity: 0; transform: scale(1.5); }
}

/* ── BARRA DE PROGRESO ── */
#scroll-bar {
  position: fixed; top: 0; left: 0; z-index: 9999;
  height: 3px; width: 0%;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  transition: width 0.1s linear;
  box-shadow: 0 0 10px rgba(201,168,76,0.6);
}

/* ── FOOTER ── */
footer { border-top: 1px solid rgba(201,168,76,0.15); padding: 36px 60px; display: flex; justify-content: space-between; align-items: center; background: var(--black); }
footer p { font-size: 13px; color: var(--gray); }

/* ── HAMBURGER ── */
.hamburger { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 4px; z-index: 10000; position: relative; }
.hamburger span { display: block; width: 24px; height: 2px; background: var(--white); border-radius: 2px; transition: all 0.3s; }
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ── RESPONSIVE ── */
@media (max-width: 1100px) {
  .servicio-card { grid-template-columns: 1fr 1fr; gap: 32px; }
  .serv-right { align-items: flex-start; }
}
@media (max-width: 1024px) {
  .hero-cards { grid-template-columns: repeat(2, 1fr); }
  nav { padding: 0 32px; }
}
@media (max-width: 768px) {
  nav { padding: 0 20px; height: 70px; justify-content: space-between; }
  .logo-link { position: absolute; left: 50%; transform: translateX(-50%); }
  .hamburger { display: none; }
  #nav-menu { display: none; }
  .hero { padding: 70px 20px 48px; }
  .hero-cards { grid-template-columns: repeat(2, 1fr); border-radius: 12px; }
  .hero-card { padding: 20px 22px; }
  .card-num { font-size: 40px; }
  .sobre-mi { grid-template-columns: 1fr; padding: 72px 20px; gap: 48px; }
  .resultados, .cta, .merch, .servicios { padding: 72px 20px; }
  .servicio-card { grid-template-columns: 1fr; gap: 20px; padding: 28px 24px; }
  .serv-right { flex-direction: row; align-items: center; gap: 20px; }
  .card-price { font-size: 36px; }
  .merch-grid { grid-template-columns: 1fr; }
  .sec-header { flex-direction: column; align-items: flex-start; gap: 12px; }
  .sec-sub { text-align: left; max-width: 100%; }
  footer { flex-direction: column; gap: 12px; text-align: center; padding: 28px 20px; }
  footer .logo-link { display: none; }
  .cta-btns { flex-direction: column; align-items: center; }
  .cta-btns a { width: 100%; max-width: 320px; justify-content: center; }
  .cta::before, .cta::after { left: 20px; right: 20px; }
  .float-tg { bottom: 20px; right: 20px; width: 52px; height: 52px; font-size: 22px; }
}
