/* ═══════════════════════════════════════════════════
   styles.css — Cesar Quintus Website
   ═══════════════════════════════════════════════════ */

/* ── TOKENS ─────────────────────────────────────────── */
:root {
  --bg:         #070707;
  --surface:    #0f0f0f;
  --surface2:   #141414;
  --border:     rgba(255, 255, 255, 0.06);
  --border-acc: rgba(255, 200, 80, 0.18);
  --text:       #f4f0e8;
  --muted:      #55504a;
  --accent:     #f0c040;
  --accent-lt:  #ffd97a;
  --glow:       rgba(240, 192, 64, 0.22);
  --glow-soft:  rgba(240, 192, 64, 0.10);
  --green:      #25d366;
  --cyan:       #38bdf8;
}

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

html {
  scroll-behavior: smooth;
}

body {
  background: var(--bg);
  color: var(--text);
  font-family: 'DM Sans', sans-serif;
  font-weight: 300;
  overflow-x: hidden;
  cursor: none;
}

body::before {
  content: '';
  position: fixed;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 512 512' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.025'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 999;
  opacity: 0.6;
}

/* ── CURSOR ──────────────────────────────────────────── */
.cursor {
  position: fixed;
  width: 10px;
  height: 10px;
  background: var(--accent);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
  transition: width 0.3s, height 0.3s, opacity 0.3s;
  mix-blend-mode: difference;
  opacity: 0;
}

.cursor-ring {
  position: fixed;
  width: 38px;
  height: 38px;
  border: 1px solid rgba(240, 192, 64, 0.45);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9998;
  transform: translate(-50%, -50%);
  transition: width 0.3s, height 0.3s, border-color 0.3s, opacity 0.3s;
  opacity: 0;
}

.cursor.hover      { width: 20px; height: 20px; }
.cursor-ring.hover { width: 58px; height: 58px; border-color: var(--accent); }

/* ── SCROLLBAR ───────────────────────────────────────── */
::-webkit-scrollbar       { width: 3px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: rgba(240, 192, 64, 0.3); border-radius: 2px; }

/* ── UTILITY ─────────────────────────────────────────── */
.divider {
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--border-acc), transparent);
}

.bg-surface { background: var(--surface); }

section { padding: 100px 52px; position: relative; }

.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 11px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 20px;
}
.section-tag::before {
  content: '';
  width: 26px;
  height: 1px;
  background: var(--accent);
}

.section-title {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: clamp(38px, 4vw, 60px);
  letter-spacing: -2.5px;
  line-height: 1.01;
  margin-bottom: 16px;
}

.section-sub {
  color: rgba(244, 240, 232, 0.38);
  font-size: 17px;
  line-height: 1.7;
  max-width: 480px;
  margin-bottom: 60px;
}

.section-intro {
  max-width: 1200px;
  margin: 0 auto;
}

/* ── BUTTONS ─────────────────────────────────────────── */
.btn-primary {
  background: var(--accent);
  color: #000;
  padding: 14px 34px;
  border-radius: 10px;
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 15px;
  text-decoration: none;
  box-shadow: 0 0 32px var(--glow);
  transition: transform 0.2s, box-shadow 0.3s;
  display: inline-block;
}
.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 0 60px var(--glow);
}

.btn-outline {
  color: rgba(244, 240, 232, 0.65);
  text-decoration: none;
  font-size: 15px;
  border: 1px solid var(--border-acc);
  padding: 13px 28px;
  border-radius: 10px;
  transition: border-color 0.3s, color 0.3s, background 0.3s;
  display: inline-block;
}
.btn-outline:hover {
  border-color: var(--accent);
  color: var(--accent);
  background: var(--glow-soft);
}

/* ── SCROLL REVEAL ───────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(44px);
  transition: opacity 0.75s ease, transform 0.75s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }
.d1 { transition-delay: 0.12s; }
.d2 { transition-delay: 0.24s; }
.d3 { transition-delay: 0.36s; }

/* ── ANIMATIONS ──────────────────────────────────────── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(32px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes float {
  0%, 100% { transform: translateY(0) scale(1); }
  50%       { transform: translateY(-22px) scale(1.04); }
}

@keyframes blink {
  0%, 100% { opacity: 1; }
  50%       { opacity: 0.25; }
}

/* ══════════════════════════════════════════════════════
   NAV
══════════════════════════════════════════════════════ */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 18px 52px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(7, 7, 7, 0.85);
  backdrop-filter: blur(24px);
  border-bottom: 1px solid var(--border);
  transition: background 0.3s;
}

.nav-logo {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: 21px;
  color: var(--text);
  text-decoration: none;
}
.nav-logo span { color: var(--accent); }

.nav-links {
  display: flex;
  gap: 32px;
  list-style: none;
}
.nav-links a {
  color: var(--muted);
  text-decoration: none;
  font-size: 14px;
  transition: color 0.3s;
}
.nav-links a:hover,
.nav-links a.active { color: var(--text); }

.nav-cta {
  background: var(--accent);
  color: #000;
  padding: 10px 24px;
  border-radius: 8px;
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 14px;
  text-decoration: none;
  box-shadow: 0 0 24px var(--glow);
  transition: transform 0.2s, box-shadow 0.3s;
}
.nav-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 44px var(--glow);
}

/* ══════════════════════════════════════════════════════
   HERO
══════════════════════════════════════════════════════ */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding: 120px 52px 80px;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 55% 55% at 72% 44%, rgba(200, 138, 46, 0.13) 0%, transparent 65%),
    radial-gradient(ellipse 40% 55% at 18% 80%, rgba(240, 192, 64, 0.07) 0%, transparent 62%);
}

.hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(240, 192, 64, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(240, 192, 64, 0.035) 1px, transparent 1px);
  background-size: 62px 62px;
  mask-image: radial-gradient(ellipse 90% 90% at 50% 50%, black 15%, transparent 100%);
}

.orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(70px);
  pointer-events: none;
  animation: float 9s ease-in-out infinite;
}
.orb1 { width: 460px; height: 460px; background: radial-gradient(circle, rgba(200, 138, 46, 0.28), transparent 70%); top: 5%; right: 10%; }
.orb2 { width: 280px; height: 280px; background: radial-gradient(circle, rgba(240, 192, 64, 0.18), transparent 70%); bottom: 15%; left: 8%; animation-delay: 3.5s; }
.orb3 { width: 190px; height: 190px; background: radial-gradient(circle, rgba(255, 217, 122, 0.2), transparent 70%); top: 55%; right: 28%; animation-delay: 6s; }

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 820px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  background: rgba(240, 192, 64, 0.1);
  border: 1px solid rgba(240, 192, 64, 0.26);
  border-radius: 100px;
  padding: 7px 20px;
  font-size: 12px;
  color: var(--accent);
  letter-spacing: 2.5px;
  text-transform: uppercase;
  margin-bottom: 34px;
  animation: fadeUp 0.8s ease both;
}
.hero-badge::before {
  content: '';
  width: 7px;
  height: 7px;
  background: var(--accent-lt);
  border-radius: 50%;
  box-shadow: 0 0 10px var(--accent-lt);
  animation: blink 2s infinite;
}

.hero h1 {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: clamp(54px, 8vw, 104px);
  line-height: 0.92;
  letter-spacing: -3px;
  margin-bottom: 30px;
  animation: fadeUp 0.8s 0.1s ease both;
}
.h1-outline {
  display: block;
  color: transparent;
  -webkit-text-stroke: 1px rgba(240, 192, 64, 0.25);
}
.h1-gold {
  color: var(--accent);
  text-shadow: 0 0 80px rgba(240, 192, 64, 0.45);
}

.hero-desc {
  font-size: 18px;
  line-height: 1.78;
  color: rgba(244, 240, 232, 0.42);
  max-width: 520px;
  margin-bottom: 46px;
  animation: fadeUp 0.8s 0.2s ease both;
}

.hero-actions {
  display: flex;
  gap: 14px;
  align-items: center;
  flex-wrap: wrap;
  animation: fadeUp 0.8s 0.3s ease both;
}

.hero-stats {
  position: absolute;
  right: 80px;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  gap: 14px;
  z-index: 2;
  animation: fadeUp 0.8s 0.45s ease both;
}

.stat-card {
  background: rgba(255, 255, 255, 0.025);
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 20px 28px;
  backdrop-filter: blur(18px);
  text-align: center;
  transition: border-color 0.3s, transform 0.3s;
}
.stat-card:hover {
  border-color: rgba(240, 192, 64, 0.3);
  transform: translateX(-5px);
}
.stat-num {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: 32px;
  color: var(--accent);
  display: block;
  line-height: 1;
}
.stat-lbl {
  font-size: 11px;
  color: var(--muted);
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-top: 5px;
  display: block;
}

/* ══════════════════════════════════════════════════════
   ABOUT
══════════════════════════════════════════════════════ */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 84px;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
}

.about-visual { position: relative; }

.about-img-frame {
  aspect-ratio: 4 / 5;
  border-radius: 22px;
  overflow: hidden;
  border: 1px solid var(--border);
}
.about-img-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
}

.about-glow {
  position: absolute;
  bottom: -35px;
  left: -35px;
  width: 220px;
  height: 220px;
  background: radial-gradient(circle, rgba(240, 192, 64, 0.2) 0%, transparent 70%);
  border-radius: 50%;
  filter: blur(22px);
  pointer-events: none;
}

.about-badge-float {
  position: absolute;
  bottom: 32px;
  right: -22px;
  z-index: 2;
  background: rgba(240, 192, 64, 0.1);
  border: 1px solid rgba(240, 192, 64, 0.3);
  border-radius: 14px;
  padding: 15px 22px;
  backdrop-filter: blur(20px);
}
.about-num {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: 30px;
  color: var(--accent);
  display: block;
  line-height: 1;
}
.about-lbl {
  font-size: 12px;
  color: rgba(244, 240, 232, 0.45);
  letter-spacing: 1px;
}

.skills-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 34px;
}
.skill-tag {
  background: rgba(240, 192, 64, 0.06);
  border: 1px solid var(--border);
  border-radius: 100px;
  padding: 7px 17px;
  font-size: 13px;
  color: rgba(244, 240, 232, 0.5);
  transition: border-color 0.3s, color 0.3s;
  cursor: default;
}
.skill-tag:hover {
  border-color: rgba(240, 192, 64, 0.4);
  color: var(--accent);
}

/* ══════════════════════════════════════════════════════
   YOUTUBE
══════════════════════════════════════════════════════ */
.yt-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto 52px;
  flex-wrap: wrap;
  gap: 20px;
}

.yt-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(255, 62, 62, 0.1);
  border: 1px solid rgba(255, 62, 62, 0.3);
  border-radius: 9px;
  padding: 12px 22px;
  color: #ff6b6b;
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  transition: background 0.3s, transform 0.2s;
}
.yt-btn:hover { background: rgba(255, 62, 62, 0.2); transform: translateY(-2px); }

.videos-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  max-width: 1200px;
  margin: 0 auto;
}

.video-card {
  background: var(--surface2);
  border: 1px solid var(--border);
  border-radius: 18px;
  overflow: hidden;
  transition: border-color 0.3s, transform 0.3s;
}
.video-card:hover { border-color: rgba(240, 192, 64, 0.28); transform: translateY(-5px); }

.video-embed {
  position: relative;
  aspect-ratio: 16 / 9;
  background: #000;
}
.video-embed iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: none;
}

.video-info { padding: 14px 18px 18px; }
.video-meta {
  font-size: 13px;
  color: var(--muted);
  display: flex;
  gap: 10px;
  align-items: center;
}
.v-tag {
  background: rgba(240, 192, 64, 0.1);
  color: var(--accent);
  border-radius: 5px;
  padding: 2px 9px;
  font-size: 11px;
}

.shorts-wrapper {
  max-width: 1200px;
  margin: 52px auto 0;
}
.shorts-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 14px;
}
.short-card {
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid var(--border);
  transition: border-color 0.3s, transform 0.3s;
}
.short-card:hover { border-color: rgba(240, 192, 64, 0.28); transform: translateY(-4px); }

.short-embed {
  position: relative;
  aspect-ratio: 9 / 16;
  background: #000;
}
.short-embed iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: none;
}

/* ══════════════════════════════════════════════════════
   SERVICIOS
══════════════════════════════════════════════════════ */
.tiers-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  max-width: 1200px;
  margin: 0 auto;
}

.tier-card {
  border-radius: 24px;
  padding: 42px 36px;
  border: 1px solid var(--border);
  background: var(--surface);
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
  transition: transform 0.3s, border-color 0.3s, box-shadow 0.3s;
}
.tier-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--accent), transparent);
  opacity: 0;
  transition: opacity 0.3s;
}
.tier-card:hover { transform: translateY(-8px); border-color: rgba(240, 192, 64, 0.22); }
.tier-card:hover::before { opacity: 1; }

.tier-mid {
  border-color: rgba(240, 192, 64, 0.3);
  background: linear-gradient(160deg, rgba(240, 192, 64, 0.07), rgba(200, 138, 46, 0.04));
  box-shadow: 0 0 70px rgba(240, 192, 64, 0.1);
}
.tier-mid::before { opacity: 0.9; }

.tier-top {
  border-color: rgba(255, 217, 122, 0.28);
  background: linear-gradient(160deg, rgba(255, 217, 122, 0.06), rgba(240, 192, 64, 0.03));
}
.tier-top::before {
  background: linear-gradient(90deg, transparent, var(--accent-lt), transparent);
  opacity: 0.8;
}

.tier-num {
  font-size: 11px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 6px;
  display: block;
}
.tier-pill {
  display: inline-flex;
  align-items: center;
  background: rgba(240, 192, 64, 0.1);
  border: 1px solid rgba(240, 192, 64, 0.22);
  border-radius: 100px;
  padding: 5px 14px;
  font-size: 11px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 30px;
  width: fit-content;
}
.tier-top .tier-pill {
  background: rgba(255, 217, 122, 0.1);
  border-color: rgba(255, 217, 122, 0.3);
  color: var(--accent-lt);
}

.tier-title {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: 28px;
  letter-spacing: -1px;
  margin-bottom: 8px;
}
.tier-desc {
  font-size: 13px;
  color: rgba(244, 240, 232, 0.38);
  line-height: 1.65;
  margin-bottom: 30px;
  font-style: italic;
}
.tier-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 11px;
  margin-bottom: 34px;
  flex: 1;
}
.tier-features li {
  font-size: 14px;
  color: rgba(244, 240, 232, 0.55);
  display: flex;
  align-items: flex-start;
  gap: 11px;
  line-height: 1.45;
}
.tier-features li::before {
  content: '✦';
  color: var(--accent);
  font-size: 10px;
  flex-shrink: 0;
  margin-top: 4px;
}
.tier-top .tier-features li::before { content: '★'; color: var(--accent-lt); }

.tier-cta {
  display: block;
  text-align: center;
  padding: 14px 24px;
  border-radius: 11px;
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 14px;
  text-decoration: none;
  background: rgba(240, 192, 64, 0.1);
  border: 1px solid rgba(240, 192, 64, 0.25);
  color: var(--accent);
  transition: transform 0.2s, box-shadow 0.3s, background 0.3s, color 0.3s;
}
.tier-cta:hover {
  background: var(--accent);
  color: #000;
  transform: translateY(-2px);
  box-shadow: 0 0 28px var(--glow);
}
.tier-mid .tier-cta {
  background: var(--accent);
  border: none;
  color: #000;
  box-shadow: 0 0 22px var(--glow);
}
.tier-mid .tier-cta:hover { box-shadow: 0 0 50px var(--glow); transform: translateY(-2px); }
.tier-top .tier-cta {
  background: rgba(255, 217, 122, 0.1);
  border: 1px solid rgba(255, 217, 122, 0.3);
  color: var(--accent-lt);
}
.tier-top .tier-cta:hover { background: var(--accent-lt); color: #000; transform: translateY(-2px); }

/* ══════════════════════════════════════════════════════
   TIENDA
══════════════════════════════════════════════════════ */
.store-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto 52px;
  flex-wrap: wrap;
  gap: 20px;
}
.store-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(240, 192, 64, 0.1);
  border: 1px solid rgba(240, 192, 64, 0.25);
  border-radius: 9px;
  padding: 11px 22px;
  color: var(--accent);
  font-size: 14px;
  font-weight: 500;
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  max-width: 1200px;
  margin: 0 auto;
}

.product-card {
  background: var(--surface2);
  border: 1px solid var(--border);
  border-radius: 20px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: border-color 0.3s, transform 0.3s;
}
.product-card:hover { border-color: rgba(240, 192, 64, 0.3); transform: translateY(-5px); }

.product-featured {
  border-color: rgba(240, 192, 64, 0.25);
  background: linear-gradient(160deg, rgba(240, 192, 64, 0.07), rgba(200, 138, 46, 0.04));
}
.product-soon { opacity: 0.72; }

.product-visual {
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}
.product-visual::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 60% 40%, rgba(240, 192, 64, 0.1), transparent 70%);
}
.pv-liquidglass {
  background-image: url('Liquid glass.png');
  background-size: cover;
  background-position: center;
}
.pv-lut     { background: linear-gradient(135deg, #0d0d0d, #0a1208); }
.pv-template {
  background-image: url('Titulos_CQ.jpg');
  background-size: cover;
  background-position: center;
}
.pv-free    { background: linear-gradient(135deg, #0d0d0d, #001a1a); }

.product-emoji { font-size: 46px; z-index: 1; }

.prod-badge {
  position: absolute;
  top: 12px;
  right: 12px;
  z-index: 2;
  background: var(--accent);
  color: #000;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 3px 11px;
  border-radius: 100px;
}
.badge-soon { background: var(--muted); color: var(--bg); }
.badge-free { background: var(--cyan); color: #000; }

.product-body {
  padding: 16px 18px 20px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  flex: 1;
}
.product-title {
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 14px;
  line-height: 1.35;
}
.product-desc {
  font-size: 12px;
  color: var(--muted);
  line-height: 1.55;
  flex: 1;
}

.product-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 6px;
}
.price-soon {
  font-size: 13px;
  color: var(--muted);
}
.price-free {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: 18px;
  color: var(--cyan);
}

.payhip-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: var(--accent);
  color: #000;
  padding: 13px 20px;
  border-radius: 10px;
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 14px;
  text-decoration: none;
  box-shadow: 0 0 24px var(--glow);
  transition: transform 0.2s, box-shadow 0.3s;
  margin-top: auto;
}
.payhip-btn:hover { transform: translateY(-2px); box-shadow: 0 0 44px var(--glow); }
.btn-arrow { margin-left: auto; }

.btn-notify {
  background: rgba(240, 192, 64, 0.1);
  border: 1px solid rgba(240, 192, 64, 0.25);
  color: var(--accent);
  border-radius: 8px;
  padding: 7px 14px;
  font-size: 12px;
  font-weight: 600;
  text-decoration: none;
  transition: background 0.3s, transform 0.2s;
  white-space: nowrap;
}
.btn-notify:hover { background: var(--accent); color: #000; transform: scale(1.05); }




/* ══════════════════════════════════════════════════════
   PORTAFOLIO
══════════════════════════════════════════════════════ */
.portfolio-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  grid-template-rows: auto auto;
  gap: 18px;
  max-width: 1200px;
  margin: 0 auto;
}

.pv-card {
  background: var(--surface2);
  border: 1px solid var(--border);
  border-radius: 18px;
  overflow: hidden;
  transition: border-color 0.3s, transform 0.3s;
}
.pv-card:hover { border-color: rgba(240, 192, 64, 0.28); transform: scale(1.015); }
.pv-large { grid-row: span 2; }

.pv-embed {
  position: relative;
  aspect-ratio: 16 / 9;
  background: #000;
}
.pv-large .pv-embed {
  aspect-ratio: unset;
  height: 100%;
  min-height: 300px;
}
.pv-embed iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: none;
}

.pv-info {
  padding: 14px 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid var(--border);
}
.pv-info h4 {
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 13px;
}
.pv-tag {
  font-size: 11px;
  color: var(--accent);
  background: rgba(240, 192, 64, 0.1);
  border-radius: 5px;
  padding: 3px 10px;
}

.portfolio-cta {
  text-align: center;
  margin-top: 36px;
}

/* ══════════════════════════════════════════════════════
   SOCIAL
══════════════════════════════════════════════════════ */
.social-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  max-width: 1200px;
  margin: 0 auto;
}

.social-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 22px;
  padding: 30px 28px;
  text-decoration: none;
  display: flex;
  flex-direction: column;
  gap: 14px;
  position: relative;
  transition: border-color 0.3s, transform 0.3s, background 0.3s;
}
.social-card::after {
  content: '↗';
  position: absolute;
  top: 20px;
  right: 24px;
  font-size: 17px;
  color: var(--muted);
  transition: color 0.3s, transform 0.3s;
}
.social-card:hover::after { color: var(--accent); transform: translate(3px, -3px); }
.social-card:hover {
  border-color: rgba(240, 192, 64, 0.25);
  transform: translateY(-5px);
  background: var(--glow-soft);
}

.s-icon {
  width: 50px;
  height: 50px;
  border-radius: 13px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 23px;
  border: 1px solid var(--border);
}
.s-yt { background: rgba(255, 62, 62, 0.1); border-color: rgba(255, 62, 62, 0.2); }
.s-ig { background: rgba(225, 48, 108, 0.1); border-color: rgba(225, 48, 108, 0.2); }
.s-tk { background: rgba(255, 255, 255, 0.04); border-color: rgba(255, 255, 255, 0.1); }
.s-fb { background: rgba(24, 119, 242, 0.1); border-color: rgba(24, 119, 242, 0.2); }
.s-x  { background: rgba(255, 255, 255, 0.04); border-color: rgba(255, 255, 255, 0.08); }
.s-wa { background: rgba(37, 211, 102, 0.1); border-color: rgba(37, 211, 102, 0.2); }

.s-plat { font-size: 11px; color: var(--muted); letter-spacing: 2px; text-transform: uppercase; }
.s-handle { font-family: 'Syne', sans-serif; font-weight: 700; font-size: 17px; color: var(--text); }
.s-desc { font-size: 13px; color: rgba(244, 240, 232, 0.3); line-height: 1.55; }

/* ══════════════════════════════════════════════════════
   CONTACT
══════════════════════════════════════════════════════ */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  max-width: 1200px;
  margin: 0 auto;
}

.contact-card {
  border-radius: 24px;
  padding: 46px 42px;
  display: flex;
  flex-direction: column;
  gap: 22px;
  text-decoration: none;
  color: inherit;
  position: relative;
  overflow: hidden;
  transition: transform 0.3s, box-shadow 0.3s, border-color 0.3s;
}
.contact-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--accent), transparent);
  opacity: 0;
  transition: opacity 0.3s;
}
.contact-card:hover { transform: translateY(-7px); }
.contact-card:hover::before { opacity: 1; }

.contact-wa {
  background: linear-gradient(140deg, rgba(37, 211, 102, 0.08), rgba(37, 211, 102, 0.03));
  border: 1px solid rgba(37, 211, 102, 0.22);
}
.contact-wa:hover { box-shadow: 0 0 60px rgba(37, 211, 102, 0.1); border-color: rgba(37, 211, 102, 0.42); }
.contact-wa::before { background: linear-gradient(90deg, transparent, #25d366, transparent); }

.contact-em {
  background: linear-gradient(140deg, rgba(240, 192, 64, 0.08), rgba(200, 138, 46, 0.04));
  border: 1px solid rgba(240, 192, 64, 0.22);
}
.contact-em:hover { box-shadow: 0 0 60px var(--glow); border-color: rgba(240, 192, 64, 0.42); }

.contact-icon { font-size: 42px; }
.contact-title { font-family: 'Syne', sans-serif; font-weight: 800; font-size: 26px; letter-spacing: -0.5px; }
.contact-desc { font-size: 15px; color: rgba(244, 240, 232, 0.42); line-height: 1.65; }
.contact-value { font-family: 'Syne', sans-serif; font-weight: 700; font-size: 17px; }
.contact-val-wa { color: var(--green); }
.contact-val-em { color: var(--accent); }

.contact-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 26px;
  border-radius: 11px;
  font-size: 14px;
  font-weight: 600;
  width: fit-content;
  transition: transform 0.2s, box-shadow 0.3s, background 0.3s;
}
.contact-btn-wa { background: rgba(37, 211, 102, 0.14); border: 1px solid rgba(37, 211, 102, 0.3); color: var(--green); }
.contact-btn-wa:hover { background: var(--green); color: #000; transform: translateY(-2px); }
.contact-btn-em { background: rgba(240, 192, 64, 0.1); border: 1px solid rgba(240, 192, 64, 0.28); color: var(--accent); }
.contact-btn-em:hover { background: var(--accent); color: #000; transform: translateY(-2px); }

/* ══════════════════════════════════════════════════════
   FOOTER
══════════════════════════════════════════════════════ */
footer {
  padding: 40px 52px;
  border-top: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
}
.footer-logo {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: 19px;
}
.footer-logo span { color: var(--accent); }
.footer-copy { font-size: 13px; color: var(--muted); }
.footer-links { display: flex; gap: 18px; }
.footer-links a { color: var(--muted); text-decoration: none; font-size: 13px; transition: color 0.3s; }
.footer-links a:hover { color: var(--accent); }

/* ══════════════════════════════════════════════════════
   RESPONSIVE
══════════════════════════════════════════════════════ */
@media (max-width: 1024px) {
  .hero-stats       { display: none; }
  .tiers-grid       { grid-template-columns: 1fr; }
  .videos-grid      { grid-template-columns: 1fr; }
  .products-grid    { grid-template-columns: 1fr 1fr; }
  .portfolio-grid   { grid-template-columns: 1fr; }
  .pv-large         { grid-row: span 1; }
  .social-grid      { grid-template-columns: 1fr 1fr; }
  .contact-grid     { grid-template-columns: 1fr; }
  .shorts-grid      { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 768px) {
  nav               { padding: 16px 24px; }
  .nav-links        { display: none; }
  section           { padding: 72px 24px; }
  .hero             { padding: 120px 24px 72px; }
  .hero h1          { font-size: 54px; letter-spacing: -2px; }
  .about-grid       { grid-template-columns: 1fr; gap: 42px; }
  .products-grid    { grid-template-columns: 1fr; }
  .social-grid      { grid-template-columns: 1fr; }
  .shorts-grid      { grid-template-columns: repeat(2, 1fr); }
  .contact-card     { padding: 32px 24px; }
  footer            { padding: 30px 24px; }
}