/* ═══════════════════════════════════════════
   SIXXES MEDIA — styles.css — MARK 2
   © 2026 Sixxes Media — Capricana SA
   Preserved identity. Evolved positioning.
═══════════════════════════════════════════ */

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

/* ── TOKENS ── */
:root {
  --void:       #02030a;
  --deep:       #050816;
  --surface:    #080f22;
  --card:       #0a1228;
  --cyan:       #00e5ff;
  --cyan-dim:   rgba(0, 229, 255, 0.07);
  --cyan-line:  rgba(0, 229, 255, 0.14);
  --cyan-glow:  rgba(0, 229, 255, 0.18);
  --electric:   #00aaff;
  --white:      #e4ecff;
  --muted:      #334060;
  --muted2:     #1e2e50;
  --border:     rgba(0, 229, 255, 0.07);
  --border2:    rgba(0, 229, 255, 0.13);
}

/* ── BASE ── */
html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: 'Outfit', sans-serif;
  background: var(--void);
  color: var(--white);
  overflow-x: hidden;
  line-height: 1.6;
}

a { text-decoration: none; color: inherit; }
img { display: block; max-width: 100%; }

/* ── FOCUS STYLES (accessibility) ── */
:focus-visible {
  outline: 2px solid var(--cyan);
  outline-offset: 3px;
  border-radius: 3px;
}

/* ── REDUCED MOTION ── */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

/* ── COLOR UTILITIES ── */
.cyan     { color: var(--cyan); }
.electric { color: var(--electric); text-shadow: 0 0 32px rgba(0,170,255,0.35); }

/* ── NAV ── */
nav#nav {
  position: sticky;
  top: 0;
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 48px;
  height: 64px;
  background: rgba(2, 3, 10, 0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  transition: border-bottom-color 0.3s;
}

.nav-logo {
  font-family: 'Outfit', sans-serif;
  font-weight: 800;
  font-size: 19px;
  letter-spacing: 0.06em;
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--white);
}

.nav-logo-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--cyan);
  box-shadow: 0 0 10px var(--cyan), 0 0 20px rgba(0,229,255,0.4);
  animation: pulse-dot 2.5s ease-in-out infinite;
  flex-shrink: 0;
}

@keyframes pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%       { opacity: 0.4; transform: scale(0.65); }
}

.nav-center {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 32px;
  font-size: 13px;
  color: var(--muted);
  letter-spacing: 0.05em;
}

.nav-center a { transition: color 0.2s; }
.nav-center a:hover { color: var(--white); }

.nav-right {
  display: flex;
  align-items: center;
  gap: 8px;
}

.lang-btn {
  background: transparent;
  border: 1px solid var(--border2);
  color: var(--muted);
  border-radius: 6px;
  padding: 5px 12px;
  font-size: 11px;
  font-weight: 500;
  cursor: pointer;
  font-family: 'Outfit', sans-serif;
  letter-spacing: 0.06em;
  transition: border-color 0.2s, color 0.2s;
}

.lang-btn.active,
.lang-btn:hover {
  border-color: var(--cyan);
  color: var(--cyan);
}

.nav-cta {
  background: transparent;
  color: var(--cyan);
  border: 1px solid var(--cyan-line);
  border-radius: 6px;
  padding: 8px 20px;
  font-size: 12px;
  font-weight: 500;
  font-family: 'Outfit', sans-serif;
  letter-spacing: 0.05em;
  transition: background 0.2s, border-color 0.2s;
  display: inline-block;
}

.nav-cta:hover {
  background: var(--cyan-dim);
  border-color: var(--cyan);
}

/* ── BUTTONS ── */
.btn-primary {
  display: inline-block;
  padding: 13px 28px;
  border-radius: 8px;
  background: var(--cyan);
  color: var(--void);
  font-size: 14px;
  font-weight: 600;
  font-family: 'Outfit', sans-serif;
  letter-spacing: 0.02em;
  border: 0;
  cursor: pointer;
  transition: background 0.2s;
}

.btn-primary:hover { background: #33ecff; }

.btn-ghost {
  display: inline-block;
  padding: 12px 28px;
  border-radius: 8px;
  border: 1px solid var(--border2);
  color: rgba(228, 236, 255, 0.5);
  font-size: 14px;
  font-family: 'Outfit', sans-serif;
  transition: border-color 0.2s, color 0.2s;
}

.btn-ghost:hover {
  border-color: var(--cyan);
  color: var(--white);
}

/* ── HERO ── */
.hero {
  min-height: calc(100vh - 64px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 0 48px;
  position: relative;
  overflow: hidden;
  background: var(--void);
}

.hero-orbs { position: absolute; inset: 0; pointer-events: none; overflow: hidden; }

.orb { position: absolute; border-radius: 50%; filter: blur(80px); }
.orb-1 { width: 600px; height: 600px; background: rgba(0,60,180,0.18); top: -200px; right: -100px; }
.orb-2 { width: 400px; height: 400px; background: rgba(0,229,255,0.05); bottom: -100px; left: 200px; }
.orb-3 { width: 300px; height: 300px; background: rgba(0,30,120,0.22); top: 30%; left: -80px; }

.hero-grid-lines {
  position: absolute;
  inset: 0;
  background:
    repeating-linear-gradient(90deg, transparent, transparent 120px, rgba(0,229,255,0.022) 120px, rgba(0,229,255,0.022) 121px),
    repeating-linear-gradient(0deg,  transparent, transparent 120px, rgba(0,229,255,0.014) 120px, rgba(0,229,255,0.014) 121px);
  pointer-events: none;
}

/* Cube mark */
.hero-mark {
  position: absolute;
  right: -6%;
  top: 50%;
  transform: translateY(-50%);
  width: min(680px, 65vw);
  height: min(680px, 65vw);
  z-index: 1;
  pointer-events: none;
  opacity: 0.55;
}

.hero-mark-svg {
  width: 100%;
  height: 100%;
  animation: mark-breathe 6s ease-in-out infinite;
}

@keyframes mark-breathe {
  0%, 100% { opacity: 0.55; transform: scale(1); }
  50%       { opacity: 0.70; transform: scale(1.015); }
}

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

.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--cyan);
  margin-bottom: 28px;
  font-weight: 500;
}

.hero-tag-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--cyan);
  animation: pulse-dot 2s ease-in-out infinite;
  flex-shrink: 0;
}

.hero h1 {
  font-family: 'Outfit', sans-serif;
  font-weight: 800;
  font-size: clamp(48px, 7vw, 108px);
  line-height: 0.88;
  letter-spacing: -0.025em;
}

.hero h1 .line { display: block; }
.hero h1 .dim  { color: rgba(228, 236, 255, 0.16); }

.hero-bottom {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-top: 48px;
  gap: 32px;
  flex-wrap: wrap;
}

.hero-sub {
  font-size: clamp(14px, 1.5vw, 17px);
  color: rgba(228, 236, 255, 0.42);
  max-width: 440px;
  line-height: 1.7;
  font-weight: 300;
}

.hero-actions {
  display: flex;
  gap: 12px;
  align-items: center;
  flex-shrink: 0;
}

.hero-scroll-line {
  width: 1px;
  height: 48px;
  background: linear-gradient(to bottom, var(--cyan), transparent);
  margin-top: 48px;
  opacity: 0.35;
}

/* ── MARQUEE ── */
.marquee-wrap {
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: var(--deep);
  overflow: hidden;
  height: 44px;
  display: flex;
  align-items: center;
}

.marquee-track {
  display: inline-flex;
  align-items: center;
  white-space: nowrap;
  flex-shrink: 0;
  will-change: transform;
  animation: ticker 36s linear infinite;
}

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

.mi {
  font-family: 'Outfit', sans-serif;
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted2);
  padding: 0 32px;
  border-right: 1px solid rgba(0,229,255,0.05);
  flex-shrink: 0;
  cursor: default;
  transition: color 0.2s;
  font-weight: 500;
  line-height: 1;
}

.mi:hover { color: var(--cyan); }
.mi.ac    { color: rgba(0,229,255,0.28); }

@keyframes ticker {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ── SHARED SECTION TOKENS ── */
.section-label {
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--cyan);
  font-weight: 500;
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.section-label::before {
  content: '';
  width: 16px;
  height: 1px;
  background: var(--cyan);
  flex-shrink: 0;
}

.section-title {
  font-family: 'Outfit', sans-serif;
  font-weight: 800;
  font-size: clamp(32px, 3.5vw, 48px);
  letter-spacing: -0.02em;
  line-height: 0.95;
}

/* ── SERVICES / DIVISIONS ── */
#servicios {
  padding: 80px 48px;
  background: var(--void);
}

.bento-header { margin-bottom: 40px; }

.divisions-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-bottom: 12px;
}

/* ── BENTO CARD BASE ── */
.bc {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 32px;
  position: relative;
  overflow: hidden;
}

.bc::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 20px;
  background: radial-gradient(circle at 0% 0%, rgba(0,229,255,0.035), transparent 60%);
  pointer-events: none;
}

.bc:hover { border-color: var(--border2); }

/* Division cards */
.bc-division {
  min-height: 400px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.bc-top { flex: 1; }

.bc-division-num {
  font-family: 'Outfit', sans-serif;
  font-weight: 800;
  font-size: 90px;
  color: rgba(0,170,255,0.04);
  line-height: 1;
  position: absolute;
  right: 20px;
  top: 12px;
  letter-spacing: -0.05em;
  pointer-events: none;
  user-select: none;
}

.bc-tag {
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--cyan);
  font-weight: 500;
  margin-bottom: 18px;
  font-family: 'Outfit', sans-serif;
}

.bc-title {
  font-family: 'Outfit', sans-serif;
  font-weight: 800;
  font-size: clamp(26px, 2.5vw, 36px);
  letter-spacing: -0.025em;
  line-height: 0.95;
  margin-bottom: 14px;
}

.bc-body {
  font-size: 14px;
  color: rgba(228, 236, 255, 0.36);
  line-height: 1.72;
  font-weight: 300;
  max-width: 380px;
  margin-bottom: 22px;
}

.bc-services {
  display: flex;
  flex-direction: column;
  margin-bottom: 24px;
}

.bc-svc {
  padding: 11px 0;
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 13px;
  color: rgba(228, 236, 255, 0.4);
  transition: color 0.2s;
  cursor: default;
}

.bc-svc:first-child { border-top: 1px solid var(--border); }
.bc-svc:hover { color: var(--white); }

.bc-svc-arr {
  font-size: 13px;
  color: rgba(0,229,255,0.18);
  transition: transform 0.2s, color 0.2s;
  flex-shrink: 0;
}

.bc-svc:hover .bc-svc-arr { transform: translateX(4px); color: var(--cyan); }

.bc-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  font-weight: 600;
  color: var(--cyan);
  letter-spacing: 0.10em;
  text-transform: uppercase;
  background: transparent;
  border: 0;
  border-bottom: 1px solid rgba(0,229,255,0.18);
  padding-bottom: 4px;
  cursor: pointer;
  font-family: 'Outfit', sans-serif;
  transition: gap 0.2s, border-color 0.2s;
  align-self: flex-start;
  text-decoration: none;
}

.bc-cta:hover { gap: 14px; border-color: var(--cyan); }

/* Statement card */
.bc-statement {
  background: linear-gradient(135deg, rgba(0,102,255,0.10), rgba(0,229,255,0.05));
  border-color: rgba(0,229,255,0.10);
  min-height: 100px;
  display: flex;
  align-items: center;
  border-radius: 20px;
}

.bc-statement-text {
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  font-size: clamp(18px, 2vw, 26px);
  letter-spacing: -0.02em;
  line-height: 1.2;
  color: rgba(228, 236, 255, 0.5);
  font-style: italic;
}

/* ── BRAND INTELLIGENCE SECTION ── */
.bi-section {
  background: var(--deep);
  padding: 88px 48px;
  position: relative;
  overflow: hidden;
}

.bi-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 80% at 70% 50%, rgba(0,229,255,0.04), transparent 70%);
  pointer-events: none;
}

.bi-inner {
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 64px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.bi-title {
  font-family: 'Outfit', sans-serif;
  font-weight: 800;
  font-size: clamp(38px, 5vw, 68px);
  letter-spacing: -0.03em;
  line-height: 0.88;
  margin: 14px 0 24px;
}

.bi-lead {
  font-size: clamp(15px, 1.6vw, 17px);
  color: rgba(228, 236, 255, 0.5);
  line-height: 1.7;
  font-weight: 300;
  max-width: 560px;
  margin-bottom: 32px;
}

.bi-outcomes {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 36px;
}

.bi-outcome {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 14px;
  color: rgba(228, 236, 255, 0.65);
  font-weight: 400;
}

.bi-check {
  color: var(--cyan);
  font-size: 12px;
  flex-shrink: 0;
  font-weight: 700;
}

.bi-actions { display: flex; flex-direction: column; gap: 14px; }

.bi-note {
  font-size: 12px;
  color: rgba(228, 236, 255, 0.3);
  line-height: 1.6;
  font-weight: 300;
  max-width: 420px;
}

.bi-visual {
  display: flex;
  align-items: center;
  justify-content: center;
}

.bi-cube {
  width: 280px;
  height: 280px;
  background: radial-gradient(circle at 50% 50%, rgba(0,40,140,0.3), transparent 70%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.bi-cube svg {
  width: 200px;
  height: 200px;
  animation: mark-breathe 5s ease-in-out infinite;
}

/* ── ABOUT / PROCESS ── */
.section-dark {
  padding: 80px 48px;
  background: var(--deep);
}

.about-header { margin-bottom: 40px; }

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

/* Stat cards */
.bc-stat {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 160px;
}

.bc-stat-num {
  font-family: 'Outfit', sans-serif;
  font-weight: 800;
  font-size: clamp(52px, 5vw, 72px);
  color: var(--cyan);
  letter-spacing: -0.03em;
  line-height: 1;
}

.bc-stat-num.latam {
  font-size: clamp(32px, 3.5vw, 48px);
  line-height: 1.1;
}

.bc-stat-label {
  font-size: 13px;
  color: rgba(228, 236, 255, 0.32);
  font-weight: 300;
  line-height: 1.5;
}

.bc-stat-label strong {
  display: block;
  font-size: 14px;
  color: rgba(228, 236, 255, 0.68);
  font-weight: 500;
  margin-bottom: 3px;
}

/* Pills */
.bc-pills {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.about-pills-full {
  grid-column: span 3;
  padding: 24px 28px;
}

.pill-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 14px;
}

.pill {
  padding: 7px 14px;
  border-radius: 999px;
  border: 1px solid var(--border2);
  font-size: 12px;
  color: rgba(228, 236, 255, 0.4);
  cursor: default;
  transition: border-color 0.2s, color 0.2s;
  font-weight: 400;
}

.pill:hover { border-color: var(--cyan); color: var(--white); }

/* Process header */
.about-process-header {
  grid-column: span 3;
  padding: 32px 0 8px;
}

/* Process cards */
.bc-process { min-height: 200px; }

.proc-num {
  font-family: 'Outfit', sans-serif;
  font-weight: 800;
  font-size: 13px;
  color: var(--cyan);
  letter-spacing: 0.12em;
  margin-bottom: 14px;
}

.proc-title {
  font-family: 'Outfit', sans-serif;
  font-weight: 800;
  font-size: 22px;
  letter-spacing: -0.02em;
  margin-bottom: 10px;
  color: var(--white);
}

.proc-body {
  font-size: 13px;
  color: rgba(228, 236, 255, 0.32);
  line-height: 1.65;
  font-weight: 300;
}

/* ── REEL ── */
#reel {
  position: relative;
  width: 100%;
  background: #000;
  overflow: hidden;
}

.reel-inner {
  position: relative;
  width: 100%;
  padding-top: 56.25%;
  min-height: 420px;
  max-height: 90vh;
  overflow: hidden;
}

.reel-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.5;
}

.reel-placeholder {
  position: absolute;
  inset: 0;
  background: #0a0c18;
}

.reel-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.52);
  z-index: 2;
}

.reel-content {
  position: absolute;
  inset: 0;
  z-index: 3;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 48px 52px;
}

.reel-headline {
  font-family: 'Outfit', sans-serif;
  font-weight: 800;
  font-size: clamp(36px, 7vw, 96px);
  letter-spacing: -0.025em;
  line-height: 0.92;
  color: #fff;
  max-width: 900px;
  margin: 0;
  text-transform: uppercase;
}

.reel-play {
  position: absolute;
  top: 32px;
  right: 40px;
  z-index: 4;
  width: 64px;
  height: 64px;
  border-radius: 50%;
  border: 1.5px solid rgba(255,255,255,0.35);
  background: rgba(255,255,255,0.08);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.25s, border-color 0.25s;
}

.reel-play:hover {
  background: rgba(0,229,255,0.15);
  border-color: var(--cyan);
}

.reel-sound {
  position: absolute;
  bottom: 28px;
  right: 40px;
  z-index: 4;
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.38);
  cursor: pointer;
  transition: color 0.2s;
  font-family: 'Outfit', sans-serif;
  font-weight: 600;
  border: 0;
  background: transparent;
  padding: 0;
}

.reel-sound:hover { color: rgba(255,255,255,0.85); }

.reel-sound-dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--cyan);
  opacity: 0.55;
  transition: opacity 0.2s;
}

.reel-sound:hover .reel-sound-dot { opacity: 1; }

/* ── CONTACT ── */
#contacto {
  padding: 80px 48px;
  background: var(--void);
}

.contact-wrap {
  border: 1px solid var(--border);
  border-radius: 24px;
  background: linear-gradient(135deg, var(--card), var(--surface));
  display: grid;
  grid-template-columns: 1fr 1fr;
  overflow: hidden;
}

.cl {
  padding: 64px 52px;
  position: relative;
  overflow: hidden;
  border-right: 1px solid var(--border);
}

.cl-orb {
  position: absolute;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0,229,255,0.05), transparent 70%);
  top: -100px;
  right: -100px;
  pointer-events: none;
}

.cl-inner { position: relative; z-index: 1; }

.ch {
  font-family: 'Outfit', sans-serif;
  font-weight: 800;
  font-size: clamp(42px, 4vw, 60px);
  letter-spacing: -0.03em;
  line-height: 0.88;
  margin-bottom: 16px;
  margin-top: 12px;
}

.cp {
  font-size: 14px;
  color: rgba(228, 236, 255, 0.38);
  line-height: 1.7;
  font-weight: 300;
  margin-bottom: 32px;
  max-width: 400px;
}

/* Contact links (email + WhatsApp) */
.contact-links {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 28px;
}

.contact-link-item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px 20px;
  border: 1px solid var(--border2);
  border-radius: 12px;
  background: rgba(0,229,255,0.03);
  transition: border-color 0.2s, background 0.2s;
  text-decoration: none;
  color: inherit;
}

.contact-link-item:hover {
  border-color: var(--cyan);
  background: rgba(0,229,255,0.06);
}

.contact-link-icon {
  font-size: 18px;
  color: var(--cyan);
  flex-shrink: 0;
  width: 24px;
  text-align: center;
}

.contact-link-text {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.contact-link-label {
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 500;
}

.contact-link-value {
  font-size: 14px;
  color: var(--white);
  font-weight: 500;
}

.contact-bi-cta {
  display: block;
  text-align: center;
  width: 100%;
}

.cr {
  padding: 64px 52px;
  display: flex;
  flex-direction: column;
}

.cd {
  padding: 20px 0;
  border-bottom: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.cd:last-child { border-bottom: 0; }

.cdl {
  font-size: 10px;
  letter-spacing: 0.20em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 500;
}

.cdv { font-size: 14px; color: var(--white); }

/* ── FOOTER ── */
footer {
  border-top: 1px solid var(--border);
  padding: 28px 48px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 16px;
  background: var(--void);
  font-size: 11px;
  color: var(--muted);
  letter-spacing: 0.04em;
}

.footer-left { display: flex; flex-direction: column; gap: 4px; }

.footer-brand {
  font-family: 'Outfit', sans-serif;
  font-weight: 800;
  font-size: 15px;
  letter-spacing: 0.1em;
  color: var(--white);
}

.footer-copy { font-size: 11px; color: var(--muted); }

.footer-center {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  color: var(--muted);
  white-space: nowrap;
}

.footer-dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--cyan);
  opacity: 0.45;
  flex-shrink: 0;
}

.footer-socials {
  display: flex;
  align-items: center;
  gap: 16px;
  justify-content: flex-end;
}

.social-link {
  color: var(--muted);
  display: flex;
  align-items: center;
  transition: color 0.2s;
}

.social-link:hover { color: var(--cyan); }

/* ── HAMBURGER ── */
.nav-hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 36px;
  height: 36px;
  background: transparent;
  border: 1px solid var(--border2);
  border-radius: 6px;
  cursor: pointer;
  padding: 8px;
  margin-left: 4px;
}

.nav-hamburger span {
  display: block;
  width: 100%;
  height: 1.5px;
  background: var(--white);
  transition: transform 0.25s ease, opacity 0.25s ease;
  transform-origin: center;
}

.nav-hamburger.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; }
.nav-hamburger.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* ── MOBILE MENU ── */
.mobile-menu {
  display: none;
  position: fixed;
  inset: 64px 0 0 0;
  background: rgba(2,3,10,0.98);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  z-index: 190;
  border-top: 1px solid var(--border);
  opacity: 0;
  transition: opacity 0.25s ease;
  pointer-events: none;
}

.mobile-menu.open {
  opacity: 1;
  pointer-events: auto;
}

.mobile-menu-inner {
  padding: 36px 24px;
  display: flex;
  flex-direction: column;
  gap: 32px;
  height: 100%;
  overflow-y: auto;
}

.mobile-lang { display: flex; gap: 8px; }

.mobile-links {
  display: flex;
  flex-direction: column;
  flex: 1;
}

.mobile-links a {
  font-family: 'Outfit', sans-serif;
  font-weight: 800;
  font-size: clamp(28px, 8vw, 44px);
  letter-spacing: -0.02em;
  color: rgba(228,236,255,0.4);
  padding: 12px 0;
  border-bottom: 1px solid var(--border);
  transition: color 0.2s;
  line-height: 1;
  text-decoration: none;
}

.mobile-links a:first-child { border-top: 1px solid var(--border); }
.mobile-links a:hover { color: var(--white); }

.mobile-cta { display: block; text-align: center; margin-bottom: 40px; }

/* ═══════════════════════════════════════════
   RESPONSIVE
═══════════════════════════════════════════ */

/* 1200px */
@media (max-width: 1200px) {
  nav#nav  { padding: 0 36px; }
  .hero    { padding: 0 36px; }
  #servicios, .bi-section, .section-dark, #contacto { padding-left: 36px; padding-right: 36px; }
  footer   { padding: 20px 36px; }
}

/* 1024px */
@media (max-width: 1024px) {
  .bi-inner { grid-template-columns: 1fr; gap: 40px; }
  .bi-visual { display: none; }
  .about-grid { grid-template-columns: repeat(2, 1fr); }
  .about-pills-full,
  .about-process-header { grid-column: span 2; }
  .about-grid .bc-process { grid-column: span 1; }
}

/* 768px */
@media (max-width: 768px) {
  nav#nav { padding: 0 20px; height: 56px; }
  .nav-center { display: none; }
  .nav-right .lang-btn { display: none; }
  .nav-hamburger { display: flex; }
  .mobile-menu { display: block; inset: 56px 0 0 0; }

  .hero { padding: 40px 20px 48px; min-height: calc(100vh - 56px); }
  .hero h1 { font-size: clamp(42px, 11vw, 72px); }
  .hero-bottom { flex-direction: column; align-items: flex-start; gap: 24px; margin-top: 32px; }
  .hero-sub { max-width: 100%; font-size: 15px; }
  .hero-actions { flex-direction: column; align-items: stretch; width: 100%; gap: 10px; }
  .btn-primary, .btn-ghost { width: 100%; text-align: center; padding: 14px 20px; }
  .hero-scroll-line { display: none; }
  .hero-mark { width: 90vw; right: -20%; top: auto; bottom: -10%; transform: none; opacity: 0.2; }

  #servicios { padding: 56px 20px 0; }
  .bi-section { padding: 64px 20px; }
  .section-dark { padding: 64px 20px; }
  #contacto { padding: 56px 20px; }

  .divisions-row { grid-template-columns: 1fr; }
  .bc-division { min-height: auto; }
  .bc { padding: 24px 20px; border-radius: 16px; }
  .bc-title { font-size: 28px; }

  .about-grid { grid-template-columns: 1fr; }
  .about-pills-full, .about-process-header { grid-column: span 1; }
  .bc-stat { min-height: 130px; }
  .bc-stat-num { font-size: 52px; }

  .reel-inner { min-height: 280px; }
  .reel-content { padding: 24px 20px; }
  .reel-headline { font-size: clamp(24px, 9vw, 44px); }
  .reel-play { top: 16px; right: 16px; width: 52px; height: 52px; }
  .reel-sound { bottom: 16px; right: 16px; }

  .contact-wrap { grid-template-columns: 1fr; border-radius: 16px; }
  .cl { border-right: 0; border-bottom: 1px solid var(--border); padding: 36px 24px; }
  .cr { padding: 36px 24px; }
  .ch { font-size: clamp(36px, 10vw, 52px); }

  footer { grid-template-columns: 1fr; gap: 20px; padding: 24px 20px; }
  .footer-socials { justify-content: flex-start; }
}

/* 480px */
@media (max-width: 480px) {
  .hero h1 { font-size: clamp(36px, 12vw, 56px); }
  .hero-tag { font-size: 10px; letter-spacing: 0.10em; }
  .section-title { font-size: clamp(26px, 9vw, 36px); }
  .bc-title { font-size: 24px; }
  .reel-headline { font-size: clamp(22px, 10vw, 38px); }
  .bi-title { font-size: clamp(32px, 9vw, 52px); }
}

/* 360px */
@media (max-width: 360px) {
  .hero h1 { font-size: 32px; }
  .section-title { font-size: 24px; }
  .nav-cta { padding: 7px 14px; font-size: 11px; }
  .bc { padding: 20px 16px; }
}

/* ═══════════════════════════════════════════
   MARK 2 — VISUAL FIDELITY PASS
   Restores the tighter/brighter look of the
   previous Sixxes Media design while keeping
   the new Mark 2 structure and functionality.
═══════════════════════════════════════════ */

/* Slightly brighter legacy contrast */
:root {
  --white:      #e7edf9;
  --muted:      #697793;
  --muted2:     #3b4965;
  --card:       #0b1326;
  --border:     rgba(0, 229, 255, 0.08);
  --border2:    rgba(0, 229, 255, 0.15);
}

/* Navigation: restore the compact, crisp legacy proportions */
nav#nav {
  height: 58px;
  padding: 0 20px;
  background: rgba(2, 3, 10, 0.97);
}

.nav-logo {
  font-size: 19px;
  gap: 8px;
}

.nav-logo-dot {
  width: 6px;
  height: 6px;
}

.nav-center {
  gap: 30px;
  font-size: 13px;
  color: rgba(228, 236, 255, 0.66);
}

.nav-center a:hover {
  color: var(--white);
}

.lang-btn {
  color: rgba(228, 236, 255, 0.46);
  padding: 5px 12px;
}

.nav-cta {
  padding: 8px 20px;
}

/* Cards: restore the flatter, denser original feel */
.bc {
  background: #0b1326;
  border-color: rgba(0, 229, 255, 0.075);
}

.bc::before {
  background: radial-gradient(circle at 0% 0%, rgba(0,229,255,0.025), transparent 60%);
}

.bc-body {
  color: rgba(228, 236, 255, 0.50);
}

.bc-svc {
  color: rgba(228, 236, 255, 0.52);
}

.bc-svc-arr {
  color: rgba(0,229,255,0.28);
}

/* Make the service section feel closer to the previous site's rhythm */
#servicios {
  padding-top: 72px;
  padding-bottom: 72px;
}

.divisions-row {
  gap: 12px;
  margin-bottom: 12px;
}

.bc-division {
  min-height: 380px;
}

.bc-tag {
  margin-bottom: 16px;
}

.bc-services {
  margin-bottom: 22px;
}

.bc-svc {
  padding: 10px 0;
}

/* Statement card: match the stronger old treatment */
.bc-statement {
  min-height: 100px;
  background: linear-gradient(
    110deg,
    rgba(0, 74, 145, 0.16),
    rgba(0, 229, 255, 0.035)
  );
  border-color: rgba(0, 229, 255, 0.11);
  padding: 30px 32px;
}

.bc-statement-text {
  font-style: normal;
  font-weight: 800;
  font-size: clamp(20px, 2vw, 28px);
  line-height: 1.15;
  color: rgba(228, 236, 255, 0.64);
}

/* Restore stronger text contrast throughout the supporting UI */
.section-title,
.bc-title,
.proc-title,
.contact-link-value,
.cdv {
  color: rgba(231, 237, 249, 0.94);
}

.bc-stat-label strong {
  color: rgba(228, 236, 255, 0.75);
}

/* Keep responsive behavior consistent with the new Mark 2 implementation */
@media (max-width: 1200px) {
  nav#nav { padding: 0 16px; }
}

@media (max-width: 768px) {
  nav#nav {
    height: 56px;
    padding: 0 20px;
  }

  .bc-division {
    min-height: auto;
  }

  .bc-statement {
    padding: 24px 20px;
  }
}


/* =========================================================
   FINAL CTA POLISH — BRAND INTELLIGENCE ASSESSMENT
   Keep this CTA compact and premium on desktop and mobile.
   ========================================================= */

#brand-intelligence .contact-bi-cta,
#brand-intelligence a.contact-bi-cta,
#brand-intelligence .btn-primary.contact-bi-cta {
  display: inline-flex;
  flex: 0 0 auto;
  width: fit-content;
  min-width: 0;
  max-width: 100%;
  padding: 13px 22px;
  align-items: center;
  justify-content: center;
  align-self: flex-start;
  white-space: nowrap;
}

#brand-intelligence .contact-bi-cta:hover,
#brand-intelligence a.contact-bi-cta:hover,
#brand-intelligence .btn-primary.contact-bi-cta:hover {
  transform: translateY(-2px);
}

@media (max-width: 768px) {
  #brand-intelligence .contact-bi-cta,
  #brand-intelligence a.contact-bi-cta,
  #brand-intelligence .btn-primary.contact-bi-cta {
    display: inline-flex;
    flex: 0 0 auto;
    width: fit-content;
    min-width: 0;
    max-width: 100%;
    padding: 12px 18px;
    align-self: flex-start;
    white-space: normal;
  }
}


/* =========================================================
   FINAL BRAND INTELLIGENCE CTA — CORRECT SECTION TARGET
   ========================================================= */
#inteligencia .contact-bi-cta,
#inteligencia a.contact-bi-cta,
#inteligencia .btn-primary.contact-bi-cta {
  display: inline-flex !important;
  flex: 0 0 auto !important;
  width: auto !important;
  min-width: 0 !important;
  max-width: max-content !important;
  padding: 13px 24px !important;
  align-items: center;
  justify-content: center;
  align-self: flex-start !important;
  text-align: center;
  white-space: nowrap;
}

#inteligencia .contact-bi-cta:hover,
#inteligencia a.contact-bi-cta:hover,
#inteligencia .btn-primary.contact-bi-cta:hover {
  transform: translateY(-2px);
}

@media (max-width: 768px) {
  #inteligencia .contact-bi-cta,
  #inteligencia a.contact-bi-cta,
  #inteligencia .btn-primary.contact-bi-cta {
    display: inline-flex !important;
    flex: 0 0 auto !important;
    width: auto !important;
    min-width: 0 !important;
    max-width: calc(100vw - 40px) !important;
    padding: 12px 20px !important;
    align-self: flex-start !important;
    white-space: normal;
  }
}


/* =========================================================
   ACTUAL FINAL FIX — BRAND INTELLIGENCE CTA
   Exact markup target: .bi-actions > .btn-primary
   ========================================================= */
#inteligencia .bi-actions {
  align-items: flex-start;
}

#inteligencia .bi-actions > .btn-primary {
  display: inline-flex !important;
  flex: 0 0 auto !important;
  width: auto !important;
  min-width: 0 !important;
  max-width: max-content !important;
  padding: 13px 22px !important;
  align-items: center;
  justify-content: center;
  align-self: flex-start !important;
  white-space: nowrap;
}

@media (max-width: 768px) {
  #inteligencia .bi-actions > .btn-primary {
    width: auto !important;
    max-width: calc(100vw - 40px) !important;
    padding: 12px 18px !important;
    white-space: normal;
  }
}
