/* =========================================================
   DANLINE.ONLINE — Sistema visual abejas (negro + amarillo)
   ========================================================= */

:root {
  --bg: #000000;
  --bg-2: #0a0a0a;
  --bg-3: #141414;
  --bg-4: #1c1c1c;
  --honey: #ffc107;
  --honey-bright: #ffd700;
  --honey-light: #ffe066;
  --honey-dark: #c89000;
  --amber: #ff9100;
  --ink: #fafafa;
  --ink-dim: #888;
  --ink-muted: #555;
  --border: rgba(255, 193, 7, 0.12);
  --border-strong: rgba(255, 193, 7, 0.35);
  --shadow-honey: 0 0 40px rgba(255, 193, 7, 0.35);
  --display: "Anton", "Bebas Neue", Impact, sans-serif;
  --serif: "Fraunces", "Playfair Display", Georgia, serif;
  --sans: "Inter", system-ui, sans-serif;
  --mono: "JetBrains Mono", "Space Mono", ui-monospace, monospace;
  --hex-clip: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
html, body { width: 100%; overflow-x: hidden; }

body {
  font-family: var(--sans);
  background: var(--bg);
  color: var(--ink);
  line-height: 1.5;
  font-weight: 400;
  cursor: none;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { background: none; border: none; color: inherit; cursor: none; font: inherit; }

::selection { background: var(--honey); color: #000; }

/* =========================================================
   PATRÓN PANAL DE FONDO + GRANO
   ========================================================= */
.honeycomb-bg {
  position: fixed;
  inset: 0;
  z-index: -2;
  pointer-events: none;
  opacity: 0.05;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='80' height='92' viewBox='0 0 80 92'><polygon points='40,2 78,24 78,68 40,90 2,68 2,24' fill='none' stroke='%23ffc107' stroke-width='1.2'/></svg>");
  background-size: 80px 92px;
}
body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 9998;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='200' height='200'><filter id='n'><feTurbulence baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/></filter><rect width='100%25' height='100%25' filter='url(%23n)' opacity='0.5'/></svg>");
  opacity: 0.05;
  mix-blend-mode: screen;
}
body::after {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 9997;
  background: radial-gradient(ellipse at center, transparent 30%, rgba(0, 0, 0, 0.55) 90%);
}

/* =========================================================
   PRELOADER
   ========================================================= */
.preloader {
  position: fixed;
  inset: 0;
  background: var(--bg);
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 30px;
}
.preloader.gone {
  pointer-events: none;
}
.preloader-hex {
  width: 80px;
  height: 92px;
  position: relative;
  animation: hex-spin 2s ease-in-out infinite;
}
.preloader-hex svg { width: 100%; height: 100%; }
.preloader-hex svg polygon {
  fill: none;
  stroke: var(--honey);
  stroke-width: 2;
  stroke-dasharray: 360;
  stroke-dashoffset: 360;
  animation: hex-draw 1.5s ease-out forwards;
}
@keyframes hex-spin {
  0%, 100% { transform: rotate(0deg); }
  50% { transform: rotate(60deg); }
}
@keyframes hex-draw {
  to { stroke-dashoffset: 0; }
}
.preloader-text {
  font-family: var(--mono);
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.4em;
  color: var(--honey);
  opacity: 0;
  animation: fade-in 0.6s ease 0.8s forwards;
}
@keyframes fade-in { to { opacity: 1; } }

/* =========================================================
   CURSOR
   ========================================================= */
.cursor {
  position: fixed;
  top: 0; left: 0;
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--honey-bright);
  box-shadow: 0 0 12px var(--honey-bright), 0 0 30px rgba(255, 215, 0, 0.5);
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
  transition: width 0.25s ease, height 0.25s ease;
  will-change: transform;
}
.cursor-ring {
  position: fixed;
  top: 0; left: 0;
  width: 36px; height: 36px;
  border: 1px solid rgba(255, 193, 7, 0.4);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
  will-change: transform;
}
.cursor.is-hover { width: 22px; height: 22px; background: #fff; }

/* =========================================================
   POLEN (partículas)
   ========================================================= */
.pollen {
  position: fixed;
  pointer-events: none;
  width: 4px; height: 4px;
  border-radius: 50%;
  background: var(--honey-bright);
  box-shadow: 0 0 6px var(--honey-bright);
  z-index: 9996;
  opacity: 0;
}

/* =========================================================
   NAV
   ========================================================= */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 20px 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.9), rgba(0, 0, 0, 0));
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}
.nav .brand {
  font-family: var(--display);
  font-size: 1.5rem;
  letter-spacing: 0.05em;
  color: var(--ink);
  display: flex;
  align-items: center;
  gap: 10px;
  text-transform: uppercase;
}
.nav .brand-hex {
  width: 26px; height: 30px;
  display: inline-block;
}
.nav .brand-hex svg { width: 100%; height: 100%; }
.nav .brand .accent { color: var(--honey); }
.nav .links {
  display: flex;
  gap: 36px;
  font-family: var(--mono);
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
}
.nav .links a {
  position: relative;
  padding: 6px 0;
  color: var(--ink-dim);
  transition: color 0.3s;
}
.nav .links a:hover { color: var(--honey); }
.nav .links a::after {
  content: "";
  position: absolute;
  left: 0; bottom: 0;
  width: 0; height: 1px;
  background: var(--honey);
  transition: width 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.nav .links a:hover::after { width: 100%; }
.nav .nav-cta {
  font-family: var(--mono);
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 12px 22px;
  border: 1px solid var(--honey);
  background: var(--honey);
  color: #000;
  font-weight: 600;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}
.nav .nav-cta:hover { background: transparent; color: var(--honey); }

/* =========================================================
   HERO
   ========================================================= */
.hero {
  min-height: 100vh;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 140px 20px 80px;
  overflow: hidden;
  text-align: center;
}
.hero-stripes {
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 8px;
  background: repeating-linear-gradient(
    90deg,
    var(--honey) 0 60px,
    #000 60px 90px
  );
  z-index: 5;
}
.hero-stripes.bottom {
  top: auto;
  bottom: 0;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 50% at 50% 40%, rgba(255, 193, 7, 0.18), transparent 60%),
    radial-gradient(ellipse 30% 30% at 80% 70%, rgba(255, 145, 0, 0.12), transparent 70%);
  z-index: 0;
}

.hero .eyebrow {
  font-family: var(--mono);
  font-size: 0.75rem;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--honey);
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  gap: 12px;
  position: relative;
  z-index: 2;
}
.hero .eyebrow .dot {
  display: inline-block;
  width: 8px; height: 8px;
  background: var(--honey-bright);
  border-radius: 50%;
  animation: pulse 1.5s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); box-shadow: 0 0 12px var(--honey-bright); }
  50% { opacity: 0.5; transform: scale(0.7); }
}

.hero h1 {
  font-family: var(--display);
  font-weight: 400;
  font-size: clamp(4rem, 16vw, 14rem);
  line-height: 0.85;
  letter-spacing: -0.02em;
  position: relative;
  z-index: 2;
  text-transform: uppercase;
}
.hero h1 .line {
  display: block;
  overflow: hidden;
}
.hero h1 .word {
  display: inline-block;
}
.hero h1 .accent {
  color: transparent;
  -webkit-text-stroke: 2px var(--honey);
  font-style: italic;
  position: relative;
  display: inline-block;
}
.hero h1 .accent::before {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--honey);
  -webkit-mask: linear-gradient(180deg, transparent 0%, transparent 50%, #000 50%, #000 100%);
  mask: linear-gradient(180deg, transparent 0%, transparent 50%, #000 50%, #000 100%);
}

.hero .sub {
  margin-top: 40px;
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(1.1rem, 2vw, 1.5rem);
  color: var(--ink-dim);
  max-width: 640px;
  position: relative;
  z-index: 2;
  line-height: 1.4;
}
.hero .sub strong { color: var(--honey); font-weight: 600; }

.hero-cta {
  margin-top: 56px;
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  justify-content: center;
  position: relative;
  z-index: 2;
}

.btn {
  font-family: var(--mono);
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 0.75rem;
  padding: 18px 36px;
  position: relative;
  overflow: hidden;
  isolation: isolate;
  transition: color 0.4s ease;
  border: 1px solid var(--border-strong);
  display: inline-flex;
  align-items: center;
  gap: 10px;
  cursor: none;
  font-weight: 600;
}
.btn { background: transparent; }
.btn::before {
  content: "";
  position: absolute;
  inset: 0;
  background: transparent;
  z-index: -2;
}
.btn::after {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--honey);
  transform: translateY(100%);
  transition: transform 0.5s cubic-bezier(0.65, 0, 0.35, 1);
  z-index: -1;
}
.btn:hover::after { transform: translateY(0); }
.btn:hover { color: #000; border-color: var(--honey); }
.btn.primary {
  color: #000;
  border-color: var(--honey);
}
.btn.primary::before { background: var(--honey); }
.btn.primary::after { background: #fff; }
.btn.primary:hover { color: #000; }

/* Hero floating bees */
.hero-bee {
  position: absolute;
  width: 40px;
  height: 40px;
  z-index: 3;
  pointer-events: none;
}
.hero-bee svg { width: 100%; height: 100%; }
.hero-bee.b1 { top: 20%; left: 12%; }
.hero-bee.b2 { top: 60%; right: 15%; }
.hero-bee.b3 { bottom: 20%; left: 25%; }

.bee-dyn {
  position: absolute;
  width: calc(40px * var(--bee-scale, 1));
  height: calc(40px * var(--bee-scale, 1));
  pointer-events: none;
  z-index: 3;
  will-change: transform;
  opacity: var(--bee-op, 0.9);
}
.bee-dyn svg { width: 100%; height: 100%; display: block; }
.bee-dyn .bee-wings { transform-origin: 30px 14px; animation: wingflap 0.12s ease-in-out infinite alternate; }
@keyframes wingflap {
  from { transform: scaleY(1); }
  to   { transform: scaleY(0.35); }
}
.cta-section { position: relative; overflow: hidden; }

/* Marquee bottom */
.hero-marquee {
  position: absolute;
  bottom: 30px;
  left: 0; right: 0;
  z-index: 5;
  overflow: hidden;
  white-space: nowrap;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 16px 0;
}
.marquee-track {
  display: inline-block;
  animation: marq 30s linear infinite;
  font-family: var(--display);
  font-size: 1.4rem;
  text-transform: uppercase;
  letter-spacing: 0.3em;
  color: var(--ink-muted);
}
.marquee-track span {
  margin-right: 50px;
}
.marquee-track .hot { color: var(--honey); }
@keyframes marq {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* =========================================================
   SECCIONES
   ========================================================= */
section {
  position: relative;
  padding: 140px 40px;
}
.section-head {
  margin-bottom: 80px;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}
.section-head .label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--mono);
  font-size: 0.7rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--honey);
  padding: 8px 14px;
  border: 1px solid var(--border-strong);
  border-radius: 100px;
  margin-bottom: 24px;
}
.section-head .label::before {
  content: "";
  width: 6px; height: 6px;
  background: var(--honey);
  border-radius: 50%;
}
.section-head h2 {
  font-family: var(--display);
  font-size: clamp(2.8rem, 6.5vw, 5.5rem);
  line-height: 0.95;
  text-transform: uppercase;
  letter-spacing: -0.02em;
  font-weight: 400;
  max-width: 900px;
}
.section-head h2 em {
  color: transparent;
  -webkit-text-stroke: 1.5px var(--honey);
  font-style: italic;
}
.section-head h2 .filled { color: var(--honey); font-style: italic; }
.section-head .tagline {
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.15rem;
  color: var(--ink-dim);
  margin-top: 24px;
  max-width: 600px;
}

/* =========================================================
   BENTO GRID — 6 demos
   ========================================================= */
.works {
  background: var(--bg);
}
.bento {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  grid-auto-rows: 280px;
  gap: 16px;
  max-width: 1400px;
  margin: 0 auto;
}
.bento-card {
  position: relative;
  overflow: hidden;
  background: var(--bg-3);
  border: 1px solid var(--border);
  cursor: none;
  transition: border-color 0.4s, transform 0.5s cubic-bezier(0.22, 1, 0.36, 1);
  isolation: isolate;
}
.bento-card.live { border-color: var(--border-strong); }
.bento-card:hover {
  border-color: var(--honey);
  transform: translateY(-4px);
}
.bento-card.span-3 { grid-column: span 3; }
.bento-card.span-2 { grid-column: span 2; }
.bento-card.row-2 { grid-row: span 2; }

.bento-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  filter: brightness(0.5) saturate(1.1);
  transition: filter 0.5s ease, transform 1s cubic-bezier(0.22, 1, 0.36, 1);
}
.bento-card:hover .bento-bg {
  filter: brightness(0.75) saturate(1.3);
  transform: scale(1.06);
}
.bento-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, transparent 0%, rgba(0,0,0,0.4) 50%, rgba(0,0,0,0.85) 100%);
  z-index: 1;
}

/* Honeycomb pattern overlay para placeholders */
.bento-card.placeholder .bento-bg {
  background:
    repeating-linear-gradient(60deg, transparent 0 30px, rgba(255, 193, 7, 0.04) 30px 31px),
    repeating-linear-gradient(-60deg, transparent 0 30px, rgba(255, 193, 7, 0.04) 30px 31px),
    radial-gradient(circle at 50% 50%, rgba(255, 193, 7, 0.08), transparent 60%),
    var(--bg-2);
}

.bento-content {
  position: absolute;
  inset: 0;
  z-index: 2;
  padding: 32px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.bento-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}
.bento-cat {
  font-family: var(--mono);
  font-size: 0.65rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--honey);
  background: rgba(0, 0, 0, 0.6);
  padding: 6px 12px;
  border: 1px solid var(--border-strong);
  border-radius: 100px;
  backdrop-filter: blur(8px);
}
.bento-status {
  font-family: var(--mono);
  font-size: 0.6rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: 6px;
}
.bento-status.live { color: var(--honey-bright); }
.bento-status.live::before {
  content: "";
  width: 6px; height: 6px;
  background: var(--honey-bright);
  border-radius: 50%;
  box-shadow: 0 0 8px var(--honey-bright);
  animation: pulse 1.5s ease-in-out infinite;
}
.bento-status.soon {
  color: var(--ink-muted);
}
.bento-status.soon::before {
  content: "";
  width: 6px; height: 6px;
  border: 1px solid var(--ink-muted);
  border-radius: 50%;
}

.bento-bottom {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 20px;
}
.bento-info {
  flex: 1;
  min-width: 0;
}
.bento-name {
  font-family: var(--display);
  font-size: clamp(1.6rem, 3vw, 2.8rem);
  line-height: 0.95;
  text-transform: uppercase;
  letter-spacing: -0.01em;
  font-weight: 400;
  margin-bottom: 8px;
}
.bento-card.live .bento-name {
  background: linear-gradient(135deg, #fff 0%, var(--honey) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.bento-desc {
  font-family: var(--serif);
  font-style: italic;
  font-size: 0.95rem;
  color: var(--ink-dim);
  line-height: 1.4;
  max-width: 90%;
}
.bento-arrow {
  width: 56px;
  height: 56px;
  flex: 0 0 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  background: rgba(0, 0, 0, 0.6);
  border: 1px solid var(--border);
  border-radius: 50%;
  transition: all 0.4s cubic-bezier(0.22, 1, 0.36, 1);
  backdrop-filter: blur(8px);
  color: var(--ink);
}
.bento-card:hover .bento-arrow {
  background: var(--honey);
  border-color: var(--honey);
  color: #000;
  transform: rotate(-45deg) scale(1.1);
}
.bento-card.placeholder:hover .bento-arrow {
  background: rgba(255, 193, 7, 0.15);
  color: var(--honey);
}

/* Hexagonal accent on top right of placeholder cards */
.bento-card.placeholder::after {
  content: "";
  position: absolute;
  top: 80px;
  right: -40px;
  width: 200px;
  height: 230px;
  background: var(--honey);
  opacity: 0.04;
  clip-path: var(--hex-clip);
  z-index: 1;
  transition: opacity 0.5s, transform 0.8s ease;
}
.bento-card.placeholder:hover::after {
  opacity: 0.1;
  transform: rotate(20deg);
}

/* =========================================================
   STATS / CONTADORES
   ========================================================= */
.stats {
  background: var(--bg-2);
  padding: 100px 40px;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 60px;
  max-width: 1200px;
  margin: 0 auto;
}
.stat {
  text-align: center;
}
.stat .num {
  font-family: var(--display);
  font-size: clamp(3rem, 6vw, 5rem);
  line-height: 1;
  color: var(--honey);
  margin-bottom: 12px;
  letter-spacing: -0.02em;
}
.stat .lbl {
  font-family: var(--mono);
  font-size: 0.7rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--ink-dim);
}

/* =========================================================
   SERVICIOS
   ========================================================= */
.services {
  background: var(--bg);
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  max-width: 1300px;
  margin: 0 auto;
  border: 1px solid var(--border);
}
.service-card {
  padding: 40px 32px;
  border-right: 1px solid var(--border);
  position: relative;
  transition: background 0.4s ease;
  cursor: none;
}
.service-card:last-child { border-right: none; }
.service-card:hover { background: var(--bg-2); }
.service-card.featured {
  background: var(--bg-3);
  position: relative;
}
.service-card.featured::before {
  content: "★ MÁS VENDIDO";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate(-50%, -50%);
  background: var(--honey);
  color: #000;
  font-family: var(--mono);
  font-size: 0.6rem;
  font-weight: 700;
  padding: 6px 14px;
  letter-spacing: 0.2em;
}
.service-card .tier {
  font-family: var(--mono);
  font-size: 0.65rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--honey);
  margin-bottom: 12px;
}
.service-card .tier-name {
  font-family: var(--display);
  font-size: 2rem;
  margin-bottom: 8px;
  text-transform: uppercase;
}
.service-card .tier-price {
  font-family: var(--display);
  font-size: 2.6rem;
  color: var(--honey);
  margin-bottom: 4px;
  letter-spacing: -0.02em;
}
.service-card .tier-price .currency {
  font-family: var(--mono);
  font-size: 0.7rem;
  color: var(--ink-dim);
  vertical-align: top;
  margin-left: 6px;
  letter-spacing: 0.2em;
}
.service-card .tier-time {
  font-family: var(--mono);
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ink-muted);
  margin-bottom: 24px;
}
.service-card ul {
  list-style: none;
  margin-bottom: 30px;
}
.service-card ul li {
  padding: 8px 0;
  font-family: var(--sans);
  font-size: 0.9rem;
  color: var(--ink-dim);
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: flex-start;
  gap: 10px;
}
.service-card ul li::before {
  content: "▸";
  color: var(--honey);
  font-weight: 700;
}
.service-card ul li:last-child { border-bottom: none; }

/* =========================================================
   PROCESO
   ========================================================= */
.process {
  background: var(--bg-2);
  border-top: 1px solid var(--border);
}
.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  max-width: 1300px;
  margin: 0 auto;
  position: relative;
}
.process-step {
  padding: 32px 28px;
  background: var(--bg);
  border: 1px solid var(--border);
  position: relative;
  transition: all 0.4s ease;
}
.process-step:hover {
  border-color: var(--border-strong);
  transform: translateY(-4px);
}
.step-num {
  font-family: var(--display);
  font-size: 4rem;
  color: transparent;
  -webkit-text-stroke: 1.5px var(--honey);
  line-height: 1;
  margin-bottom: 24px;
}
.step-title {
  font-family: var(--display);
  font-size: 1.5rem;
  text-transform: uppercase;
  margin-bottom: 12px;
  color: var(--honey);
}
.step-desc {
  font-family: var(--serif);
  font-style: italic;
  font-size: 0.95rem;
  line-height: 1.5;
  color: var(--ink-dim);
}

/* =========================================================
   CTA FINAL
   ========================================================= */
.cta-section {
  padding: 160px 40px;
  text-align: center;
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(ellipse at center, rgba(255, 193, 7, 0.12), transparent 60%),
    var(--bg);
}
.cta-section h2 {
  font-family: var(--display);
  font-size: clamp(3rem, 8vw, 7rem);
  line-height: 0.9;
  text-transform: uppercase;
  margin-bottom: 30px;
  letter-spacing: -0.02em;
}
.cta-section h2 em {
  color: var(--honey);
  font-style: italic;
}
.cta-section p {
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.3rem;
  color: var(--ink-dim);
  max-width: 600px;
  margin: 0 auto 50px;
}
.cta-section .btn { font-size: 0.95rem; padding: 22px 50px; }

.cta-bee {
  position: absolute;
  width: 60px;
  height: 60px;
}
.cta-bee.l { top: 30%; left: 15%; }
.cta-bee.r { bottom: 30%; right: 18%; }

/* =========================================================
   FOOTER
   ========================================================= */
footer {
  background: #000;
  padding: 100px 40px 30px;
  border-top: 1px solid var(--border);
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 60px;
  max-width: 1400px;
  margin: 0 auto 80px;
}
.footer-brand {
  font-family: var(--display);
  font-size: clamp(3rem, 7vw, 6rem);
  line-height: 0.9;
  color: transparent;
  -webkit-text-stroke: 1.5px var(--ink-muted);
  text-transform: uppercase;
}
.footer-brand .hot {
  color: var(--honey);
  -webkit-text-stroke: 0;
}
.footer-col h4 {
  font-family: var(--mono);
  font-size: 0.65rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--honey);
  margin-bottom: 20px;
}
.footer-col a {
  display: block;
  font-size: 0.9rem;
  color: var(--ink-dim);
  padding: 6px 0;
  transition: color 0.3s, transform 0.3s;
  cursor: none;
}
.footer-col a:hover { color: var(--honey); transform: translateX(4px); }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  font-family: var(--mono);
  font-size: 0.7rem;
  color: var(--ink-muted);
  text-transform: uppercase;
  letter-spacing: 0.2em;
  padding-top: 30px;
  border-top: 1px solid var(--border);
  max-width: 1400px;
  margin: 0 auto;
}

/* WhatsApp floating */
.wa-float {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 60px;
  height: 60px;
  background: var(--honey);
  border-radius: 50%;
  z-index: 999;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 30px rgba(255, 193, 7, 0.4), 0 0 0 0 rgba(255, 193, 7, 0.6);
  animation: wa-pulse 2s infinite;
  cursor: none;
}
.wa-float svg { width: 28px; height: 28px; fill: #000; }
@keyframes wa-pulse {
  0% { box-shadow: 0 10px 30px rgba(255, 193, 7, 0.4), 0 0 0 0 rgba(255, 193, 7, 0.6); }
  70% { box-shadow: 0 10px 30px rgba(255, 193, 7, 0.4), 0 0 0 20px rgba(255, 193, 7, 0); }
  100% { box-shadow: 0 10px 30px rgba(255, 193, 7, 0.4), 0 0 0 0 rgba(255, 193, 7, 0); }
}

/* Scramble glitch char */
.scr-glitch {
  color: var(--honey-bright);
  text-shadow: 0 0 8px rgba(255, 215, 0, 0.6);
  font-family: var(--mono);
  font-style: normal;
  display: inline-block;
}

/* Reveal utility */
[data-reveal] { opacity: 0; }

/* =========================================================
   RESPONSIVE
   ========================================================= */
@media (max-width: 1024px) {
  .bento { grid-template-columns: repeat(2, 1fr); }
  .bento-card.span-3, .bento-card.span-2 { grid-column: span 1; }
  .bento-card.row-2 { grid-row: span 1; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .service-card:nth-child(2) { border-right: none; }
  .service-card:nth-child(1), .service-card:nth-child(2) { border-bottom: 1px solid var(--border); }
  .process-grid { grid-template-columns: repeat(2, 1fr); }
  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 40px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
}

@media (max-width: 700px) {
  body { cursor: auto; }
  .cursor, .cursor-ring, .pollen { display: none; }
  a, button, .bento-card, .service-card { cursor: pointer; }
  .nav { padding: 16px 20px; }
  .nav .links { display: none; }
  section { padding: 80px 20px; }
  .bento { grid-template-columns: 1fr; grid-auto-rows: 240px; }
  .services-grid { grid-template-columns: 1fr; }
  .service-card { border-right: none; border-bottom: 1px solid var(--border); }
  .process-grid { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: 1fr; gap: 30px; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; gap: 10px; text-align: center; }
}

/* =========================================================
   FAB WHATSAPP — flotante
   ========================================================= */
.wa-fab {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 9999;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 18px 12px 14px;
  background: #25d366;
  color: #fff;
  border-radius: 999px;
  font-family: "Inter", system-ui, sans-serif;
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: none;
  box-shadow: 0 8px 24px rgba(37, 211, 102, 0.45), 0 2px 6px rgba(0, 0, 0, 0.3);
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
  animation: waPulse 2.4s ease-in-out infinite;
}
.wa-fab svg { width: 28px; height: 28px; flex-shrink: 0; }
.wa-fab:hover {
  transform: translateY(-3px) scale(1.04);
  background: #1fbc5a;
  box-shadow: 0 12px 32px rgba(37, 211, 102, 0.6);
  animation: none;
}
@keyframes waPulse {
  0%, 100% { box-shadow: 0 8px 24px rgba(37, 211, 102, 0.45), 0 0 0 0 rgba(37, 211, 102, 0.5); }
  50%      { box-shadow: 0 8px 24px rgba(37, 211, 102, 0.6),  0 0 0 14px rgba(37, 211, 102, 0); }
}
@media (max-width: 600px) {
  .wa-fab { right: 14px; bottom: 14px; padding: 12px 16px 12px 12px; font-size: 0.9rem; }
  .wa-fab svg { width: 24px; height: 24px; }
}
@media (max-width: 380px) {
  .wa-fab span { display: none; }
  .wa-fab { padding: 12px; border-radius: 50%; }
}
