/* ============================================
   Yeo Mids — Proposta Attenlab & Marinès
   Identidade: preto profundo + dourado/amarelo
   ============================================ */

/* --- TOKENS --- */
:root {
  /* Backgrounds */
  --bg: #0a0a0a;
  --bg-soft: #111111;
  --bg-elev: #161616;
  --bg-card: rgba(255, 255, 255, 0.04);
  --bg-card-hover: rgba(255, 255, 255, 0.06);
  --bg-light: #ededed;
  --bg-light-soft: #f5f5f5;

  /* Brand / Gold */
  --gold: #f3c623;
  --gold-soft: #ffd84a;
  --gold-deep: #c69b14;
  --gold-glow: rgba(243, 198, 35, 0.18);

  /* Text */
  --text: #ffffff;
  --text-soft: #d8d3c6;
  --text-muted: #8a8478;
  --text-dark: #0d0d0d;
  --text-dark-soft: #2a2823;
  --text-dark-muted: #6a655c;

  /* Accent extras */
  --line-dark: rgba(255, 255, 255, 0.08);
  --line-light: rgba(13, 13, 13, 0.08);

  /* Other */
  --shadow-card: 0 10px 40px rgba(0, 0, 0, 0.35);
  --shadow-glow: 0 0 28px rgba(243, 198, 35, 0.18);
  --shadow-light: 0 12px 36px rgba(13, 13, 13, 0.08);

  --radius-pill: 999px;
  --radius: 18px;
  --radius-sm: 12px;

  --transition: 0.28s cubic-bezier(0.4, 0, 0.2, 1);
  --font-body: "Inter", system-ui, sans-serif;
  --font-heading: "Playfair Display", serif;
}

/* --- RESET --- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--text);
  background: var(--bg);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img { max-width: 100%; display: block; height: auto; }
a { color: inherit; text-decoration: none; transition: color var(--transition); }
ul { list-style: none; padding: 0; margin: 0; }
p { margin: 0; }

h1, h2, h3, h4 {
  font-family: var(--font-heading);
  font-weight: 600;
  margin: 0;
  line-height: 1.15;
  letter-spacing: -0.01em;
}

h1 { font-size: clamp(2.6rem, 7vw, 5.5rem); }
h2 { font-size: clamp(2rem, 4.2vw, 3.4rem); }
h3 { font-size: 1.05rem; font-family: var(--font-body); font-weight: 600; }

/* --- UTILITIES --- */
.container {
  width: min(1180px, 92%);
  margin: 0 auto;
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  background: var(--gold);
  color: var(--text-dark);
  padding: 0.8rem 1.2rem;
  border-radius: var(--radius-pill);
  z-index: 100;
  font-weight: 700;
}
.skip-link:focus { left: 1rem; top: 1rem; }

.section {
  position: relative;
  padding: clamp(3.5rem, 7vw, 6rem) 0;
  overflow: hidden;
}

.section--dark {
  background: var(--bg);
  color: var(--text);
  background-image:
    radial-gradient(ellipse at top left, rgba(243, 198, 35, 0.12), transparent 55%),
    radial-gradient(ellipse at bottom right, rgba(243, 198, 35, 0.06), transparent 60%),
    repeating-linear-gradient(45deg, rgba(255,255,255,0.012) 0 1px, transparent 1px 60px),
    repeating-linear-gradient(-45deg, rgba(255,255,255,0.012) 0 1px, transparent 1px 60px);
}

.section--light {
  background: var(--bg-light);
  color: var(--text-dark);
}
.section--light h2,
.section--light h3 { color: var(--text-dark); }

.section-header { margin-bottom: 2.5rem; }
.section-header.centered { text-align: center; max-width: 720px; margin-left: auto; margin-right: auto; }
.section-header.with-avatar { display: flex; align-items: center; gap: 1.2rem; margin-bottom: 2.4rem; flex-wrap: wrap; }
.section-header.with-avatar h2 { margin: 0; }

.hl { color: var(--gold); font-style: italic; }
em { color: var(--gold); font-style: italic; }
.section--light em { color: var(--gold-deep); }

.section-topbar {
  display: flex;
  justify-content: flex-end;
  margin-bottom: 1.2rem;
}
.page-num {
  font-family: var(--font-body);
  font-size: 0.78rem;
  color: var(--text-dark-muted);
  letter-spacing: 0.04em;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}
.page-num.light { color: var(--text-muted); }
.page-num i { color: var(--gold); font-size: 1.05rem; }

/* --- HEADER (top nav) --- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(10, 10, 10, 0.78);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--line-dark);
}

.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.9rem 0;
}

.brand-logo {
  display: inline-flex;
  align-items: center;
  transition: transform var(--transition), filter var(--transition);
}
.brand-logo:hover {
  transform: translateY(-1px);
  filter: drop-shadow(0 0 14px rgba(243, 198, 35, 0.45));
}
.brand-logo__img {
  height: 38px;
  width: auto;
  display: block;
  object-fit: contain;
}

.nav {
  display: none;
  gap: 1.4rem;
  font-size: 0.88rem;
  color: var(--text-soft);
  font-weight: 500;
}
.nav a { position: relative; padding: 0.3rem 0; }
.nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 2px;
  background: var(--gold);
  transition: width 0.3s ease;
}
.nav a:hover { color: var(--gold); }
.nav a:hover::after { width: 100%; }

.hamburger {
  display: flex;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
  z-index: 60;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--gold);
  border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.3s ease;
}
.hamburger.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.nav.mobile-open {
  display: flex;
  flex-direction: column;
  position: fixed;
  inset: 0;
  background: rgba(10, 10, 10, 0.97);
  backdrop-filter: blur(16px);
  z-index: 55;
  align-items: center;
  justify-content: center;
  gap: 1.6rem;
  font-size: 1.2rem;
}

/* --- BUTTONS --- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  border-radius: var(--radius-pill);
  border: none;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.95rem;
  padding: 0.85rem 1.6rem;
  cursor: pointer;
  transition: transform var(--transition), box-shadow var(--transition), background var(--transition);
  text-align: center;
  line-height: 1.3;
}
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }

.btn-primary {
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-deep) 100%);
  color: var(--text-dark);
  box-shadow: 0 8px 28px rgba(243, 198, 35, 0.28);
}
.btn-primary:hover {
  box-shadow: 0 12px 40px rgba(243, 198, 35, 0.45);
}

.btn-lg { padding: 1rem 2.2rem; font-size: 1rem; }

.btn-final { margin-top: 1.4rem; }

/* ============================================
   HERO
   ============================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 4rem 0 3rem;
  overflow: hidden;
  background: var(--bg);
  background-image:
    radial-gradient(ellipse 60% 80% at 0% 30%, rgba(243, 198, 35, 0.18) 0%, transparent 70%),
    radial-gradient(ellipse 50% 60% at 100% 70%, rgba(243, 198, 35, 0.08) 0%, transparent 70%);
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-image:
    repeating-radial-gradient(circle at 20% 50%, transparent 0, transparent 60px, rgba(255, 255, 255, 0.03) 60px, rgba(255, 255, 255, 0.03) 61px),
    repeating-radial-gradient(circle at 80% 30%, transparent 0, transparent 80px, rgba(255, 255, 255, 0.022) 80px, rgba(255, 255, 255, 0.022) 81px),
    repeating-radial-gradient(circle at 60% 80%, transparent 0, transparent 100px, rgba(255, 255, 255, 0.018) 100px, rgba(255, 255, 255, 0.018) 101px);
  opacity: 0.9;
}

.hero-inner {
  position: relative;
  z-index: 1;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.4rem;
}

.page-tag {
  text-transform: uppercase;
  letter-spacing: 0.32rem;
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--gold);
  padding: 0.45rem 1.1rem;
  border: 1px solid rgba(243, 198, 35, 0.3);
  border-radius: var(--radius-pill);
  background: rgba(243, 198, 35, 0.05);
}

.hero h1 {
  color: var(--text);
  font-weight: 500;
  letter-spacing: -0.02em;
}
.hero h1 .hl {
  background: linear-gradient(135deg, var(--gold-soft) 0%, var(--gold) 50%, var(--gold-deep) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  font-style: italic;
  filter: drop-shadow(0 0 24px rgba(243, 198, 35, 0.3));
}

.hero-clients {
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  margin-top: 0.8rem;
  font-family: var(--font-body);
  font-size: clamp(1.1rem, 2.2vw, 1.5rem);
  flex-wrap: wrap;
  justify-content: center;
}
.client {
  font-weight: 600;
  letter-spacing: -0.01em;
}
.client--attenlab {
  color: #1166c4;
  font-weight: 800;
  font-style: italic;
  text-shadow: 0 0 12px rgba(17, 102, 196, 0.25);
}
.client--marines {
  color: var(--text);
  font-family: var(--font-heading);
  font-weight: 600;
  font-style: italic;
}
.client-sep {
  color: var(--text-muted);
  font-weight: 300;
  opacity: 0.6;
}

.hero-sub {
  color: var(--text-soft);
  font-size: clamp(1rem, 1.6vw, 1.18rem);
  max-width: 560px;
  margin-top: 0.6rem;
}

.hero-progress {
  position: absolute;
  bottom: 1.4rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 6px;
  width: min(220px, 60%);
}
.hero-progress span {
  flex: 1;
  height: 4px;
  border-radius: 4px;
  background: rgba(243, 198, 35, 0.2);
  border: 1px solid rgba(243, 198, 35, 0.4);
}
.hero-progress span:first-child {
  background: var(--gold);
  box-shadow: 0 0 8px var(--gold-glow);
}

.section-progress {
  display: flex;
  gap: 6px;
  width: min(220px, 60%);
  margin: 2.5rem auto 0;
}
.section-progress span {
  flex: 1;
  height: 4px;
  border-radius: 4px;
  background: rgba(243, 198, 35, 0.18);
  border: 1px solid rgba(243, 198, 35, 0.32);
}
.section-progress span.active {
  background: var(--gold);
  box-shadow: 0 0 8px var(--gold-glow);
}

/* ============================================
   ABOUT (Pág. 01)
   ============================================ */
.about-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  align-items: start;
}

.about-text h2 {
  font-size: clamp(2rem, 4.5vw, 3.2rem);
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 1.4rem;
  line-height: 1.1;
}
.about-text h2 em {
  color: var(--gold-deep);
}
.about-text p {
  color: var(--text-dark-muted);
  font-size: 1rem;
  line-height: 1.75;
  margin-bottom: 0.9rem;
  max-width: 540px;
}
.about-text strong { color: var(--text-dark); font-weight: 600; }

.pillars {
  border-left: 1px solid var(--line-light);
  padding-left: clamp(1.5rem, 4vw, 3rem);
}
.pillars-title {
  font-family: var(--font-heading);
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 1.4rem;
  line-height: 1.1;
}

.pillars-list {
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
}
.pill {
  background: linear-gradient(90deg, var(--gold-soft) 0%, var(--gold) 100%);
  color: var(--text-dark);
  font-weight: 600;
  font-size: 0.95rem;
  padding: 0.85rem 1.4rem;
  border-radius: var(--radius-pill);
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  box-shadow: 0 4px 14px rgba(243, 198, 35, 0.25);
  transition: transform var(--transition), box-shadow var(--transition);
}
.pill:hover {
  transform: translateX(4px);
  box-shadow: 0 6px 20px rgba(243, 198, 35, 0.35);
}
.pill i {
  width: 24px;
  height: 24px;
  border-radius: 6px;
  background: rgba(13, 13, 13, 0.12);
  display: grid;
  place-items: center;
  font-size: 0.95rem;
  color: var(--text-dark);
  flex-shrink: 0;
}
.pill-icon {
  width: 24px;
  height: 24px;
  object-fit: contain;
  flex-shrink: 0;
}

/* ============================================
   SCENARIO / Análise do site (Pág. 02)
   ============================================ */
.scenario-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  align-items: start;
}

.scenario-mock {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  border: 1px solid var(--line-dark);
}
.mock-window {
  background: #fff;
  color: #2a3a55;
  border-radius: 12px;
  overflow: hidden;
}
.mock-bar {
  background: #1f3d6b;
  color: #fff;
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  padding: 0.6rem 1rem;
  font-size: 0.7rem;
}
.mock-bar__contact { font-weight: 500; opacity: 0.9; }
.mock-bar__nav { opacity: 0.7; }
.mock-hero {
  padding: 1.5rem 1.5rem 2rem;
  background:
    linear-gradient(135deg, rgba(31, 61, 107, 0.15) 0%, transparent 50%),
    #f5f7fb;
  min-height: 220px;
}
.mock-hero__brand {
  font-family: var(--font-body);
  font-weight: 800;
  color: #1f3d6b;
  font-size: 1.3rem;
  font-style: italic;
  margin-bottom: 1.2rem;
}
.mock-hero__title {
  font-weight: 700;
  color: #1a2540;
  font-size: 1.15rem;
  line-height: 1.3;
  margin-bottom: 0.7rem;
  max-width: 70%;
}
.mock-hero__sub {
  font-size: 0.78rem;
  color: #4a5878;
  line-height: 1.5;
  max-width: 65%;
}

.scenario-cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.9rem;
}

/* Dark cards (used across many sections) */
.dark-card {
  background: linear-gradient(180deg, rgba(255,255,255,0.04) 0%, rgba(255,255,255,0.015) 100%);
  border: 1px solid var(--line-dark);
  border-radius: var(--radius);
  padding: 1.4rem 1.5rem;
  position: relative;
  transition: transform var(--transition), border-color var(--transition), background var(--transition);
}
.dark-card:hover {
  transform: translateY(-3px);
  border-color: rgba(243, 198, 35, 0.32);
  background: linear-gradient(180deg, rgba(243, 198, 35, 0.04) 0%, rgba(255,255,255,0.02) 100%);
}
.dark-card header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.8rem;
  margin-bottom: 0.6rem;
}
.dark-card h3 {
  font-family: var(--font-body);
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--text);
}
.dark-card header i {
  color: var(--gold);
  font-size: 1.1rem;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: 1.5px solid var(--gold);
  display: grid;
  place-items: center;
  flex-shrink: 0;
}
.dark-card p {
  color: var(--text-soft);
  font-size: 0.92rem;
  line-height: 1.6;
}
.scenario-card {
  composes: dark-card;
}

.scenario-card,
.scenario-cards .dark-card { background: linear-gradient(180deg, rgba(255,255,255,0.03) 0%, rgba(255,255,255,0.01) 100%); }

/* ============================================
   2x2 grids (analyses)
   ============================================ */
.cards-grid-2x2 {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.9rem;
}

.avatar-circle {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: linear-gradient(135deg, #f3c623 0%, #c69b14 100%);
  color: var(--text-dark);
  display: grid;
  place-items: center;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.5rem;
  flex-shrink: 0;
  box-shadow: 0 6px 18px rgba(243, 198, 35, 0.3);
  border: 2px solid rgba(243, 198, 35, 0.4);
}
.avatar-circle.sm {
  width: 36px;
  height: 36px;
  font-size: 0.95rem;
}
.avatar-circle--brand {
  background: linear-gradient(135deg, #1971d2 0%, #0e4a8a 100%);
  color: #fff;
  font-style: italic;
  box-shadow: 0 6px 18px rgba(25, 113, 210, 0.3);
  border-color: rgba(25, 113, 210, 0.4);
}

/* ============================================
   FUNNEL (Pág. 04)
   ============================================ */
.funnel-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  align-items: center;
}
.funnel-visual {
  display: grid;
  place-items: center;
}
.funnel-svg {
  width: min(380px, 100%);
  filter: drop-shadow(0 16px 24px rgba(0,0,0,0.18));
}

.funnel-content h2 {
  margin-bottom: 1.6rem;
  color: var(--text-dark);
  font-size: clamp(1.8rem, 4vw, 2.6rem);
}

.funnel-stage {
  position: relative;
  padding-left: 1.4rem;
  border-left: 2px solid var(--gold);
  margin-bottom: 1.5rem;
}
.funnel-stage::before {
  content: "";
  position: absolute;
  left: -7px;
  top: 0.4rem;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 10px var(--gold-glow);
}
.funnel-stage h3 {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  color: var(--text-dark);
  margin-bottom: 0.4rem;
  font-weight: 600;
}
.funnel-stage p {
  color: var(--text-dark-muted);
  font-size: 0.95rem;
  line-height: 1.65;
}
.funnel-stage strong { color: var(--text-dark); font-weight: 600; }

/* ============================================
   STRATEGY (Pág. 05–07)
   ============================================ */
.strategy-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  align-items: start;
}

.strategy-brand {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}
.strategy-brand h2 {
  color: var(--text);
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-weight: 500;
}
.strategy-brand h2 em { color: var(--gold); font-weight: 600; }

.strategy-logo {
  display: grid;
  place-items: center;
  filter: drop-shadow(0 8px 20px rgba(0,0,0,0.4));
}
.strategy-logo--attenlab {
  background: rgba(255, 255, 255, 0.04);
  padding: 1.2rem 2rem;
  border-radius: var(--radius);
  border: 1px solid var(--line-dark);
}
.attenlab-text {
  font-family: var(--font-body);
  font-weight: 800;
  font-style: italic;
  font-size: 2.2rem;
  color: #1971d2;
  letter-spacing: -0.02em;
}

.strategy-clients {
  display: flex;
  gap: 1rem;
  margin-top: 0.5rem;
  flex-wrap: wrap;
  justify-content: center;
}
.client-chip {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.4rem 0.9rem 0.4rem 0.4rem;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--line-dark);
  border-radius: var(--radius-pill);
  font-size: 0.85rem;
  color: var(--text-soft);
  font-weight: 500;
}

.strategy-cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}

.dark-card--full {
  grid-column: 1 / -1;
  background: linear-gradient(135deg, rgba(243, 198, 35, 0.08) 0%, rgba(255,255,255,0.02) 100%);
  border-color: rgba(243, 198, 35, 0.18);
}

.bullet-list {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  margin-top: 0.6rem;
}
.bullet-list li {
  position: relative;
  padding-left: 1.1rem;
  color: var(--text-soft);
  font-size: 0.92rem;
  line-height: 1.55;
}
.bullet-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55rem;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold);
}
.bullet-list.compact li { font-size: 0.88rem; padding-left: 1rem; }

/* ============================================
   SCHEDULE (Pág. 08)
   ============================================ */
.schedule-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  align-items: start;
}
.schedule-intro h2 {
  color: var(--text);
  font-size: clamp(2rem, 4.5vw, 3rem);
  font-weight: 500;
  margin-bottom: 1rem;
}
.schedule-intro p {
  color: var(--text-soft);
  font-size: 1.05rem;
  font-style: italic;
}

.schedule-cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}
.schedule-cards .dark-card h3 {
  font-family: var(--font-body);
  font-size: 1.15rem;
  color: var(--gold);
  font-weight: 700;
  letter-spacing: 0.02em;
  margin-bottom: 0.4rem;
}
.schedule-final h3 { color: var(--gold-soft) !important; }

/* ============================================
   PLANS (Pág. 09)
   ============================================ */
.plans-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.4rem;
  margin-top: 2rem;
}

.plan-card {
  background: var(--text-dark);
  color: var(--text);
  border-radius: var(--radius);
  padding: 2rem 1.8rem;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
  transition: transform var(--transition), box-shadow var(--transition);
  box-shadow: 0 12px 32px rgba(0,0,0,0.18);
  border: 1px solid rgba(255,255,255,0.04);
  isolation: isolate;
}
.plan-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: var(--radius);
  background: rgba(13, 13, 13, 0.85);
  z-index: -1;
  transform: rotate(-1.5deg);
  transition: transform var(--transition);
}
.plan-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 44px rgba(0,0,0,0.28), 0 0 0 1px rgba(243, 198, 35, 0.18);
}

.plan-card--featured {
  background: linear-gradient(180deg, #161616 0%, #0d0d0d 100%);
  border-color: rgba(243, 198, 35, 0.4);
  box-shadow: 0 16px 48px rgba(0,0,0,0.35), 0 0 0 1px rgba(243, 198, 35, 0.2);
}
.plan-card--featured::before { background: rgba(243, 198, 35, 0.06); transform: rotate(1.5deg); }

.plan-badge {
  position: absolute;
  top: -12px;
  right: 16px;
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-deep) 100%);
  color: var(--text-dark);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 0.35rem 0.9rem;
  border-radius: var(--radius-pill);
  box-shadow: 0 4px 12px rgba(243, 198, 35, 0.3);
}

.plan-header {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--line-dark);
}
.plan-header h3 {
  font-family: var(--font-heading);
  font-size: 1.7rem;
  color: var(--text);
  font-weight: 600;
}
.plan-icon {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--gold);
  color: var(--text-dark);
  display: grid;
  place-items: center;
  font-size: 1rem;
}

.plan-features {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  flex: 1;
}
.plan-features li {
  position: relative;
  padding-left: 1.2rem;
  color: var(--text-soft);
  font-size: 0.95rem;
}
.plan-features li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55rem;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold);
}

.plan-price {
  display: flex;
  align-items: baseline;
  gap: 0.3rem;
  flex-wrap: wrap;
}
.plan-from {
  flex-basis: 100%;
  font-size: 0.72rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 500;
  margin-bottom: 0.2rem;
  text-decoration: line-through;
}
.plan-currency {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  color: var(--gold);
  font-weight: 600;
}
.plan-value {
  font-family: var(--font-heading);
  font-size: 2.3rem;
  color: var(--text);
  font-weight: 700;
  line-height: 1;
}
.plan-period {
  font-size: 0.85rem;
  color: var(--text-muted);
  font-weight: 500;
}

/* ============================================
   CONTACT (Pág. 10)
   ============================================ */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  align-items: center;
}
.contact-brand {
  text-align: center;
  padding: 1.5rem;
  display: grid;
  place-items: center;
}
.contact-logo {
  width: min(280px, 80%);
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 6px 18px rgba(13, 13, 13, 0.15));
  transition: transform var(--transition);
}
.contact-logo:hover { transform: translateY(-2px); }

.contact-content {
  border-left: 1px solid var(--line-light);
  padding-left: clamp(1.5rem, 4vw, 3rem);
}
.contact-content h2 {
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  color: var(--text-dark);
  font-weight: 600;
  margin-bottom: 1.4rem;
  line-height: 1.1;
}
.contact-label {
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 1rem;
  font-size: 1rem;
}

.contact-list {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}
.contact-list a {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  color: var(--text-dark);
  font-size: 1rem;
  font-weight: 500;
  padding: 0.6rem 0;
  transition: color var(--transition), transform var(--transition);
}
.contact-list a:hover {
  color: var(--gold-deep);
  transform: translateX(4px);
}
.contact-list a i {
  width: 30px;
  height: 30px;
  border-radius: 8px;
  background: rgba(243, 198, 35, 0.12);
  color: var(--gold-deep);
  display: grid;
  place-items: center;
  font-size: 1rem;
  flex-shrink: 0;
}

/* ============================================
   FOOTER
   ============================================ */
.site-footer {
  padding: 2rem 0;
  background: var(--bg);
  border-top: 1px solid var(--line-dark);
}
.footer-note {
  color: var(--text-muted);
  font-size: 0.85rem;
  text-align: center;
  line-height: 1.6;
}
.footer-note strong { color: var(--text); font-weight: 600; }

/* ============================================
   WHATSAPP FLOAT
   ============================================ */
.whatsapp-float {
  position: fixed;
  right: 1.4rem;
  bottom: 1.4rem;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: #25D366;
  color: #fff;
  display: grid;
  place-items: center;
  box-shadow: 0 6px 22px rgba(37, 211, 102, 0.4);
  z-index: 40;
  transition: transform var(--transition), box-shadow var(--transition);
  font-size: 1.7rem;
}
.whatsapp-float:hover {
  transform: translateY(-3px) scale(1.06);
  box-shadow: 0 10px 30px rgba(37, 211, 102, 0.55);
}
.whatsapp-pulse {
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  border: 2px solid #25D366;
  animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { transform: scale(1); opacity: 0.6; }
  50% { transform: scale(1.18); opacity: 0; }
}

/* ============================================
   REVEAL ANIMATION
   ============================================ */
[data-reveal] {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
[data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (min-width: 600px) {
  .cards-grid-2x2 {
    grid-template-columns: repeat(2, 1fr);
  }
  .scenario-cards {
    grid-template-columns: repeat(2, 1fr);
  }
  .strategy-cards {
    grid-template-columns: repeat(2, 1fr);
  }
  .schedule-cards {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 900px) {
  .hamburger { display: none; }
  .nav { display: inline-flex; }

  .about-grid {
    grid-template-columns: 1.1fr 1fr;
    gap: 3.5rem;
  }

  .scenario-grid {
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
  }
  .scenario-cards {
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
  }

  .funnel-grid {
    grid-template-columns: 1fr 1.1fr;
    gap: 4rem;
  }

  .strategy-grid {
    grid-template-columns: 1fr 1.4fr;
    gap: 3.5rem;
  }
  .strategy-brand {
    text-align: center;
    position: sticky;
    top: 100px;
  }

  .schedule-grid {
    grid-template-columns: 1fr 1.5fr;
    gap: 3rem;
  }
  .schedule-cards {
    grid-template-columns: repeat(2, 1fr);
  }

  .plans-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 1.6rem;
  }
  .plan-card--featured {
    transform: translateY(-12px);
  }
  .plan-card--featured:hover {
    transform: translateY(-18px);
  }

  .contact-grid {
    grid-template-columns: 1fr 1.2fr;
    gap: 4rem;
  }
}

@media (min-width: 1100px) {
  .strategy-cards {
    grid-template-columns: 1fr 1fr;
  }
  .strategy-cards .dark-card--full {
    grid-column: 1 / -1;
  }
}

/* Small mobile tweaks */
@media (max-width: 599px) {
  .hero-clients { gap: 0.5rem; }
  .client-sep { display: none; }
  .hero h1 { line-height: 1.05; }
  .brand-logo__img { height: 32px; }

  .pillars { padding-left: 0; border-left: none; padding-top: 1rem; border-top: 1px solid var(--line-light); }

  .contact-content { border-left: none; padding-left: 0; padding-top: 1.5rem; border-top: 1px solid var(--line-light); }
}

/* Reduce motion */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  html { scroll-behavior: auto; }
  [data-reveal] { opacity: 1; transform: none; }
}
