:root {
  --void:        #050506;
  --base:        #0A0A0C;
  --elevated:    #131316;
  --elevated-2:  #1B1B1F;
  --ink:         #EDEDEF;
  --ink-soft:    rgba(237,237,239,0.72);
  --ink-faint:   rgba(237,237,239,0.52);
  --brass:       #B08D57;
  --brass-light: #E4C98A;
  --brass-glow:  rgba(228,201,138,0.22);
  --azure:       #5C84B3;
  --azure-light: #8FB2DA;
  --azure-glow:  rgba(143,178,218,0.20);
  --rock-500:    #4E7099;
  --rock-700:    #2A415B;
  --rock-900:    #131F2C;
  --rock-glow:   rgba(78,112,153,0.30);
  --gold-700:    #4A3A1F;
  --gold-900:    #1D160D;
  --coral:       #B8342A;
  --coral-light: #D85B4E;
  --coral-dark:  #7E2019;
  --coral-glow:  rgba(184,52,42,0.35);
  --hairline:        rgba(255,255,255,0.08);
  --hairline-strong: rgba(255,255,255,0.16);
  --shadow-sm:   0 2px 14px rgba(0,0,0,0.35);
  --shadow-md:   0 18px 46px rgba(0,0,0,0.5);
  --shadow-lg:   0 34px 80px rgba(0,0,0,0.6);
  --glass-bg:      rgba(9,10,13,0.55);
  --glass-border:  rgba(255,255,255,0.1);
  --glass-bg-soft: rgba(255,255,255,0.06);
  --r:           18px;
  --r-sm:        10px;
  --serif:       'Fraunces', Georgia, 'Times New Roman', serif;
  --sans:        'Inter', system-ui, -apple-system, Arial, sans-serif;
  --mono:        'JetBrains Mono', 'SF Mono', Consolas, monospace;
  --header-h:    76px;
}

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--sans);
  background: var(--void);
  color: var(--ink);
  line-height: 1.6;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  position: relative;
}
body::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background:
    linear-gradient(124deg, transparent 21.5%, rgba(228,201,138,0.05) 22%, transparent 22.5%),
    linear-gradient(66deg, transparent 61%, rgba(255,255,255,0.035) 61.4%, transparent 61.8%),
    linear-gradient(153deg, transparent 83%, rgba(78,112,153,0.05) 83.5%, transparent 84%),
    radial-gradient(ellipse 1300px 850px at 8% 4%, rgba(78,112,153,0.09), transparent 62%),
    radial-gradient(ellipse 1200px 900px at 94% 40%, rgba(228,201,138,0.05), transparent 60%),
    radial-gradient(ellipse 1200px 850px at 10% 88%, rgba(228,201,138,0.05), transparent 60%)
    #08090b;
}
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
button { font-family: inherit; }
a, button, .filter-btn, .btn-primario, .btn-whats-mini, .btn-whatsapp, .link-afiliado {
  cursor: pointer;
}

a:focus-visible, button:focus-visible {
  outline: 2px solid var(--brass-light);
  outline-offset: 3px;
  border-radius: 6px;
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
}

.container {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 28px;
}

main { position: relative; z-index: 1; }

/* ── HEADER (full-width glass bar) ── */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  border-bottom: 1px solid var(--hairline);
  background: linear-gradient(180deg, rgba(7,8,10,0.68), rgba(7,8,10,0.44));
  backdrop-filter: blur(20px) saturate(160%);
  -webkit-backdrop-filter: blur(20px) saturate(160%);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--header-h);
}
.brand {
  display: flex;
  align-items: center;
  margin-left: 22px;
}
.brand-word {
  font-family: var(--serif);
  font-weight: 600;
  font-size: 1.4rem;
  letter-spacing: 0.01em;
  color: var(--ink);
}
.header-nav {
  display: flex;
  align-items: center;
  gap: 16px;
}
.btn-whats-mini {
  display: flex;
  align-items: center;
  gap: 8px;
  background: var(--elevated-2);
  border: 1px solid var(--hairline-strong);
  color: var(--ink);
  font-size: 0.82rem;
  font-weight: 600;
  padding: 13px 20px;
  min-height: 44px;
  border-radius: 999px;
  transition: background 0.2s, transform 0.15s, border-color 0.2s;
}
.btn-whats-mini:hover { background: #212126; border-color: var(--brass); transform: translateY(-1px); }
.btn-whats-mini svg { width: 16px; height: 16px; flex-shrink: 0; }

/* ── TICKER ── */
.ticker-wrap {
  margin-top: var(--header-h);
  position: relative;
  z-index: 1;
  background: var(--void);
  border-bottom: 1px solid var(--hairline);
  padding: 9px 0;
  overflow: hidden;
}
.ticker {
  display: flex;
  width: max-content;
  white-space: nowrap;
  animation: ticker-scroll 220s linear infinite;
}
.ticker:hover { animation-play-state: paused; }
.ticker-items {
  font-size: 0.76rem;
  color: var(--ink-faint);
  padding: 0 22px;
  flex-shrink: 0;
}
@keyframes ticker-scroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
@media (prefers-reduced-motion: reduce) {
  .ticker { animation: none; }
}

/* ── HERO ── */
.hero {
  position: relative;
  overflow: hidden;
  padding: 64px 28px 96px;
  border-bottom: 1px solid var(--hairline);
}
.hero-grid {
  display: grid;
  grid-template-columns: 1fr 400px;
  gap: 56px;
  align-items: start;
  position: relative;
  z-index: 1;
}
.hero-inner {
  max-width: 580px;
  padding-top: 8px;
}

.hero-feature {
  display: flex;
  flex-direction: column;
  border-radius: var(--r);
  box-shadow:
    var(--shadow-lg),
    0 0 90px rgba(228,201,138,0.07),
    0 0 180px rgba(176,141,87,0.05);
}
.hero-feature-frame {
  position: relative;
  display: block;
  aspect-ratio: 1 / 1;
  border-radius: var(--r-sm) var(--r-sm) 0 0;
  overflow: hidden;
  border: 1px solid var(--hairline-strong);
  border-bottom: none;
  background: var(--base);
}
.hero-feature-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero-feature-body {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 28px 30px 30px;
  border: 1px solid var(--hairline-strong);
  border-top: none;
  border-radius: 0 0 var(--r) var(--r);
  background: linear-gradient(165deg, var(--elevated-2) 0%, var(--elevated) 60%);
}
.hero-feature-label {
  font-family: var(--mono);
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--brass-light);
}
.hero-feature-title {
  font-family: var(--serif);
  font-size: 1.28rem;
  font-weight: 600;
  color: var(--ink);
  line-height: 1.28;
  margin: 6px 0 18px;
}
.hero-feature-sub {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--ink-faint);
  margin-bottom: 12px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--hairline);
}
.hero-feature-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 11px;
  margin-bottom: 26px;
}
.hero-feature-list li {
  position: relative;
  padding-left: 24px;
  font-size: 0.9rem;
  line-height: 1.45;
  color: var(--ink-soft);
}
.hero-feature-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  top: 0;
  color: var(--brass-light);
  font-weight: 700;
  font-size: 0.82rem;
}
.hero-feature-price {
  display: flex;
  flex-direction: column;
  gap: 3px;
  padding: 16px 0;
  margin-bottom: 18px;
  border-top: 1px solid var(--hairline);
  border-bottom: 1px solid var(--hairline);
}
.price-was {
  font-size: 0.78rem;
  color: var(--ink-faint);
}
.price-was s { text-decoration-color: var(--ink-faint); }
.price-now {
  font-family: var(--serif);
  font-size: 2.1rem;
  font-weight: 600;
  color: var(--brass-light);
  line-height: 1;
}
.price-now sup { font-size: 1rem; font-weight: 600; margin-right: 2px; }
.price-cents { font-size: 1.3rem; }
.price-tag {
  font-family: var(--mono);
  font-size: 0.66rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--ink-faint);
  margin-top: 4px;
}

.btn-primario.hero-feature-cta {
  width: 100%;
  padding: 16px 26px;
  font-size: 0.98rem;
  background: linear-gradient(150deg, var(--coral-light) 0%, var(--coral) 55%, var(--coral-dark) 100%) !important;
  color: var(--ink) !important;
  border: 1px solid rgba(0,0,0,0.15) !important;
  box-shadow: 0 10px 28px var(--coral-glow) !important;
}
.btn-primario.hero-feature-cta:hover {
  background: linear-gradient(150deg, var(--coral-light) 0%, var(--coral) 55%, var(--coral-dark) 100%) !important;
  filter: brightness(1.1);
  transform: translateY(-2px);
}
.hero h1 {
  margin-top: 0;
  font-family: var(--serif);
  font-weight: 600;
  font-size: clamp(2.3rem, 4.6vw, 3.9rem);
  line-height: 1.1;
  letter-spacing: -0.01em;
  color: var(--ink);
  margin-bottom: 22px;
}
.hero h1 .mark { color: var(--brass-light); }
.hero-lead {
  font-size: 1.08rem;
  color: var(--ink-soft);
  max-width: 560px;
  line-height: 1.75;
  margin-bottom: 40px;
}
.hero-lead strong { color: var(--brass-light); font-weight: 600; }

.btn-hero-cta {
  position: relative;
  overflow: hidden;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: linear-gradient(145deg, var(--brass-light), var(--brass));
  color: var(--void) !important;
  font-weight: 700;
  font-size: 0.95rem;
  padding: 15px 28px;
  min-height: 44px;
  border-radius: 999px;
  box-shadow: 0 8px 26px var(--brass-glow);
  transition: transform 0.15s, box-shadow 0.2s, filter 0.2s;
  margin-bottom: 48px;
}
.btn-hero-cta:hover {
  filter: brightness(1.08);
  transform: translateY(-2px);
  box-shadow: 0 12px 32px var(--brass-glow);
}

.spec-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  border-top: 1px solid var(--hairline);
  padding-top: 26px;
}
.spec-item {
  display: flex;
  flex-direction: column;
  gap: 5px;
}
.spec-item dt {
  font-family: var(--mono);
  font-size: 1.55rem;
  font-weight: 600;
  line-height: 1;
  text-transform: uppercase;
  font-variant-numeric: tabular-nums;
}
.spec-item dt.t-gold { color: var(--brass-light); }
.spec-item dd {
  font-size: 0.72rem;
  color: var(--ink-faint);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  max-width: 16ch;
  line-height: 1.3;
}

/* ── SOLUÇÃO ── */
.solution { padding: 100px 28px; position: relative; z-index: 1; }
.solution-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}
.solution-text h2 {
  font-family: var(--serif);
  font-weight: 600;
  font-size: clamp(1.7rem, 3vw, 2.3rem);
  line-height: 1.25;
  color: var(--ink);
  margin-bottom: 20px;
}
.solution-text h2 .mark { color: var(--brass-light); }
.solution-text > p {
  font-size: 0.98rem;
  color: var(--ink-soft);
  line-height: 1.7;
  max-width: 480px;
  margin-bottom: 44px;
}
.solution-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 26px;
}
.solution-list li {
  display: flex;
  gap: 18px;
  align-items: flex-start;
}
.solution-num {
  font-family: var(--mono);
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--azure-light);
  border: 1px solid var(--hairline-strong);
  border-radius: 6px;
  width: 34px;
  height: 34px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.solution-list h4 {
  font-family: var(--serif);
  font-size: 1rem;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 4px;
}
.solution-list p {
  font-size: 0.86rem;
  color: var(--ink-soft);
  line-height: 1.6;
}
.solution-photo {
  position: relative;
  border-radius: var(--r);
  overflow: hidden;
  border: 1px solid var(--hairline-strong);
  box-shadow:
    var(--shadow-lg),
    0 0 100px rgba(78,112,153,0.09),
    0 0 200px rgba(42,65,91,0.06);
  aspect-ratio: 4 / 3;
}
.solution-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 12%;
}

/* ── CATALOG ── */
.catalog { padding: 76px 28px 110px; position: relative; }
.catalog-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
  margin-bottom: 40px;
  padding-bottom: 22px;
  border-bottom: 1px solid var(--hairline);
}
.catalog-head h2 {
  font-family: var(--serif);
  font-weight: 600;
  font-size: 1.6rem;
  color: var(--ink);
}
.filters {
  display: flex;
  gap: 28px;
}
.filter-btn {
  border: none;
  border-bottom: 2px solid transparent;
  background: transparent;
  color: var(--ink-faint);
  font-size: 0.86rem;
  font-weight: 600;
  padding: 12px 2px 14px;
  min-height: 44px;
  cursor: pointer;
  transition: color 0.2s, border-color 0.2s;
  display: flex;
  align-items: center;
  gap: 8px;
}
.filter-btn span {
  font-family: 'JetBrains Mono', 'SF Mono', Consolas, monospace;
  font-size: 0.7rem;
  font-weight: 500;
  color: var(--ink-faint);
}
.filter-btn.is-active {
  color: var(--ink);
  border-bottom-color: var(--brass-light);
}
.filter-btn.is-active span { color: var(--brass-light); }

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

.card {
  background: var(--elevated);
  border: 1px solid var(--hairline);
  border-radius: var(--r);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  transition: box-shadow 0.3s, transform 0.3s, border-color 0.3s;
  opacity: 0;
  transform: translateY(22px);
}
.card.is-visible { opacity: 1; transform: translateY(0); }
.card:hover { box-shadow: var(--shadow-md); transform: translateY(-6px) scale(1.012); border-color: var(--hairline-strong); }
.card.is-visible:hover { transform: translateY(-6px) scale(1.012); }

.card-curso {
  grid-column: 1 / -1;
  flex-direction: row;
  background: linear-gradient(135deg, var(--elevated-2) 0%, var(--base) 100%);
  border-color: var(--brass);
  box-shadow: 0 0 0 1px rgba(228,201,138,0.08), var(--shadow-sm);
}
.card-curso .card-media {
  width: 42%;
  flex-shrink: 0;
}
.card-curso .card-body {
  flex: 1;
  justify-content: center;
}
.card-curso h3 { font-size: 1.5rem; color: var(--ink); }
.card-curso p { color: var(--ink-soft); }
.card-curso .btn-primario {
  background: linear-gradient(150deg, var(--rock-500) 0%, var(--rock-700) 55%, var(--rock-900) 100%) !important;
  color: var(--ink) !important;
  border: 1px solid rgba(255,255,255,0.12) !important;
  box-shadow: 0 6px 20px var(--rock-glow) !important;
}
.card-curso .btn-primario:hover {
  background: linear-gradient(150deg, var(--rock-500) 0%, var(--rock-700) 55%, var(--rock-900) 100%) !important;
  filter: brightness(1.14);
}

.card-media {
  position: relative;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  background: var(--base);
}
.card-media img {
  width: 100%; height: 100%;
  object-fit: cover;
  filter: saturate(1.03);
}

.card-body {
  padding: 26px 28px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  flex: 1;
}
.card-body h3 {
  font-family: var(--serif);
  font-weight: 600;
  font-size: 1.18rem;
  color: var(--ink);
  line-height: 1.3;
}
.card-body p {
  font-size: 0.92rem;
  color: var(--ink-soft);
  line-height: 1.65;
  flex: 1;
}
.card-actions {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 6px;
}

.btn-primario {
  position: relative;
  overflow: hidden;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(150deg, var(--rock-500) 0%, var(--rock-700) 55%, var(--rock-900) 100%) !important;
  border: 1px solid rgba(255,255,255,0.12) !important;
  color: var(--ink) !important;
  font-weight: 700;
  font-size: 0.92rem;
  padding: 14px 26px;
  border-radius: 999px;
  cursor: pointer;
  transition: background 0.2s, transform 0.15s, box-shadow 0.2s, border-color 0.2s;
  box-shadow: 0 6px 20px var(--rock-glow) !important;
  text-align: center;
}
.btn-primario:hover {
  background: linear-gradient(150deg, var(--rock-500) 0%, var(--rock-700) 55%, var(--rock-900) 100%) !important;
  filter: brightness(1.14);
  transform: translateY(-2px);
}

.btn-primario::after, .btn-hero-cta::after {
  content: '';
  position: absolute;
  top: -60%;
  left: 0;
  width: 26%;
  height: 220%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.5), transparent);
  transform: translateX(-320%) rotate(18deg);
  animation: shineSweep 4.2s ease-in-out infinite;
  pointer-events: none;
}
.btn-primario:nth-of-type(2)::after { animation-delay: 0.6s; }
@keyframes shineSweep {
  0%, 45%   { transform: translateX(-320%) rotate(18deg); }
  62%       { transform: translateX(420%) rotate(18deg); }
  100%      { transform: translateX(420%) rotate(18deg); }
}
@media (prefers-reduced-motion: reduce) {
  .btn-primario::after, .btn-hero-cta::after { animation: none; display: none; }
}

.link-afiliado {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--brass-light);
  text-align: center;
  padding: 6px 4px;
  border-bottom: 1px solid transparent;
  align-self: center;
  transition: border-color 0.2s;
}
.link-afiliado:hover { border-color: var(--brass-light); }

/* ── TEAM ── */
.team { padding: 100px 28px; border-top: 1px solid var(--hairline); position: relative; z-index: 1; }
.team-head {
  text-align: center;
  max-width: 620px;
  margin: 0 auto 56px;
}
.team-head h2 {
  font-family: var(--serif);
  font-weight: 600;
  font-size: clamp(1.7rem, 3vw, 2.3rem);
  color: var(--ink);
  margin-bottom: 16px;
}
.team-head h2 .mark { color: var(--brass-light); }
.team-head p {
  font-size: 0.98rem;
  color: var(--ink-soft);
  line-height: 1.7;
}
.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.team-card {
  background: var(--elevated);
  border: 1px solid var(--hairline-strong);
  border-radius: var(--r);
  overflow: hidden;
  box-shadow:
    var(--shadow-sm),
    0 0 70px rgba(78,112,153,0.07),
    0 0 140px rgba(42,65,91,0.05);
  transition: box-shadow 0.3s, transform 0.3s;
}
.team-card:hover {
  transform: translateY(-4px);
  box-shadow:
    var(--shadow-md),
    0 0 80px rgba(78,112,153,0.1),
    0 0 160px rgba(42,65,91,0.07);
}
.team-card-top {
  background: linear-gradient(160deg, var(--gold-700) 0%, var(--gold-900) 100%);
  padding: 34px 24px 24px;
  text-align: center;
}
.team-avatar {
  width: 104px;
  height: 104px;
  border-radius: 50%;
  border: 3px solid var(--brass-light);
  overflow: hidden;
  margin: 0 auto 16px;
  box-shadow: 0 8px 22px rgba(0,0,0,0.45);
}
.team-avatar img { width: 100%; height: 100%; object-fit: cover; }
.team-name {
  font-family: var(--serif);
  font-weight: 600;
  font-size: 1.05rem;
  color: var(--ink);
  margin-bottom: 4px;
}
.team-role {
  font-size: 0.72rem;
  color: var(--brass-light);
  letter-spacing: 0.03em;
}
.team-card-body { padding: 22px 24px 26px; }
.team-card-body p {
  font-size: 0.86rem;
  color: var(--ink-soft);
  line-height: 1.6;
  margin-bottom: 16px;
}
.team-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
}
.team-tags span {
  font-size: 0.68rem;
  font-weight: 600;
  background: var(--elevated-2);
  border: 1px solid var(--hairline);
  color: var(--ink-soft);
  padding: 4px 11px;
  border-radius: 999px;
}

/* ── FAQ ── */
.faq { padding: 100px 28px; border-top: 1px solid var(--hairline); position: relative; z-index: 1; }
.faq-head {
  text-align: center;
  max-width: 620px;
  margin: 0 auto 48px;
}
.faq-head h2 {
  font-family: var(--serif);
  font-weight: 600;
  font-size: clamp(1.7rem, 3vw, 2.3rem);
  line-height: 1.3;
  color: var(--ink);
}
.faq-head h2 .mark { color: var(--brass-light); }
.faq-list {
  max-width: 780px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.faq-item {
  background: var(--elevated);
  border: 1px solid var(--hairline-strong);
  border-radius: var(--r-sm);
  overflow: hidden;
  transition: border-color 0.2s;
}
.faq-item.is-open { border-color: var(--brass); }
.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  background: none;
  border: none;
  text-align: left;
  padding: 20px 24px;
  font-family: inherit;
  font-size: 0.94rem;
  font-weight: 600;
  color: var(--ink);
  cursor: pointer;
  transition: background 0.15s;
}
.faq-question:hover { background: var(--elevated-2); }
.faq-icon {
  position: relative;
  flex-shrink: 0;
  width: 18px;
  height: 18px;
}
.faq-icon::before, .faq-icon::after {
  content: '';
  position: absolute;
  background: var(--brass-light);
  border-radius: 2px;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
}
.faq-icon::before { width: 14px; height: 2px; }
.faq-icon::after { width: 2px; height: 14px; transition: transform 0.25s; }
.faq-item.is-open .faq-icon::after { transform: translate(-50%, -50%) rotate(90deg); opacity: 0; }
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}
.faq-item.is-open .faq-answer { max-height: 300px; }
.faq-answer p {
  padding: 0 24px 20px;
  font-size: 0.88rem;
  color: var(--ink-soft);
  line-height: 1.7;
  border-top: 1px solid var(--hairline);
  padding-top: 16px;
}

/* ── FINAL CTA ── */
.final-cta {
  padding: 110px 28px;
  border-top: 1px solid var(--hairline);
  position: relative;
  z-index: 1;
  text-align: center;
  background:
    radial-gradient(ellipse 700px 400px at 50% 0%, rgba(228,201,138,0.08), transparent 65%),
    linear-gradient(180deg, var(--base) 0%, var(--rock-900) 140%);
}
.final-cta-inner { max-width: 680px; margin: 0 auto; }
.final-cta h2 {
  font-family: var(--serif);
  font-weight: 600;
  font-size: clamp(1.7rem, 3.4vw, 2.5rem);
  line-height: 1.28;
  color: var(--ink);
  margin-bottom: 18px;
}
.final-cta h2 .mark { color: var(--brass-light); }
.final-cta > .final-cta-inner > p {
  font-size: 1rem;
  color: var(--ink-soft);
  line-height: 1.7;
  max-width: 480px;
  margin: 0 auto 36px;
}
.btn-primario.final-cta-btn {
  display: inline-flex;
  padding: 19px 44px;
  font-size: 1.05rem;
  background: linear-gradient(150deg, var(--coral-light) 0%, var(--coral) 55%, var(--coral-dark) 100%) !important;
  color: var(--ink) !important;
  border: 1px solid rgba(0,0,0,0.15) !important;
  box-shadow: 0 14px 36px var(--coral-glow) !important;
}
.btn-primario.final-cta-btn:hover {
  background: linear-gradient(150deg, var(--coral-light) 0%, var(--coral) 55%, var(--coral-dark) 100%) !important;
  filter: brightness(1.08);
  transform: translateY(-2px);
}
.final-cta-trust {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}
.final-cta-trust-item {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.76rem;
  font-weight: 500;
  color: var(--ink-soft);
  background: var(--glass-bg-soft);
  border: 1px solid var(--hairline-strong);
  padding: 8px 14px;
  border-radius: 999px;
  white-space: nowrap;
}
.final-cta-trust-item svg {
  width: 13px;
  height: 13px;
  flex-shrink: 0;
  color: var(--brass-light);
}

/* ── FOOTER ── */
.site-footer {
  position: relative;
  z-index: 1;
  background: var(--base);
  border-top: 1px solid var(--hairline);
  color: var(--ink-faint);
  padding: 56px 28px 40px;
}
.footer-inner { text-align: center; }
.footer-brand {
  display: block;
  font-family: var(--serif);
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 12px;
}
.footer-tagline {
  font-size: 0.88rem;
  color: var(--ink-soft);
  max-width: 420px;
  margin: 0 auto 22px;
  line-height: 1.6;
}
.footer-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-bottom: 26px;
}
.footer-links a {
  font-size: 0.86rem;
  font-weight: 600;
  color: var(--brass-light);
}
.footer-link-btn {
  background: none;
  border: none;
  font-family: inherit;
  font-size: 0.86rem;
  font-weight: 600;
  color: var(--ink-soft);
  cursor: pointer;
  padding: 0;
  border-bottom: 1px solid transparent;
  transition: color 0.2s, border-color 0.2s;
}
.footer-link-btn:hover { color: var(--brass-light); border-color: var(--brass-light); }
.footer-divider {
  width: 1px;
  height: 14px;
  background: var(--hairline-strong);
}
.footer-disclaimer {
  font-size: 0.76rem;
  color: rgba(237,237,239,0.52);
  max-width: 560px;
  margin: 22px auto 0;
  padding-top: 22px;
  border-top: 1px solid var(--hairline);
  line-height: 1.6;
}

/* ── PRIVACY MODAL ── */
.modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 300;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  background: rgba(3,3,4,0.72);
  backdrop-filter: blur(6px);
}
.modal-overlay[hidden] { display: none; }
.modal {
  position: relative;
  max-width: 560px;
  max-height: 82vh;
  overflow-y: auto;
  background: var(--elevated);
  border: 1px solid var(--hairline-strong);
  border-radius: var(--r);
  box-shadow: var(--shadow-lg);
  padding: 40px 36px;
}
.modal h3 {
  font-family: var(--serif);
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--brass-light);
  margin-bottom: 18px;
}
.modal p {
  font-size: 0.9rem;
  color: var(--ink-soft);
  line-height: 1.7;
  margin-bottom: 14px;
}
.modal p a { color: var(--brass-light); font-weight: 600; }
.modal p strong { color: var(--ink); }
.modal-close {
  position: absolute;
  top: 18px; right: 18px;
  width: 32px; height: 32px;
  border-radius: 50%;
  border: 1px solid var(--hairline-strong);
  background: var(--elevated-2);
  color: var(--ink-soft);
  font-size: 0.9rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s, color 0.2s;
}
.modal-close:hover { background: #212126; color: var(--ink); }

/* ── WHATSAPP FLOAT ── */
.btn-whatsapp {
  position: fixed;
  bottom: 26px; right: 26px;
  z-index: 999;
  background: #25D366;
  border-radius: 999px;
  box-shadow: 0 6px 22px rgba(37,211,102,0.4);
  width: 56px; height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.2s, box-shadow 0.2s;
}
.btn-whatsapp:hover { transform: translateY(-3px) scale(1.04); box-shadow: 0 10px 30px rgba(37,211,102,0.5); }
.btn-whatsapp svg { width: 26px; height: 26px; }

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  .hero-grid { grid-template-columns: 1fr; gap: 48px; }
  .hero-feature { width: 240px; margin: 0 auto; }
  .solution-grid { grid-template-columns: 1fr; gap: 40px; }
  .solution-photo { order: -1; }
  .catalog-grid { grid-template-columns: repeat(2, 1fr); }
  .card-curso { grid-column: 1 / -1; flex-direction: column; }
  .card-curso .card-media { width: 100%; aspect-ratio: 1 / 1; }
  .team-grid { grid-template-columns: 1fr; max-width: 400px; margin: 0 auto; }
}
@media (max-width: 640px) {
  .hero { padding: 40px 20px 64px; }
  .ticker-items { padding: 0 14px; font-size: 0.72rem; }
  .solution { padding: 64px 20px; }
  .catalog { padding: 56px 20px 80px; }
  .catalog-grid { grid-template-columns: 1fr; }
  .catalog-head { flex-direction: column; align-items: flex-start; }
  .filters { gap: 20px; }
  .spec-strip { gap: 24px; }
  .team { padding: 64px 20px; }
  .faq { padding: 64px 20px; }
  .faq-question { padding: 18px 18px; font-size: 0.9rem; }
  .final-cta { padding: 72px 20px; }
  .btn-primario.final-cta-btn { width: 100%; padding: 17px 24px; }
  .modal { padding: 30px 22px; }
}
@media (prefers-reduced-motion: reduce) {
  .card { transition: none; opacity: 1; transform: none; }
  .faq-answer { transition: none; }
}
