/* ============================================================
   SERSON — Production stylesheet
   Recreado del design handoff (high-fidelity, pixel-perfect)
   Acento final: #ff7a29 (elegido vía tweaks en el prototipo)
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Anton&family=Archivo:wght@400;500;600;700&family=IBM+Plex+Mono:wght@400;500&display=swap');

@font-face {
  font-family: 'Coolvetica';
  src: url('../fonts/coolvetica.otf') format('opentype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

:root {
  --bg: #070503;
  --bg-2: #0d0906;
  --panel: #120c07;
  --line: rgba(242, 237, 227, 0.12);
  --ink: #f2ede3;
  --muted: #9a9087;
  --accent: #ff7a29;
  --accent-soft: rgba(255, 122, 41, 0.55);
  --display: 'Coolvetica', 'Anton', sans-serif;
  --body: 'Archivo', sans-serif;
  --mono: 'IBM Plex Mono', monospace;
}

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

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--ink);
  font-family: var(--body);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

::selection { background: var(--accent); color: #fff; }

.micro {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

/* ============ NAV ============ */
.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 0 48px;
  height: 72px;
  background: rgba(7, 5, 3, 0.88);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
}

.nav-logo {
  font-family: var(--display);
  font-size: 22px;
  letter-spacing: 0.06em;
  color: var(--ink);
  text-decoration: none;
}

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

.nav-links a {
  font-family: var(--body);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--muted);
  text-decoration: none;
  transition: color 0.2s ease;
}

.nav-links a:hover { color: var(--ink); }
.nav-links a.active { color: var(--ink); }

.nav-menu {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--body);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--ink);
  text-decoration: none;
  background: none;
  border: none;
  cursor: pointer;
}

.lang-toggle {
  font-family: var(--body);
  font-size: 11px; font-weight: 700; letter-spacing: 0.12em;
  color: var(--muted); background: none;
  border: 1px solid var(--line); border-radius: 100px;
  padding: 7px 13px; cursor: pointer; margin-left: 18px;
  transition: color 0.2s ease, border-color 0.2s ease;
}
.lang-toggle:hover { color: var(--ink); border-color: var(--border-hi); }

.nav-menu .bars { display: flex; flex-direction: column; gap: 4px; }
.nav-menu .bars span { display: block; width: 18px; height: 2px; background: var(--accent); transition: transform 0.25s ease, opacity 0.25s ease; }
.nav-menu.open .bars span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.nav-menu.open .bars span:nth-child(2) { opacity: 0; }
.nav-menu.open .bars span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

/* ============ MENÚ MÓVIL (overlay) ============ */
.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 60;
  background: rgba(7, 5, 3, 0.98);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}
.mobile-menu.open {
  opacity: 1;
  pointer-events: auto;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}

.mobile-menu-inner {
  display: flex;
  flex-direction: column;
  gap: 30px;
  text-align: center;
}
.mobile-menu-inner a {
  font-family: var(--display);
  font-size: clamp(30px, 9vw, 44px);
  letter-spacing: 0.04em;
  color: var(--ink);
  text-decoration: none;
  transition: color 0.2s ease;
}
.mobile-menu-inner a:hover,
.mobile-menu-inner a.active { color: var(--accent); }

/* ============ HERO (HOME) ============ */
.hero {
  position: relative;
  min-height: calc(100vh - 72px);
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 48px;
  padding: 56px 48px 64px;
  overflow: hidden;
}

.hero-photo {
  position: absolute;
  inset: 0;
  z-index: 0;
  background-image: url('../img/hero-photo.jpg?v=2');
  background-size: cover;
  background-position: 72% 28%;
  filter: saturate(1.05) contrast(1.02);
}

.hero-photo::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, var(--bg) 18%, rgba(7,5,3,0.82) 34%, rgba(7,5,3,0.25) 55%, rgba(7,5,3,0.55) 82%, rgba(7,5,3,0.92) 100%),
    linear-gradient(0deg, var(--bg) 2%, rgba(7,5,3,0) 30%),
    linear-gradient(180deg, rgba(7,5,3,0.7) 0%, rgba(7,5,3,0) 22%);
}

.hero-glow {
  position: absolute;
  top: 8%;
  right: -2%;
  width: 8px;
  height: 70%;
  z-index: 1;
  background: linear-gradient(180deg, transparent, var(--accent-soft) 30%, var(--accent-soft) 65%, transparent);
  filter: blur(14px);
  border-radius: 999px;
}

.hero-left {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  max-width: 720px;
}

.hero-kicker {
  color: var(--accent);
  margin-bottom: 18px;
}

.hero h1 {
  font-family: var(--display);
  font-size: clamp(110px, 17vw, 230px);
  line-height: 0.92;
  letter-spacing: 0.01em;
  font-weight: 400;
  color: var(--ink);
}

.hero-sub {
  margin-top: 30px;
  font-family: var(--body);
  font-weight: 400;
  font-size: clamp(16px, 1.3vw, 19px);
  line-height: 1.75;
  color: rgba(242, 237, 227, 0.82);
  max-width: 560px;
  text-wrap: pretty;
}

.hero-cta {
  margin-top: 36px;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  width: fit-content;
  font-family: var(--body);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--accent);
  text-decoration: none;
  padding-bottom: 8px;
  border-bottom: 1px solid var(--accent);
  transition: gap 0.25s ease;
}

.hero-cta:hover { gap: 20px; }

.hero-scroll {
  position: absolute;
  left: 48px;
  bottom: 36px;
  z-index: 2;
  color: var(--muted);
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: flex-start;
}

.hero-scroll .tick {
  width: 1px;
  height: 36px;
  background: linear-gradient(180deg, var(--accent), transparent);
}

/* stat cards */
.hero-stats {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  gap: 14px;
  justify-content: center;
}

.stat-card {
  border: 1px solid var(--line);
  border-radius: 6px;
  background: rgba(10, 7, 4, 0.55);
  padding: 20px 22px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  transition: border-color 0.25s ease;
}

.hero-stats .stat-card {
  padding: 22px 24px;
  backdrop-filter: blur(6px);
}

.stat-card:hover { border-color: var(--accent-soft); }

.stat-card .glyph {
  color: var(--accent);
  font-family: var(--mono);
  font-size: 13px;
  margin-bottom: 6px;
}

.stat-card .value {
  font-family: var(--display);
  font-size: 32px;
  letter-spacing: 0.02em;
  line-height: 1;
}

.hero-stats .stat-card .value { font-size: 36px; }

.stat-card .label { color: var(--muted); }

/* ============ ABOUT (HOME) ============ */
.about {
  position: relative;
  background: var(--bg-2);
  border-top: 1px solid var(--line);
  padding: 110px 48px 120px;
  overflow: hidden;
}

.about-ghost {
  position: absolute;
  left: -28px;
  top: 50%;
  transform: translateY(-50%) rotate(180deg);
  writing-mode: vertical-rl;
  font-family: var(--display);
  font-size: 150px;
  line-height: 1;
  color: transparent;
  -webkit-text-stroke: 1px rgba(242, 237, 227, 0.07);
  pointer-events: none;
  user-select: none;
}

.about-index {
  color: var(--muted);
  margin-bottom: 48px;
}

.about-index em {
  font-style: normal;
  color: var(--accent);
}

.about-grid {
  display: grid;
  grid-template-columns: 360px 1fr 320px;
  gap: 64px;
  align-items: start;
  max-width: 1400px;
  margin: 0 auto;
}

.about-portrait { position: relative; }

.about-portrait img {
  display: block;
  width: 100%;
  aspect-ratio: 0.87;
  object-fit: cover;
  border-radius: 4px;
  filter: saturate(1.05);
}

.about-portrait::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 4px;
  background: linear-gradient(180deg, rgba(13,9,6,0) 55%, rgba(13,9,6,0.65) 100%);
  pointer-events: none;
}

.about-kicker {
  color: var(--accent);
  margin-bottom: 22px;
}

.about h2 {
  font-family: var(--display);
  font-size: clamp(44px, 4.6vw, 68px);
  line-height: 1.02;
  font-weight: 400;
  letter-spacing: 0.01em;
  margin-bottom: 32px;
  max-width: 460px;
}

.about h2 .dot { color: var(--accent); }

.about-copy p {
  color: var(--muted);
  font-size: 15px;
  line-height: 1.75;
  max-width: 440px;
  text-wrap: pretty;
}

.about-copy p + p { margin-top: 18px; }

.about-copy .creed {
  margin-top: 18px;
  color: var(--ink);
  font-size: 15px;
  line-height: 1.75;
}

.about-sign {
  margin-top: 30px;
  font-family: var(--mono);
  font-size: 13px;
  letter-spacing: 0.1em;
  color: var(--accent);
}

.about-roles { display: flex; flex-direction: column; }

.role-row {
  display: flex;
  align-items: baseline;
  gap: 24px;
  padding: 15px 0;
  border-bottom: 1px solid var(--line);
}

.role-row:first-child { border-top: 1px solid var(--line); }

.role-row .num {
  font-family: var(--mono);
  font-size: 11px;
  color: var(--accent);
  letter-spacing: 0.1em;
}

.role-row .role {
  font-family: var(--body);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink);
}

.about-bts { margin-top: 36px; }

.about-bts img {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  border-radius: 4px;
}

/* ============ MOTION GRAPHICS (HOME) ============ */
.motion {
  padding: 110px 48px;
  background: var(--bg-2);
  border-top: 1px solid var(--line);
}
.motion-inner {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 0.9fr;
  gap: 64px;
  align-items: center;
}
.m-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--accent);
  margin-bottom: 22px;
}
.motion h2 {
  font-family: var(--display);
  font-size: clamp(40px, 5vw, 68px);
  line-height: 0.98;
  font-weight: 400;
  letter-spacing: 0.01em;
}
.motion h2 .dot { color: var(--accent); }
.motion-lead {
  margin-top: 24px;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.75;
  max-width: 520px;
  text-wrap: pretty;
}
.motion-lead strong { color: var(--ink); font-weight: 600; }
.motion-roles { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 26px; }
.motion-roles span {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  border: 1px solid var(--line);
  border-radius: 100px;
  padding: 8px 16px;
}
.motion-cta { margin-top: 34px; }
.fiverr-badge {
  display: inline-flex; align-items: center; gap: 14px;
  border: 1px solid var(--accent-soft); border-radius: 10px;
  padding: 13px 20px; text-decoration: none;
  background: rgba(255, 122, 41, 0.08);
  transition: border-color 0.25s ease, transform 0.25s ease;
}
.fiverr-badge:hover { border-color: var(--accent); transform: translateY(-2px); }
.fiverr-badge .fb-star { font-size: 24px; color: var(--accent); line-height: 1; }
.fiverr-badge .fb-meta { display: flex; flex-direction: column; gap: 3px; }
.fiverr-badge .fb-meta strong { color: var(--ink); font-size: 15px; font-weight: 700; letter-spacing: 0.01em; }
.fiverr-badge .fb-meta span { color: var(--muted); font-size: 12px; }
.fiverr-badge .fb-meta span b { color: var(--accent); font-weight: 600; }
.motion-stats { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }

.motion-videos { max-width: 1400px; margin: 72px auto 0; }
.motion-videos .mv-label {
  font-size: 10px; font-weight: 700; letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--accent); display: flex; align-items: center; gap: 12px; margin-bottom: 28px;
}
.motion-videos .mv-label::before { content: ''; width: 22px; height: 1px; background: var(--accent); }
.video-scroller {
  display: flex;
  gap: 18px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding-bottom: 16px;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: thin;
  scrollbar-color: var(--border-hi) transparent;
}
.video-scroller .video-card { flex: 0 0 360px; scroll-snap-align: start; }
.video-scroller::-webkit-scrollbar { height: 6px; }
.video-scroller::-webkit-scrollbar-track { background: transparent; }
.video-scroller::-webkit-scrollbar-thumb { background: var(--border-hi); border-radius: 3px; }
.video-scroller::-webkit-scrollbar-thumb:hover { background: var(--accent-soft); }

@media (max-width: 560px) {
  .video-scroller .video-card { flex: 0 0 82%; }
}
.motion-channels {
  margin-top: 32px; color: var(--muted); font-size: 14px; line-height: 1.7;
}
.motion-channels a { color: var(--accent); text-decoration: none; }
.motion-channels a:hover { text-decoration: underline; }

.channels { margin-top: 44px; }
.channels-label {
  font-size: 11px; font-weight: 700; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--muted); margin-bottom: 18px;
}
.channels-row { display: flex; gap: 14px; flex-wrap: wrap; }
.channel-card {
  display: flex; align-items: center; gap: 14px;
  border: 1px solid var(--line); border-radius: 100px;
  padding: 10px 24px 10px 10px; text-decoration: none;
  transition: border-color 0.25s ease, transform 0.25s ease;
}
.channel-card:hover { border-color: var(--accent-soft); transform: translateY(-2px); }
.channel-card img { width: 50px; height: 50px; border-radius: 50%; object-fit: cover; flex-shrink: 0; }
.channel-meta { display: flex; flex-direction: column; gap: 2px; }
.channel-meta .cname { font-family: var(--body); font-weight: 600; font-size: 15px; color: var(--ink); }
.channel-meta .crole { font-size: 12px; color: var(--muted); }
@media (max-width: 560px) { .channel-card { flex: 1 1 100%; } }

@media (max-width: 900px) {
  .motion { padding: 80px 24px; }
  .motion-inner { grid-template-columns: 1fr; gap: 44px; }
  .motion-videos { margin-top: 48px; }
}

/* ============ GUINNESS WORLD RECORD (HOME) ============ */
.guinness {
  position: relative;
  background:
    radial-gradient(ellipse 80% 120% at 85% 50%, rgba(255, 122, 41, 0.10), transparent 60%),
    var(--bg-2);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 110px 48px;
  overflow: hidden;
}

.guinness-inner {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 0.82fr;
  gap: 72px;
  align-items: center;
}

.g-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--accent);
  border: 1px solid var(--accent-soft);
  border-radius: 999px;
  padding: 9px 18px;
  margin-bottom: 28px;
}

.guinness h2 {
  font-family: var(--display);
  font-size: clamp(40px, 5vw, 72px);
  line-height: 0.98;
  font-weight: 400;
  letter-spacing: 0.01em;
}

.guinness h2 .dot { color: var(--accent); }

.g-lead {
  margin-top: 26px;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.75;
  max-width: 520px;
  text-wrap: pretty;
}

.g-lead strong { color: var(--ink); font-weight: 600; }

.g-record-card {
  margin-top: 34px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(10, 7, 4, 0.5);
  padding: 26px 28px;
  max-width: 520px;
}

.g-record-card > .micro { color: var(--accent); }

.g-record-title {
  margin-top: 12px;
  font-family: var(--body);
  font-size: 17px;
  font-weight: 600;
  line-height: 1.5;
  color: var(--ink);
}

.g-record-meta {
  margin-top: 22px;
  display: flex;
  gap: 48px;
}

.g-record-meta > div { display: flex; flex-direction: column; gap: 4px; }
.g-record-meta .rn {
  font-family: var(--display);
  font-size: 44px;
  line-height: 1;
  color: var(--accent);
}
.g-record-meta .micro { color: var(--muted); }

.guinness-media {
  position: relative;
  min-height: 480px;
}

.g-photo-main {
  position: relative;
  z-index: 1;
  width: 78%;
  margin-left: auto;
  border-radius: 6px;
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.55);
}

.g-photo-main img { display: block; width: 100%; }

.g-photo-sub {
  position: absolute;
  z-index: 2;
  left: 0;
  bottom: -10px;
  width: 46%;
  border-radius: 6px;
  overflow: hidden;
  border: 2px solid var(--bg-2);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.6);
}

.g-photo-sub img { display: block; width: 100%; }

@media (max-width: 900px) {
  .guinness { padding: 80px 24px; }
  .guinness-inner { grid-template-columns: 1fr; gap: 48px; }
  .guinness-media { min-height: 0; display: flex; gap: 14px; align-items: flex-end; }
  .g-photo-main { width: 62%; margin-left: 0; }
  .g-photo-sub { position: static; width: 38%; bottom: 0; border-width: 1px; }
}

/* ============ TUDOT MEDIA (HOME) ============ */
.tudot {
  padding: 110px 48px 120px;
  background: var(--bg);
  border-top: 1px solid var(--line);
}

.tudot-lead {
  max-width: 720px;
  margin: 0 auto 48px;
  color: var(--muted);
  font-size: clamp(17px, 1.6vw, 21px);
  line-height: 1.7;
  text-wrap: pretty;
}

.tudot-lead strong { color: var(--ink); font-weight: 600; }

.tudot-services {
  max-width: 1400px;
  margin: 40px auto 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
}

.tudot-service {
  background: var(--bg);
  padding: 28px 30px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  transition: background 0.25s ease;
}

.tudot-service:hover { background: var(--panel); }

.tudot-service .sn {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.2em;
  color: var(--accent);
}

.tudot-service .st {
  font-family: var(--display);
  font-size: 24px;
  font-weight: 400;
  letter-spacing: 0.02em;
}

.tudot-service .sd { color: var(--muted); font-size: 13.5px; line-height: 1.6; }

@media (max-width: 900px) {
  .tudot { padding: 80px 24px; }
  .tudot-services { grid-template-columns: 1fr; }
}

/* ============ MÉTODO DE PRUEBAS (RESEÑAS) ============ */
.testing {
  padding: 96px 48px;
  background: var(--bg);
  border-bottom: 1px solid var(--line);
}

.testing-lead {
  max-width: 680px;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.75;
  margin-bottom: 44px;
  text-wrap: pretty;
}

.testing-lead strong { color: var(--ink); font-weight: 600; }

.testing-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.test-card {
  position: relative;
  border: 1px solid var(--line);
  border-radius: 6px;
  overflow: hidden;
  background: var(--panel);
  transition: border-color 0.25s ease, transform 0.25s ease;
}

.test-card:hover { border-color: var(--accent-soft); transform: translateY(-3px); }

.test-card img {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.test-card .tc-body { padding: 22px 24px 26px; }

.test-card .tc-tag {
  color: var(--accent);
  display: block;
  margin-bottom: 10px;
}

.test-card .tc-title {
  font-family: var(--display);
  font-size: 26px;
  font-weight: 400;
  letter-spacing: 0.02em;
  margin-bottom: 8px;
}

.test-card .tc-desc { color: var(--muted); font-size: 14px; line-height: 1.65; }

@media (max-width: 760px) {
  .testing { padding: 64px 24px; }
  .testing-grid { grid-template-columns: 1fr; }
}

/* ============ GALLERY (HOME · TRABAJO) ============ */
.gallery {
  padding: 110px 48px 120px;
  background: var(--bg);
  border-top: 1px solid var(--line);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 14px;
  max-width: 1400px;
  margin: 0 auto;
}

.g-item {
  position: relative;
  overflow: hidden;
  border-radius: 4px;
  border: 1px solid var(--line);
  grid-column: span 2;
  aspect-ratio: 3 / 2;
}

.g-item.wide { grid-column: span 4; }
.g-item.half { grid-column: span 3; }

.g-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(1.02);
  transition: transform 0.6s ease, filter 0.4s ease;
}

.g-item:hover img { transform: scale(1.04); filter: saturate(1.08); }

.g-cap {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 20px 22px;
  background: linear-gradient(to top, rgba(7, 5, 3, 0.88), rgba(7, 5, 3, 0) 100%);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.g-item:hover .g-cap { opacity: 1; }

.g-cap .micro { color: var(--accent); display: block; margin-bottom: 4px; }
.g-cap .ctitle { font-family: var(--body); font-size: 14px; font-weight: 600; color: var(--ink); }

@media (max-width: 1100px) {
  .gallery-grid { grid-template-columns: 1fr 1fr; }
  .g-item, .g-item.wide, .g-item.half { grid-column: span 1; }
}

@media (max-width: 760px) {
  .gallery { padding: 80px 24px; }
  .gallery-grid { grid-template-columns: 1fr; }
}

/* ============ THANKS / FOLLOW (ARMA TU CÁMARA) ============ */
.thanks {
  padding: 100px 48px 110px;
  text-align: center;
  border-top: 1px solid var(--line);
  background:
    radial-gradient(ellipse 60% 90% at 50% 0%, rgba(255, 122, 41, 0.08), transparent 70%),
    var(--bg);
}
.thanks .kicker {
  color: var(--accent);
  display: flex; align-items: center; justify-content: center; gap: 12px;
  margin-bottom: 18px;
}
.thanks h2 {
  font-family: var(--display);
  font-size: clamp(34px, 5vw, 60px);
  line-height: 1.02;
  font-weight: 400;
  letter-spacing: 0.01em;
}
.thanks h2 .dot { color: var(--accent); }
.thanks p {
  color: var(--muted);
  max-width: 540px;
  margin: 22px auto 0;
  line-height: 1.7;
  font-size: 15px;
  text-wrap: pretty;
}
.socials-row {
  display: flex; justify-content: center; gap: 14px;
  margin-top: 36px; flex-wrap: wrap;
}
.social-btn {
  display: inline-flex; align-items: center; gap: 10px;
  border: 1px solid var(--line); border-radius: 100px;
  padding: 12px 22px;
  color: var(--muted); text-decoration: none;
  font-size: 13px; font-weight: 600; letter-spacing: 0.04em;
  transition: color 0.25s ease, background 0.25s ease, border-color 0.25s ease, transform 0.25s ease;
}
.social-btn:hover { color: #080808; background: var(--accent); border-color: var(--accent); transform: translateY(-2px); }
.social-btn svg { width: 18px; height: 18px; }
@media (max-width: 560px) {
  .thanks { padding: 72px 24px 80px; }
  .social-btn { flex: 1 1 40%; justify-content: center; }
}

/* donación PayPal */
.thanks-donate { margin-top: 44px; color: var(--muted); font-size: 14px; }
.btn-donate {
  display: inline-flex; align-items: center; gap: 10px; margin-top: 14px;
  padding: 13px 28px; border-radius: 100px;
  background: var(--accent); color: #080808;
  font-weight: 700; font-size: 13px; letter-spacing: 0.08em; text-transform: uppercase;
  text-decoration: none;
  transition: filter 0.25s ease, transform 0.25s ease;
}
.btn-donate:hover { filter: brightness(1.12); transform: translateY(-2px); }

/* ============ ASESORÍAS (SOBRE MÍ) ============ */
.advice {
  padding: 100px 48px;
  border-top: 1px solid var(--line);
  background:
    radial-gradient(ellipse 50% 80% at 50% 0%, rgba(255, 122, 41, 0.06), transparent 70%),
    var(--bg);
}
.advice-inner { max-width: 900px; margin: 0 auto; text-align: center; }
.advice .kicker { color: var(--accent); display: flex; justify-content: center; gap: 12px; margin-bottom: 18px; }
.advice h2 {
  font-family: var(--display);
  font-size: clamp(36px, 5vw, 64px);
  line-height: 1.02; font-weight: 400; letter-spacing: 0.01em;
}
.advice h2 .dot { color: var(--accent); }
.advice .lead {
  color: var(--muted); max-width: 620px; margin: 24px auto 0;
  line-height: 1.7; font-size: 16px; text-wrap: pretty;
}
.advice ul {
  list-style: none; display: flex; flex-wrap: wrap; gap: 10px;
  justify-content: center; margin: 28px 0 0; padding: 0;
}
.advice ul li {
  font-family: var(--mono); font-size: 11px; letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--muted); border: 1px solid var(--line); border-radius: 100px; padding: 8px 16px;
}
.advice-cta { margin-top: 36px; }
.advice-disclaimer {
  margin: 24px auto 0; max-width: 540px;
  color: var(--muted); font-size: 12.5px; line-height: 1.65; font-style: italic;
}
.advice-disclaimer a { color: var(--accent); text-decoration: none; font-style: normal; }
.advice-disclaimer a:hover { text-decoration: underline; }
@media (max-width: 760px) { .advice { padding: 72px 24px; } }

/* ============ HOME CTA (cierre) ============ */
.home-cta {
  padding: 120px 48px;
  text-align: center;
  border-top: 1px solid var(--line);
  background:
    radial-gradient(ellipse 60% 80% at 50% 0%, rgba(255, 122, 41, 0.07), transparent 70%),
    var(--bg-2);
}
.home-cta .kicker {
  color: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-bottom: 20px;
}
.home-cta h2 {
  font-family: var(--display);
  font-size: clamp(40px, 6vw, 80px);
  line-height: 1;
  font-weight: 400;
  letter-spacing: 0.01em;
}
.home-cta h2 .dot { color: var(--accent); }
.home-cta p {
  color: var(--muted);
  max-width: 540px;
  margin: 22px auto 0;
  line-height: 1.7;
  font-size: 16px;
  text-wrap: pretty;
}
.home-cta-actions {
  display: flex;
  gap: 14px;
  justify-content: center;
  margin-top: 36px;
  flex-wrap: wrap;
}
@media (max-width: 760px) { .home-cta { padding: 80px 24px; } }

/* ============ FOOTER / NEXT HINT ============ */
.next-hint {
  border-top: 1px solid var(--line);
  padding: 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: var(--muted);
}

.page-home .next-hint { padding: 56px 48px; }

.next-hint .micro em { font-style: normal; color: var(--accent); }
.next-hint a { color: var(--muted); }

/* ============ PAGE HERO (SUBPÁGINAS) ============ */
.phero {
  position: relative;
  border-bottom: 1px solid var(--line);
  overflow: hidden;
}

.page-resenas .phero { padding: 96px 48px 72px; }
.page-arma .phero { padding: 88px 48px 56px; }

.phero-ghost {
  position: absolute;
  right: -10px;
  font-family: var(--display);
  line-height: 1;
  color: transparent;
  -webkit-text-stroke: 1px rgba(242, 237, 227, 0.06);
  pointer-events: none;
  user-select: none;
  white-space: nowrap;
}

.page-resenas .phero-ghost { top: -28px; font-size: 220px; text-transform: uppercase; }
.page-arma .phero-ghost { top: 8px; right: 32px; font-size: clamp(90px, 15vw, 180px); }

.phero-kicker { color: var(--accent); margin-bottom: 18px; }

.phero h1 {
  font-family: var(--display);
  line-height: 0.95;
  font-weight: 400;
  letter-spacing: 0.01em;
}

.page-resenas .phero h1 { font-size: clamp(72px, 11vw, 150px); }
.page-arma .phero h1 { font-size: clamp(64px, 9.5vw, 130px); }

.phero h1 .dot { color: var(--accent); }

.phero-sub {
  max-width: 560px;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.7;
  text-wrap: pretty;
}

.page-resenas .phero-sub { margin-top: 26px; }
.page-arma .phero-sub { margin-top: 24px; }

.phero-sub strong { color: var(--ink); font-weight: 600; }

.phero-stats {
  margin-top: 48px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  max-width: 1100px;
}

/* ============ SECTION HEAD (compartido) ============ */
.section-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 48px;
  flex-wrap: wrap;
}

.section-head .left .index { color: var(--muted); margin-bottom: 16px; }
.section-head .left .index em { font-style: normal; color: var(--accent); }

.section-head h2 {
  font-family: var(--display);
  font-size: clamp(40px, 4.4vw, 60px);
  line-height: 1;
  font-weight: 400;
}

.section-head h2 .dot { color: var(--accent); }

.section-head .aside {
  color: var(--muted);
  max-width: 260px;
  font-size: 13px;
  line-height: 1.7;
}

/* ============ VIDEOS (RESEÑAS) ============ */
.videos {
  padding: 96px 48px;
  background: var(--bg-2);
  border-bottom: 1px solid var(--line);
}

.video-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.video-card {
  border: 1px solid var(--line);
  border-radius: 6px;
  overflow: hidden;
  background: var(--panel);
  transition: border-color 0.25s ease, transform 0.25s ease;
}

.video-card:hover { border-color: var(--accent-soft); transform: translateY(-3px); }

.video-thumb {
  position: relative;
  aspect-ratio: 16 / 9;
  background: #000;
  cursor: pointer;
  display: block;
  width: 100%;
  border: none;
  padding: 0;
}

.video-thumb img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(1.05) contrast(1.02);
  opacity: 0.92;
  transition: opacity 0.25s ease;
}

.video-thumb:hover img { opacity: 1; }

.video-thumb .play {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
}

.video-thumb .play span {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: rgba(7, 5, 3, 0.72);
  border: 1px solid var(--accent);
  color: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  padding-left: 4px;
  transition: background 0.2s ease, color 0.2s ease;
}

.video-thumb:hover .play span { background: var(--accent); color: #fff; }

.video-thumb iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.video-meta { padding: 20px 22px 24px; display: flex; flex-direction: column; gap: 10px; }

.video-meta .tag { color: var(--accent); }

.video-meta h3 {
  font-family: var(--body);
  font-size: 17px;
  font-weight: 600;
  line-height: 1.4;
}

.video-meta .stats {
  color: var(--muted);
  display: flex;
  gap: 16px;
}

.video-meta a.ext {
  margin-top: 6px;
  width: fit-content;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--accent);
  text-decoration: none;
  border-bottom: 1px solid var(--accent);
  padding-bottom: 5px;
}

.videos-cta {
  margin-top: 48px;
  display: flex;
  justify-content: center;
}

.btn-line {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--ink);
  text-decoration: none;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 16px 32px;
  transition: border-color 0.25s ease, color 0.25s ease;
}

.btn-line:hover { border-color: var(--accent); color: var(--accent); }

/* ============ REDES (RESEÑAS) ============ */
.social {
  padding: 96px 48px;
  background: var(--bg-2);
  border-bottom: 1px solid var(--line);
}

.platform-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.platform-card {
  border: 1px solid var(--line);
  border-radius: 6px;
  background: var(--panel);
  padding: 36px;
  display: flex;
  flex-direction: column;
  transition: border-color 0.25s ease, transform 0.25s ease;
}

.platform-card:hover { border-color: var(--accent-soft); transform: translateY(-3px); }

.platform-card .top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.platform-card .picon {
  width: 46px;
  height: 46px;
  border: 1px solid var(--line);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
}

.platform-card .handle {
  font-family: var(--mono);
  font-size: 13px;
  letter-spacing: 0.08em;
  color: var(--muted);
}

.platform-card .pvalue {
  font-family: var(--display);
  font-size: 56px;
  line-height: 1;
  margin-top: 30px;
}

.platform-card .plabel { color: var(--muted); margin-top: 10px; }

.platform-card .desc {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.7;
  margin-top: 16px;
  max-width: 420px;
  text-wrap: pretty;
}

.ext-link {
  margin-top: 24px;
  width: fit-content;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--accent);
  text-decoration: none;
  border-bottom: 1px solid var(--accent);
  padding-bottom: 5px;
}

.live-banner {
  margin-top: 24px;
  border: 1px solid var(--accent-soft);
  border-radius: 6px;
  padding: 36px 40px;
  display: grid;
  grid-template-columns: auto 1fr auto auto;
  gap: 40px;
  align-items: center;
  background: linear-gradient(90deg, rgba(255, 122, 41, 0.07), rgba(255, 122, 41, 0) 60%);
}

.live-flag {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--accent);
  white-space: nowrap;
}

.live-dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--accent);
  animation: live-pulse 1.8s ease-out infinite;
}

@keyframes live-pulse {
  0% { box-shadow: 0 0 0 0 var(--accent-soft); }
  70% { box-shadow: 0 0 0 10px rgba(255, 122, 41, 0); }
  100% { box-shadow: 0 0 0 0 rgba(255, 122, 41, 0); }
}

@media (prefers-reduced-motion: reduce) { .live-dot { animation: none; } }

.live-banner h3 {
  font-family: var(--display);
  font-size: 26px;
  font-weight: 400;
  letter-spacing: 0.02em;
}

.live-banner .ldesc {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.7;
  margin-top: 10px;
  max-width: 560px;
  text-wrap: pretty;
}

.live-banner .lstat {
  display: flex;
  flex-direction: column;
  gap: 8px;
  text-align: right;
}

.live-banner .lstat .value {
  font-family: var(--display);
  font-size: 44px;
  line-height: 1;
}

.live-banner .lstat .micro { color: var(--muted); max-width: 150px; }

/* top clips IG / TikTok */
.clips {
  margin-top: 56px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.clips-head {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 16px;
  margin-bottom: 18px;
  color: var(--muted);
}

.clips-head .t { color: var(--ink); }
.clips-head a.hlink { color: var(--accent); text-decoration: none; }

.clip-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.clip-card {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.clip-card .cmeta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  color: var(--muted);
}

.clip-card .cmeta a {
  color: var(--accent);
  text-decoration: none;
  font-weight: 700;
}

.clip-link { display: block; }
.clip-cover {
  width: 100%;
  aspect-ratio: 9 / 16;
  object-fit: cover;
  border-radius: 6px;
  display: block;
  transition: opacity 0.25s ease, transform 0.25s ease;
}
.clip-link:hover .clip-cover { opacity: 0.88; transform: translateY(-2px); }

/* placeholder de imagen (sustituye a <image-slot> del prototipo) */
.ph-slot {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  border: 1px dashed var(--line);
  border-radius: 6px;
  background: var(--panel);
  color: var(--muted);
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  text-align: center;
  padding: 12px;
}

.ph-slot.r916 { aspect-ratio: 9 / 16; }
.ph-slot.r43 { aspect-ratio: 4 / 3; border-radius: 0; border-left: none; border-right: none; border-top: none; }

/* ============ TRUSTED BY · MARQUEE (RESEÑAS) ============ */
.trusted { padding: 96px 0 110px; border-bottom: 1px solid var(--line); }

.trusted .section-head { padding: 0 48px; }

.marquee {
  overflow: hidden;
  padding: 48px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 10%, #000 90%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 10%, #000 90%, transparent);
}

.marquee-track {
  display: flex;
  align-items: center;
  width: max-content;
  animation: marquee-scroll 55s linear infinite;
}

.marquee:hover .marquee-track { animation-play-state: paused; }

@keyframes marquee-scroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

@media (prefers-reduced-motion: reduce) {
  .marquee { overflow-x: auto; }
  .marquee-track { animation: none; }
}

.m-item {
  flex: none;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  margin: 0 52px;
}

.m-item img {
  height: 30px;
  width: auto;
  object-fit: contain;
  opacity: 0.8;
  transition: opacity 0.25s ease;
}

.m-item img.tall { height: 48px; }

.m-item:hover img { opacity: 1; }

.m-item .wordmark {
  font-family: var(--display);
  font-size: 27px;
  color: var(--ink);
  line-height: 1;
  opacity: 0.85;
}

.m-item .amb-tag { color: var(--accent); }

/* ============ CTA MARCAS (RESEÑAS) ============ */
.brand-cta {
  padding: 110px 48px 120px;
  background: var(--bg-2);
  text-align: left;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 48px;
  align-items: center;
}

.brand-cta .kicker { color: var(--accent); margin-bottom: 18px; }

.brand-cta h2 {
  font-family: var(--display);
  font-size: clamp(44px, 5.4vw, 78px);
  line-height: 1.02;
  font-weight: 400;
  max-width: 760px;
}

.brand-cta h2 .dot { color: var(--accent); }

.brand-cta p {
  margin-top: 20px;
  color: var(--muted);
  max-width: 520px;
  font-size: 15px;
  line-height: 1.7;
  text-wrap: pretty;
}

.brand-cta .actions { display: flex; flex-direction: column; gap: 16px; }

.btn-solid {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: #fff;
  background: var(--accent);
  text-decoration: none;
  border-radius: 999px;
  padding: 18px 36px;
  transition: filter 0.25s ease;
}

.btn-solid:hover { filter: brightness(1.12); }

/* ============ FORMULARIO DE CONTACTO ============ */
.c-form { display: flex; flex-direction: column; gap: 14px; width: 100%; }
.c-form .f-group { display: flex; flex-direction: column; gap: 6px; }
.c-form .f-label {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
}
.c-form .f-input,
.c-form .f-textarea {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 13px 15px;
  color: var(--ink);
  font-family: var(--body);
  font-size: 14px;
  outline: none;
  width: 100%;
  transition: border-color 0.2s ease;
}
.c-form .f-input:focus,
.c-form .f-textarea:focus { border-color: var(--accent); }
.c-form .f-input::placeholder,
.c-form .f-textarea::placeholder { color: var(--muted); }
.c-form .f-textarea { resize: vertical; min-height: 120px; }
.c-form .btn-solid { width: 100%; }

.c-methods { display: flex; flex-direction: column; gap: 14px; margin-top: 28px; }
.c-method {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--muted);
  text-decoration: none;
  font-size: 14px;
  width: fit-content;
  transition: color 0.2s ease;
}
.c-method:hover { color: var(--ink); }
.c-method .ico { display: inline-flex; color: var(--accent); }

/* ============ WIZARD (ARMA TU CÁMARA) ============ */
.wizard {
  min-height: 60vh;
  padding: 72px 48px 110px;
  background: var(--bg-2);
}

.wizard-inner { max-width: 1100px; margin: 0 auto; }

.crumbs {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 48px;
  min-height: 28px;
}

.crumb {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  color: var(--muted);
}

.crumb .val { color: var(--ink); }
.crumb .sep { color: var(--accent); }

.crumb-reset {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--accent);
  background: none;
  border: none;
  cursor: pointer;
  padding: 0 0 3px;
  border-bottom: 1px solid var(--accent-soft);
}

.crumb-back {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
  background: none;
  border: 1px solid var(--line);
  border-radius: 100px;
  cursor: pointer;
  padding: 7px 16px;
  margin-right: 4px;
  transition: border-color 0.2s ease, color 0.2s ease;
}
.crumb-back:hover { color: var(--ink); border-color: var(--border-hi); }

.crumb-link {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink);
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  transition: color 0.2s ease;
}
.crumb-link:hover { color: var(--accent); }
.crumb-sep { color: var(--accent); font-family: var(--mono); font-size: 11px; }

.crumb-reset:hover { border-bottom-color: var(--accent); }

.step { display: none; }
.step.on { display: block; animation: step-in 0.4s ease both; }

@keyframes step-in {
  from { opacity: 0; transform: translateY(14px); }
  to { opacity: 1; transform: translateY(0); }
}

@media (prefers-reduced-motion: reduce) {
  .step.on { animation: none; }
}

.q-label { color: var(--accent); margin-bottom: 16px; }

.q-title {
  font-family: var(--display);
  font-size: clamp(36px, 4vw, 56px);
  font-weight: 400;
  line-height: 1.02;
  margin-bottom: 40px;
  max-width: 640px;
}

.q-title .dot { color: var(--accent); }

/* option cards */
.opts { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.opts.four { grid-template-columns: repeat(4, 1fr); }

.opt {
  text-align: left;
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 28px 26px 30px;
  cursor: pointer;
  color: var(--ink);
  font-family: var(--body);
  display: flex;
  flex-direction: column;
  gap: 14px;
  transition: border-color 0.25s ease, transform 0.25s ease;
}

.opt:hover { border-color: var(--accent-soft); transform: translateY(-3px); }

.opt .num {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.2em;
  color: var(--accent);
}

.opt .t {
  font-family: var(--display);
  font-size: 27px;
  line-height: 1.05;
  font-weight: 400;
}

.opt .d {
  color: var(--muted);
  font-size: 13.5px;
  line-height: 1.6;
  text-wrap: pretty;
}

.opt .go {
  margin-top: auto;
  color: var(--accent);
  font-size: 14px;
}

/* results */
.res-group { margin-top: 8px; }
.res-group + .res-group { margin-top: 56px; }

.res-group-label {
  display: flex;
  align-items: baseline;
  gap: 16px;
  margin-bottom: 22px;
  color: var(--muted);
}

.res-group-label .micro em { font-style: normal; color: var(--accent); }

.res-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.cam-card {
  position: relative;
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 6px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: border-color 0.25s ease, transform 0.25s ease;
}

.cam-card:hover { border-color: var(--accent-soft); transform: translateY(-3px); }

.cam-card.fav { border-color: var(--accent-soft); }

.fav-flag {
  position: absolute;
  top: 14px;
  left: 14px;
  z-index: 3;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--accent);
  color: #fff;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 7px 12px;
  border-radius: 999px;
}

.cam-card .cam-img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.cam-meta {
  padding: 20px 22px 24px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex: 1;
}

.cam-meta .rank {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.2em;
  color: var(--accent);
}

.cam-meta h3 {
  font-family: var(--display);
  font-size: 25px;
  font-weight: 400;
  line-height: 1.08;
}

.cam-meta .note { color: var(--muted); font-size: 13.5px; line-height: 1.6; }

.cam-meta .buy {
  margin-top: auto;
  padding-top: 14px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  width: fit-content;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--accent);
  text-decoration: none;
  border-bottom: 1px solid var(--accent);
  padding-bottom: 5px;
  transition: gap 0.25s ease;
}

.cam-meta .buy:hover { gap: 16px; }

/* lens / accessory pick cards (sin foto) */
.pick-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.pick-card {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 24px 24px 26px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: var(--panel);
  transition: border-color 0.25s ease, transform 0.25s ease;
}

.pick-card:hover { border-color: var(--accent-soft); transform: translateY(-3px); }
.pick-card.fav { border-color: var(--accent-soft); }

.pick-rank {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
}

.pick-name {
  font-family: var(--display);
  font-size: 22px;
  line-height: 1.08;
  font-weight: 400;
}

.pick-note { color: var(--muted); font-size: 13px; line-height: 1.6; }

.pick-buy {
  margin-top: auto;
  padding-top: 12px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  width: fit-content;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
  text-decoration: none;
  border-bottom: 1px solid var(--accent);
  padding-bottom: 5px;
  transition: gap 0.25s ease;
}

.pick-buy:hover { gap: 16px; }
.pick-code {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.04em;
  color: var(--accent);
}
.pick-code strong { color: var(--ink); }

.pick-review {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 8px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--muted);
  text-decoration: none;
  transition: color 0.2s ease;
}
.pick-review:hover { color: var(--ink); }
.pick-buy.pending {
  color: var(--muted);
  border-bottom-color: var(--line);
  cursor: default;
  letter-spacing: 0.16em;
}
.pick-buy.pending:hover { gap: 10px; }

/* accessory groups */
.acc-group { margin-top: 8px; }
.acc-group + .acc-group { margin-top: 44px; }

.acc-group-label {
  display: flex;
  align-items: baseline;
  gap: 14px;
  margin-bottom: 18px;
  color: var(--muted);
}
.acc-group-label .micro em { font-style: normal; color: var(--accent); }
.acc-group-label .gl-hint { font-size: 12px; color: var(--dim, #5a5048); }

@media (max-width: 1100px) {
  .pick-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 760px) {
  .pick-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; }
  .pick-card { padding: 16px 14px 18px; gap: 8px; }
  .pick-name { font-size: 17px; }
  .pick-note { font-size: 12px; line-height: 1.5; }
  .pick-buy, .pick-buy.pending { font-size: 10px; letter-spacing: 0.12em; }
  .pick-rank { font-size: 9px; }
}
@media (max-width: 330px) {
  .pick-grid { grid-template-columns: 1fr; }
}

/* coming soon */
.coming {
  border: 1px dashed var(--line);
  border-radius: 6px;
  padding: 64px 48px;
  text-align: center;
  max-width: 640px;
  margin: 0 auto;
}

.coming h3 {
  font-family: var(--display);
  font-size: 34px;
  font-weight: 400;
  margin-bottom: 14px;
}

.coming p { color: var(--muted); font-size: 15px; line-height: 1.7; }

.coming .crumb-reset { margin-top: 28px; display: inline-block; }

.coming .kicker { color: var(--accent); margin-bottom: 16px; }

/* disclosure */
.disclosure {
  margin-top: 64px;
  color: var(--muted);
  font-size: 12.5px;
  line-height: 1.7;
  max-width: 560px;
}

/* ============ RESPONSIVE ============ */
@media (max-width: 1100px) {
  .hero { grid-template-columns: 1fr; }
  .hero-stats {
    flex-direction: row;
    flex-wrap: wrap;
    margin-top: 48px;
  }
  .hero-stats .stat-card { flex: 1 1 200px; }
  .about-grid { grid-template-columns: 1fr 1fr; }
  .about-roles { grid-column: 1 / -1; }

  .phero-stats { grid-template-columns: repeat(2, 1fr); }
  .platform-grid { grid-template-columns: 1fr; }
  .clips { grid-template-columns: 1fr; }
  .live-banner { grid-template-columns: 1fr; gap: 20px; }
  .clip-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .live-banner .lstat { text-align: left; }
  .video-grid { grid-template-columns: 1fr; max-width: 640px; margin: 0 auto; }
  .brand-cta { grid-template-columns: 1fr; }

  .opts, .opts.four { grid-template-columns: repeat(2, 1fr); }
  .res-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 760px) {
  .nav { padding: 0 24px; }
  .nav-links { display: none; }

  .hero { padding: 40px 24px 56px; }
  .hero-photo { background-position: 50% 14%; }
  .hero-scroll { display: none; }
  .about { padding: 80px 24px; }
  .about-grid { grid-template-columns: 1fr; gap: 48px; }
  .about-ghost { display: none; }

  .page-resenas .phero { padding: 64px 24px 56px; }
  .page-resenas .phero-ghost { font-size: 120px; }
  .page-arma .phero { padding: 56px 24px 48px; }
  .page-arma .phero-ghost { font-size: 110px; }

  .videos, .social { padding: 64px 24px; }
  .trusted { padding: 64px 0 72px; }
  .trusted .section-head { padding: 0 24px; }
  .platform-card { padding: 28px 24px; }
  .live-banner { padding: 28px 24px; }
  .brand-cta { padding: 72px 24px 88px; }
  .phero-stats { grid-template-columns: 1fr; }

  .wizard { padding: 56px 24px 80px; }
  .opts, .opts.four { grid-template-columns: 1fr; }
  .res-grid { grid-template-columns: 1fr; }

  .next-hint,
  .page-home .next-hint { padding: 32px 24px; flex-direction: column; gap: 16px; align-items: flex-start; }
  .page-home .next-hint { padding: 40px 24px; }
}
