/* ═══════════════════════════════════════════════════════
   KORE NEXTUS — PREMIUM CSS
   Paleta: APENAS branco + azul #0D1776
   ═══════════════════════════════════════════════════════ */

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

:root {
  --bg:         #060612;
  --bg-alt:     #0A0A1A;
  --blue:       #0D1776;
  --blue-mid:   #1525A4;
  --blue-bright:#1536f9;
  --accent:     #1536f9;
  --white:      #FFFFFF;
  --muted:      rgba(255,255,255,0.52);
  --border:     rgba(255,255,255,0.07);
  --fd: 'Syne', sans-serif;
  --fb: 'Inter', sans-serif;
  --mw: 1100px;
  --ease: cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

html { scroll-behavior: auto; }
body {
  background: radial-gradient(ellipse at 20% 0%, #0d1117 0%, #090d14 40%, #050508 100%);
  background-attachment: fixed;
  color: var(--white);
  font-family: var(--fb);
  font-size: 1rem;
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
a  { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
h1,h2,h3,h4 { font-family: var(--fd); font-weight: 700; line-height: 1.1; color: #ffffff; }

/* ── CONTAINER ── */
.container {
  width: 100%;
  max-width: var(--mw);
  margin: 0 auto;
  padding: 0 2rem;
}
.section-pad { padding: 7rem 0; }

/* ── TIPO ── */
.label {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--fd);
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--blue-bright);
  margin-bottom: 1.4rem;
}
.label::before {
  content: '';
  display: block;
  width: 24px;
  height: 1px;
  background: var(--blue-bright);
}
.accent { color: var(--blue-bright); }
h2 {
  font-size: clamp(1.8rem, 4.2vw, 2.6rem);
  letter-spacing: -0.02em;
}
h3 { font-size: clamp(1rem, 1.8vw, 1.2rem); }
p  { font-size: 0.9rem; color: var(--muted); line-height: 1.75; }

/* ── BUTTONS ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.85rem 2rem;
  border-radius: 4px;
  font-family: var(--fd);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  cursor: pointer;
  border: none;
  white-space: nowrap;
  transition: all 0.3s var(--ease);
}
.btn-primary {
  background: var(--blue-mid);
  color: var(--white);
}
.btn-primary:hover {
  background: var(--blue-bright);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(21,54,249,0.35);
}
.btn-outline {
  background: transparent;
  color: rgba(255,255,255,0.7);
  border: 1px solid rgba(255,255,255,0.2);
}
.btn-outline:hover {
  color: var(--white);
  border-color: rgba(255,255,255,0.5);
}

/* ══════════════════════════════════════════════════════
   LOADER
══════════════════════════════════════════════════════ */
#loading-screen {
  position: fixed; inset: 0;
  background: var(--bg);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  z-index: 2000;
}
.loading-logo { width: 120px; }
.loading-bar-track {
  width: 180px; height: 1px;
  background: rgba(255,255,255,0.08);
}
.loading-bar-fill {
  height: 100%;
  width: 0%;
  background: var(--blue-bright);
  transition: width 0.15s linear;
}
.loading-pct {
  font-size: 0.65rem;
  color: var(--muted);
  letter-spacing: 0.12em;
  font-family: var(--fd);
}

/* ══════════════════════════════════════════════════════
   REVEAL OVERLAY
══════════════════════════════════════════════════════ */
#reveal-overlay {
  position: fixed; inset: 0;
  background: var(--blue);
  display: flex; align-items: center; justify-content: center;
  z-index: 1500;
  clip-path: circle(150% at 50% 50%);
  pointer-events: none;
}
#reveal-overlay img { width: 64px; opacity: 0.5; }

/* ══════════════════════════════════════════════════════
   HEADER
══════════════════════════════════════════════════════ */
#header {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 900;
  transition: background 0.5s ease, border-color 0.5s ease;
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.6rem 2.5rem;
  max-width: 1400px;
  margin: 0 auto;
  transition: padding 0.4s ease;
}
#header.scrolled {
  background: rgba(6,6,18,0.9);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
}
#header.scrolled .header-inner { padding: 1rem 2.5rem; }

.header-logo .logo-v {
  height: 26px;
  width: auto;
}
.header-nav {
  display: flex;
  align-items: center;
  gap: 2.5rem;
}
.header-nav a {
  font-size: 0.78rem;
  font-weight: 500;
  color: rgba(255,255,255,0.65);
  letter-spacing: 0.02em;
  transition: color 0.2s;
}
.header-nav a:hover { color: var(--white); }
.btn-header {
  background: var(--blue-mid);
  color: var(--white);
  padding: 0.65rem 1.4rem;
  font-size: 0.75rem;
  border-radius: 4px;
  transition: background 0.2s;
}
.btn-header:hover { background: var(--blue-bright); }

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  z-index: 901;
}
.hamburger span {
  display: block; width: 24px; height: 1.5px;
  background: var(--white); border-radius: 2px;
  transition: all 0.35s ease;
}
.hamburger.active span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* Mobile nav */
.mobile-nav {
  display: none;
  flex-direction: column;
  position: fixed;
  inset: 0;
  background: var(--bg);
  z-index: 800;
  padding: 6rem 2.5rem 3rem;
  transform: translateX(100%);
  transition: transform 0.45s cubic-bezier(0.77,0,0.175,1);
}
.mobile-nav.open { transform: translateX(0); }
.mobile-nav a {
  font-family: var(--fd);
  font-size: clamp(1.8rem, 6vw, 2.4rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  padding: 1rem 0;
  border-bottom: 1px solid var(--border);
  color: rgba(255,255,255,0.8);
  transition: color 0.2s;
}
.mobile-nav a:hover { color: var(--white); }
.mobile-nav .mobile-cta {
  margin-top: 2rem;
  background: var(--blue-mid);
  color: var(--white);
  text-align: center;
  padding: 1.1rem;
  border-radius: 4px;
  font-family: var(--fd);
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.04em;
}

/* ══════════════════════════════════════════════════════
   HERO
══════════════════════════════════════════════════════ */
.hero-sequence {
  height: 800vh;
  position: relative;
}
.hero-sticky {
  height: 100vh;
  overflow: hidden;
  position: relative;
}
#hero-canvas {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  display: block;
}
.hero-gradient {
  position: absolute; inset: 0;
  background:
    linear-gradient(105deg, rgba(6,6,18,0.78) 0%, rgba(6,6,18,0.25) 50%, transparent 100%),
    linear-gradient(to top, rgba(6,6,18,0.95) 0%, rgba(6,6,18,0.4) 30%, transparent 60%);
  z-index: 1;
  pointer-events: none;
}
.hero-content {
  position: absolute;
  bottom: 10vh;
  left: 7vw;
  z-index: 2;
  max-width: 42vw;
}
.hero-label {
  font-family: var(--fd);
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.6);
  display: flex;
  align-items: center;
  gap: 0.6rem;
  margin-bottom: 1.2rem;
}
.hero-label::before {
  content: '';
  display: block;
  width: 28px; height: 1px;
  background: var(--blue-bright);
}
.hero-h1 {
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.15;
  color: #ffffff;
  margin-bottom: 1.4rem;
}
.hero-h1 em {
  font-style: normal;
  color: var(--blue-bright);
}
.hero-sub {
  font-size: clamp(0.95rem, 1.5vw, 1.1rem);
  color: rgba(255,255,255,0.65);
  line-height: 1.7;
  max-width: 34rem;
  margin-bottom: 2rem;
}
.hero-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}
.hero-scroll-hint {
  position: absolute;
  right: 2.5rem; bottom: 2.5rem;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.6rem;
}
.hero-scroll-hint span {
  font-size: 0.52rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.35);
  writing-mode: vertical-rl;
}
.scroll-line {
  width: 1px; height: 48px;
  background: linear-gradient(to bottom, rgba(255,255,255,0.5), transparent);
  animation: scrollPulse 1.8s ease-in-out infinite;
}
@keyframes scrollPulse {
  0%,100% { opacity:0.3; transform:scaleY(1); }
  50%      { opacity:1;   transform:scaleY(1.2); }
}

/* ══════════════════════════════════════════════════════
   MARQUEE
══════════════════════════════════════════════════════ */
.marquee-section {
  padding: 1.2rem 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: var(--bg);
  overflow: hidden;
}
.marquee-alt { background: var(--bg-alt); }
.marquee-outer { display: flex; overflow: hidden; }
.marquee-content {
  display: inline-flex;
  align-items: center;
  gap: 2.5rem;
  white-space: nowrap;
  padding-right: 2.5rem;
  animation: marqL 28s linear infinite;
  flex-shrink: 0;
}
.marquee-content.rev { animation: marqR 28s linear infinite; }
.marquee-content span {
  font-family: var(--fd);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
}
.marquee-content .dot {
  color: var(--blue-bright);
  font-size: 1rem;
}
@keyframes marqL { 0%{transform:translateX(0)} 100%{transform:translateX(-50%)} }
@keyframes marqR { 0%{transform:translateX(-50%)} 100%{transform:translateX(0)} }

/* ══════════════════════════════════════════════════════
   MANIFESTO
══════════════════════════════════════════════════════ */
.manifesto-section {
  background: var(--bg-alt);
  padding: 7rem 0;
  border-top: 1px solid var(--border);
}
.manifesto-section .container {
  max-width: 860px;
}
.manifesto-h2 {
  font-size: clamp(2rem, 4.2vw, 3.8rem);
  letter-spacing: -0.025em;
  line-height: 1.12;
  margin-bottom: 1.5rem;
  color: var(--white);
}
.manifesto-body {
  font-size: 1rem;
  color: rgba(255,255,255,0.5);
  max-width: 560px;
}

/* ══════════════════════════════════════════════════════
   NÚMEROS
══════════════════════════════════════════════════════ */
.numeros-section {
  padding: 5rem 0;
  background: var(--bg);
  border-top: 1px solid var(--border);
}
.numeros-grid {
  display: grid;
  grid-template-columns: repeat(4,1fr);
  gap: 0;
}
.numero-item {
  padding: 2.5rem 2rem;
  border-right: 1px solid var(--border);
  text-align: center;
}
.numero-item:last-child { border-right: none; }
.numero-val {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 0.1rem;
  margin-bottom: 0.6rem;
}
.count, .num-static {
  font-family: var(--fd);
  font-size: clamp(3rem, 5.5vw, 5rem);
  font-weight: 800;
  color: var(--white);
  line-height: 1;
  letter-spacing: -0.03em;
}
.num-suffix {
  font-family: var(--fd);
  font-size: clamp(1.8rem, 3vw, 3rem);
  font-weight: 800;
  color: var(--blue-bright);
  line-height: 1;
}
.numero-label {
  font-size: 0.75rem;
  color: var(--muted);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  font-family: var(--fd);
}

/* ══════════════════════════════════════════════════════
   PROBLEMA
══════════════════════════════════════════════════════ */
.problema-section {
  background: var(--bg-alt);
  padding: 7rem 0;
  border-top: 1px solid var(--border);
}
.problema-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 5rem;
  align-items: start;
}
.problema-text h2 {
  margin: 0.8rem 0 1.2rem;
}
.problema-text p { max-width: 380px; }
.problema-cards {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.prob-card {
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
  padding: 1.4rem 0;
  border-bottom: 1px solid var(--border);
}
.prob-card:first-child { border-top: 1px solid var(--border); }
.prob-num {
  font-family: var(--fd);
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  color: var(--blue-bright);
  flex-shrink: 0;
  margin-top: 3px;
}
.prob-card p {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.8);
  margin: 0;
}
.prob-cta { margin-top: 1.8rem; }

/* ══════════════════════════════════════════════════════
   PARA QUEM
══════════════════════════════════════════════════════ */
.fit-section {
  background: var(--bg);
  padding: 7rem 0;
  border-top: 1px solid var(--border);
}
.fit-header {
  max-width: 620px;
  margin-bottom: 3.2rem;
}
.fit-header h2 {
  margin: 0.8rem 0 0;
}
.fit-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 1px;
  border: 1px solid var(--border);
  background: var(--border);
}
.fit-list {
  background: var(--bg);
  padding: clamp(2rem, 4vw, 3rem);
}
.fit-yes {
  background:
    linear-gradient(135deg, rgba(6,151,213,0.14), rgba(13,23,118,0.06) 45%, transparent 78%),
    var(--bg);
}
.fit-no {
  background: var(--bg-alt);
}
.fit-list-head {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
}
.fit-icon {
  width: 2.1rem;
  height: 2.1rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--border);
  border-radius: 50%;
  font-family: var(--fd);
  font-size: 1rem;
  font-weight: 800;
  color: var(--blue-bright);
  flex-shrink: 0;
}
.fit-no .fit-icon {
  color: rgba(255,255,255,0.55);
}
.fit-list h3 {
  margin: 0;
  font-family: var(--fd);
  font-size: clamp(1.1rem, 1.6vw, 1.45rem);
  color: var(--white);
}
.fit-list ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
.fit-list li {
  position: relative;
  padding: 1rem 0 1rem 2rem;
  border-top: 1px solid rgba(255,255,255,0.1);
  color: rgba(255,255,255,0.78);
  font-size: 0.92rem;
  line-height: 1.65;
}
.fit-list li::before {
  content: "";
  position: absolute;
  left: 0.25rem;
  top: 1.62rem;
  width: 0.48rem;
  height: 0.48rem;
  border-radius: 50%;
  background: var(--blue-bright);
  box-shadow: 0 0 16px rgba(6,151,213,0.55);
}
.fit-no li::before {
  background: rgba(255,255,255,0.38);
  box-shadow: none;
}

/* ══════════════════════════════════════════════════════
   DIFERENCIAL
══════════════════════════════════════════════════════ */
.dif-section {
  background: var(--bg);
  padding: 7rem 0;
  border-top: 1px solid var(--border);
}
.dif-section h2 { margin: 0.8rem 0 1rem; }
.dif-intro { max-width: 500px; margin-bottom: 4rem; }
.dif-grid {
  display: grid;
  grid-template-columns: repeat(4,1fr);
  gap: 2px;
  border: 1px solid var(--border);
}
.dif-card {
  padding: 2.5rem 1.8rem;
  background: var(--bg);
  border-right: 1px solid var(--border);
  transition: background 0.3s;
  position: relative;
}
.dif-card:last-child { border-right: none; }
.dif-card:hover { background: rgba(13,23,118,0.12); }
.dif-num {
  font-family: var(--fd);
  font-size: 3rem;
  font-weight: 800;
  letter-spacing: -0.04em;
  color: rgba(21,54,249,0.15);
  line-height: 1;
  margin-bottom: 1.5rem;
}
.dif-card h3 {
  font-size: 0.95rem;
  font-weight: 700;
  margin-bottom: 0.7rem;
  color: var(--white);
}
.dif-card p { font-size: 0.82rem; }

/* ══════════════════════════════════════════════════════
   PORTFOLIO
══════════════════════════════════════════════════════ */
.porto-section {
  background: var(--bg-alt);
  padding: 7rem 0;
  border-top: 1px solid var(--border);
}
.porto-section .container { margin-bottom: 3rem; }
.porto-section h2 { margin-top: 0.8rem; }
.porto-grid {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 2px;
  background: var(--border);
}
.porto-item {
  background: var(--bg-alt);
  overflow: hidden;
  position: relative;
}
.porto-item.porto-wide { grid-column: span 2; }
.porto-img {
  overflow: hidden;
  aspect-ratio: 16/10;
  position: relative;
}
.porto-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s var(--ease), filter 0.4s;
  filter: saturate(0.8);
}
.porto-item:hover .porto-img img {
  transform: scale(1.04);
  filter: saturate(1);
}
.porto-info { padding: 1.4rem 1.8rem 1.8rem; }
.porto-tag {
  font-size: 0.58rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--blue-bright);
  font-family: var(--fd);
}
.porto-info h3 {
  font-size: 0.95rem;
  margin: 0.4rem 0 0.3rem;
  color: var(--white);
}
.porto-info p { font-size: 0.8rem; }

/* ══════════════════════════════════════════════════════
   PROVA SOCIAL
══════════════════════════════════════════════════════ */
.proof-section {
  background: var(--bg);
  padding: 7rem 0;
  border-top: 1px solid var(--border);
}
.proof-section h2 { margin: 0.8rem 0 0.8rem; }
.proof-sub { margin-bottom: 3.5rem; }
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 2px;
  background: var(--border);
  margin-bottom: 3rem;
}
.review-card {
  background: var(--bg);
  padding: 2rem 1.8rem;
}
.review-stars { color: #E8C840; font-size: 0.85rem; letter-spacing: 2px; margin-bottom: 1rem; }
.review-text  { font-size: 0.87rem; color: rgba(255,255,255,0.65); line-height: 1.7; margin-bottom: 1.4rem; }
.review-author { display: flex; align-items: center; gap: 0.8rem; }
.review-av {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: var(--blue-mid);
  color: var(--white);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--fd); font-size: 0.85rem; font-weight: 700;
  flex-shrink: 0;
}
.review-author strong { display: block; font-size: 0.82rem; color: var(--white); }
.review-author span   { display: block; font-size: 0.7rem; color: var(--muted); }
.proof-badge {
  display: flex; align-items: center; gap: 1.2rem;
  padding: 1.5rem 2rem;
  border: 1px solid var(--border);
  max-width: 540px;
}
.proof-badge img { width: 40px; height: 40px; border-radius: 50%; flex-shrink: 0; }
.proof-badge p { font-size: 0.85rem; color: rgba(255,255,255,0.65); margin: 0; }

/* ══════════════════════════════════════════════════════
   ENTREGÁVEIS
══════════════════════════════════════════════════════ */
.entrega-section {
  background: var(--bg-alt);
  padding: 7rem 0;
  border-top: 1px solid var(--border);
}
.entrega-section h2 { margin: 0.8rem 0 3.5rem; }
.entrega-grid {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 2px;
  background: var(--border);
  margin-bottom: 3.5rem;
}
.entrega-card {
  background: var(--bg-alt);
  padding: 2.2rem;
  position: relative;
}
.entrega-card.entrega-bonus {
  background: rgba(13,23,118,0.18);
}
.entrega-num {
  font-family: var(--fd);
  font-size: 0.58rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--blue-bright);
  margin-bottom: 1rem;
}
.bonus-badge {
  background: var(--blue-mid);
  color: var(--white) !important;
  padding: 0.2em 0.75em;
  border-radius: 2px;
  display: inline-block;
  letter-spacing: 0.1em;
}
.entrega-card h3 { font-size: 0.95rem; margin-bottom: 0.6rem; color: var(--white); }
.entrega-card p  { font-size: 0.82rem; }

/* ══════════════════════════════════════════════════════
   INVEST SECTION (Pagamento único)
══════════════════════════════════════════════════════ */
.invest-section {
  background: var(--bg);
  padding: 7rem 0;
  border-top: 1px solid var(--border);
}
.invest-section > .container > .label { margin-bottom: 1.2rem; }
.invest-section > .container > h2 { margin: 0.6rem 0 1rem; }
.invest-sub {
  font-size: 1.05rem;
  color: var(--muted);
  max-width: 560px;
  margin-bottom: 3.5rem;
  line-height: 1.7;
}
.invest-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border: 1px solid var(--border);
  border-radius: 2px;
  overflow: hidden;
  margin-bottom: 3rem;
}
.invest-card {
  background: var(--bg-alt);
  padding: 2.8rem 2.4rem;
  border-right: 1px solid var(--border);
  transition: background 0.3s ease;
}
.invest-card:last-child { border-right: none; }
.invest-card:hover { background: rgba(21,54,249,0.06); }
.invest-icon {
  width: 44px;
  height: 44px;
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.6rem;
  font-size: 1.2rem;
}
.invest-card h3 {
  font-family: var(--fd);
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 0.5rem;
  letter-spacing: -0.01em;
}
.invest-card p {
  font-size: 0.84rem;
  color: var(--muted);
  line-height: 1.65;
  margin-bottom: 2rem;
}
.invest-price-block {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}
.invest-from {
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  color: var(--muted);
  text-transform: uppercase;
  margin-bottom: 0.3rem;
}
.invest-price {
  font-family: var(--fd);
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 700;
  color: var(--white);
  letter-spacing: -0.03em;
  line-height: 1;
}
.invest-price span {
  font-size: 1rem;
  font-weight: 400;
  color: var(--muted);
  margin-left: 0.3rem;
}
.invest-note {
  font-size: 0.72rem;
  color: var(--muted);
  display: block;
}
.invest-cta {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;
  padding-top: 3rem;
  border-top: 1px solid var(--border);
}
.invest-disclaimer {
  font-size: 0.78rem;
  color: var(--muted);
  line-height: 1.6;
  max-width: 420px;
}
.invest-disclaimer strong {
  color: var(--white);
  display: block;
  margin-bottom: 0.2rem;
  font-size: 0.8rem;
}

/* ══════════════════════════════════════════════════════
   SOBRE
══════════════════════════════════════════════════════ */
.sobre-section {
  background: var(--bg);
  padding: 7rem 0;
  border-top: 1px solid var(--border);
}
.sobre-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 6rem;
  align-items: center;
}
.sobre-visual {
  display: flex;
  align-items: center;
  justify-content: center;
}
.sobre-graphic {
  position: relative;
  width: 320px;
  height: 320px;
  flex-shrink: 0;
}
.sg-ring {
  position: absolute; inset: 0;
  border-radius: 50%;
  border: 1px solid rgba(21,54,249,0.2);
  animation: sgSpin 20s linear infinite;
}
.sg-ring.r2 {
  inset: 28px;
  border-color: rgba(21,54,249,0.12);
  animation-direction: reverse;
  animation-duration: 13s;
}
@keyframes sgSpin { 0%{transform:rotate(0deg)} 100%{transform:rotate(360deg)} }
.sg-core {
  position: absolute; inset: 56px;
  border-radius: 50%;
  background: var(--bg-alt);
  border: 1px solid rgba(21,54,249,0.35);
  display: flex; align-items: center; justify-content: center;
}
.sg-core img { width: 64px; height: auto; }
.sg-badge {
  position: absolute;
  background: var(--bg-alt);
  border: 1px solid var(--border);
  padding: 0.5rem 0.9rem;
  display: flex; flex-direction: column;
  align-items: center; gap: 0.1rem;
  font-family: var(--fd);
  white-space: nowrap;
}
.sg-badge strong { font-size: 0.95rem; font-weight: 800; color: var(--white); }
.sg-badge span   { font-size: 0.55rem; color: var(--muted); text-transform: uppercase; letter-spacing: 0.1em; }
.sg-badge.b1 { top: 0; right: 24px; }
.sg-badge.b2 { bottom: 32px; right: -12px; }
.sg-badge.b3 { bottom: 24px; left: 8px; }

.sobre-text h2 { margin: 0.8rem 0 1.2rem; }
.sobre-text p  { margin-bottom: 1rem; }
.sobre-list {
  list-style: none;
  margin: 1.5rem 0 2.5rem;
  display: flex; flex-direction: column; gap: 0.7rem;
}
.sobre-list li {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.75);
  padding-left: 1.4rem;
  position: relative;
}
.sobre-list li::before {
  content: '→';
  position: absolute; left: 0;
  color: var(--blue-bright);
  font-size: 0.75rem;
  top: 1px;
}

/* ══════════════════════════════════════════════════════
   FAQ
══════════════════════════════════════════════════════ */
.faq-section {
  background: var(--bg-alt);
  padding: 7rem 0;
  border-top: 1px solid var(--border);
}
.faq-section h2 { margin: 0.8rem 0; }
.faq-inner { max-width: 680px; margin-top: 3rem; }
.accordion { display: flex; flex-direction: column; }
.acc-item { border-bottom: 1px solid var(--border); }
.acc-trigger {
  width: 100%;
  display: flex; align-items: center; justify-content: space-between; gap: 1.5rem;
  padding: 1.4rem 0;
  background: none; border: none; cursor: pointer;
  font-family: var(--fd);
  font-size: 0.92rem; font-weight: 600;
  color: rgba(255,255,255,0.85);
  text-align: left;
  transition: color 0.2s;
}
.acc-trigger:hover { color: var(--white); }
.acc-icon {
  font-size: 1.4rem; font-weight: 300;
  color: var(--blue-bright);
  flex-shrink: 0;
  line-height: 1;
  transition: transform 0.35s ease;
}
.acc-item.open .acc-icon { transform: rotate(45deg); }
.acc-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.42s cubic-bezier(0.4,0,0.2,1);
}
.acc-body p {
  padding-bottom: 1.4rem;
  font-size: 0.875rem;
  color: rgba(255,255,255,0.55);
  line-height: 1.75;
}

/* ══════════════════════════════════════════════════════
   CTA FINAL
══════════════════════════════════════════════════════ */
.cta-final {
  padding: 9rem 0;
  background: var(--bg);
  text-align: center;
  position: relative;
  overflow: hidden;
  border-top: 1px solid var(--border);
}
.cta-glow {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%,-50%);
  width: 700px; height: 400px;
  background: radial-gradient(ellipse, rgba(13,23,118,0.45), transparent 70%);
  pointer-events: none;
}
.cta-final .label { margin-bottom: 1.5rem; }
.cta-final h2 {
  font-size: clamp(2rem, 4.2vw, 4rem);
  letter-spacing: -0.025em;
  margin-bottom: 1.2rem;
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
}
.cta-sub {
  max-width: 440px;
  margin: 0 auto 2.5rem;
  font-size: 0.9rem;
}
.btn-cta {
  background: var(--blue-mid);
  color: var(--white);
  padding: 1.1rem 2.5rem;
  font-size: 0.88rem;
  border-radius: 4px;
  display: inline-flex; align-items: center; gap: 0.7rem;
  transition: all 0.3s var(--ease);
  position: relative;
}
.btn-cta:hover {
  background: var(--blue-bright);
  transform: translateY(-3px);
  box-shadow: 0 16px 40px rgba(21,54,249,0.3);
}
.cta-microcopy {
  margin-top: 1.2rem;
  font-size: 0.7rem;
  color: rgba(255,255,255,0.28);
  letter-spacing: 0.04em;
}

/* ══════════════════════════════════════════════════════
   FOOTER
══════════════════════════════════════════════════════ */
#footer {
  background: var(--bg-alt);
  border-top: 1px solid var(--border);
  padding-top: 3.5rem;
}
.footer-inner {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 2rem;
  padding-bottom: 2.5rem;
}
.footer-brand { display: flex; flex-direction: column; gap: 0.7rem; }
.footer-logo-wrap { display: inline-block; line-height: 0; }
.footer-logo {
  height: auto;
  width: 160px;
  max-width: 160px;
  object-fit: contain;
  display: block;
}
.footer-brand p { font-size: 0.75rem; color: var(--muted); }
.footer-links {
  display: flex; gap: 2rem; justify-content: center; flex-wrap: wrap;
}
.footer-links a { font-size: 0.75rem; color: var(--muted); transition: color 0.2s; }
.footer-links a:hover { color: var(--white); }
.footer-social { display: flex; gap: 0.75rem; justify-content: flex-end; }
.footer-social a {
  width: 32px; height: 32px;
  display: flex; align-items: center; justify-content: center;
  border: 1px solid var(--border);
  border-radius: 50%;
  color: var(--muted);
  transition: all 0.25s;
}
.footer-social a:hover { border-color: var(--blue-bright); color: var(--blue-bright); }
.footer-copy {
  border-top: 1px solid var(--border);
  padding: 1.2rem 0;
  font-size: 0.7rem;
  color: var(--muted);
}

/* ══════════════════════════════════════════════════════
   FLOAT CTA
══════════════════════════════════════════════════════ */
#float-cta {
  position: fixed;
  bottom: 1.8rem; right: 1.8rem;
  z-index: 800;
}
.float-btn {
  display: flex; align-items: center; gap: 0.55rem;
  background: var(--blue-mid);
  color: var(--white);
  padding: 0.85rem 1.5rem;
  border-radius: 100px;
  font-family: var(--fd);
  font-size: 0.75rem; font-weight: 700;
  letter-spacing: 0.04em;
  box-shadow: 0 4px 24px rgba(0,0,0,0.5);
  transition: all 0.3s var(--ease);
}
.float-btn:hover {
  background: var(--blue-bright);
  transform: translateY(-3px);
  box-shadow: 0 10px 36px rgba(21,54,249,0.4);
}

/* ══════════════════════════════════════════════════════
   RESPONSIVE — TABLET 1024px
══════════════════════════════════════════════════════ */
@media (max-width: 1024px) {
  .dif-grid {
    grid-template-columns: repeat(2,1fr);
  }
  .dif-card { border-right: none; border-bottom: 1px solid var(--border); }
  .dif-card:nth-child(odd)  { border-right: 1px solid var(--border); }
  .dif-card:last-child { border-bottom: none; }

  .sobre-grid { grid-template-columns: 1fr; gap: 3.5rem; }
  .sobre-visual { order: -1; }
  .sobre-graphic { width: 280px; height: 280px; }
  .sg-core { inset: 48px; }

  .numeros-grid { grid-template-columns: repeat(2,1fr); }
  .numero-item:nth-child(2) { border-right: none; }
  .numero-item:nth-child(3) { border-right: 1px solid var(--border); border-top: 1px solid var(--border); }
  .numero-item:nth-child(4) { border-right: none; border-top: 1px solid var(--border); }

  .hero-content { max-width: 55vw; }
}

/* ══════════════════════════════════════════════════════
   RESPONSIVE — MOBILE 768px
══════════════════════════════════════════════════════ */
/* ── LATEST WORK ─────────────────────────────── */
.work-layout {
  display: grid;
  grid-template-columns: 38% 62%;
  max-width: 1200px;
  margin: 4rem auto 0;
}
.work-tabs-col {
  padding-right: 2rem;
}
.work-tab {
  display: flex;
  gap: 1.5rem;
  padding: 2rem 1.5rem;
  border-top: 1px solid rgba(255,255,255,0.08);
  cursor: pointer;
  transition: background 0.3s;
}
.work-tab:last-child {
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.work-tab.active,
.work-tab:hover {
  background: rgba(255,255,255,0.03);
}
.tab-num {
  font-family: 'Syne', sans-serif;
  font-size: 0.85rem;
  font-weight: 700;
  color: rgba(255,255,255,0.25);
  min-width: 2rem;
  padding-top: 4px;
  transition: color 0.3s;
}
.work-tab.active .tab-num {
  color: var(--accent, #1536f9);
}
.tab-content h3 {
  font-family: 'Syne', sans-serif;
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 0.3rem;
}
.tab-tag {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  opacity: 0.45;
  margin-bottom: 0.5rem;
}
.tab-desc {
  font-size: 0.9rem;
  opacity: 0.6;
  line-height: 1.6;
}
.work-image-col {
  position: sticky;
  top: 0;
  height: 100vh;
  overflow: clip;
  display: flex;
  align-items: center;
  padding: 2rem;
}
.work-images {
  position: relative;
  width: 100%;
  height: 70vh;
  border-radius: 16px;
  overflow: clip;
}
.work-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transform: scale(0.97);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.work-img.active {
  opacity: 1;
  transform: scale(1);
}
@media (max-width: 767px) {
  .work-layout { grid-template-columns: 1fr; }
  .work-image-col { position: relative; height: auto; padding: 0; margin-top: 1.5rem; }
  .work-images { height: 55vw; min-height: 220px; }
  .work-tabs-col { padding-right: 0; }
}

/* ── PRICING ─────────────────────────────────── */
.pricing-toggle {
  display: flex;
  background: rgba(255,255,255,0.05);
  border-radius: 100px;
  padding: 4px;
  width: fit-content;
  margin: 2.5rem auto;
}
.toggle-btn {
  background: transparent;
  border: none;
  padding: 0.5rem 1.5rem;
  border-radius: 100px;
  color: rgba(255,255,255,0.45);
  cursor: pointer;
  font-family: 'Inter', sans-serif;
  font-size: 0.9rem;
  transition: all 0.3s;
}
.toggle-btn.active {
  background: var(--accent, #1536f9);
  color: #fff;
}
.toggle-badge {
  background: rgba(255,255,255,0.2);
  padding: 2px 7px;
  border-radius: 100px;
  font-size: 0.7rem;
  margin-left: 4px;
}
.pricing-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  max-width: 820px;
  margin: 0 auto;
}
.pricing-card {
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 16px;
  padding: 2.5rem;
  position: relative;
  overflow: clip;
}
.pricing-card.popular {
  border-color: var(--accent, #1536f9);
}
.card-top-line {
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: rgba(255,255,255,0.12);
  border-radius: 16px 16px 0 0;
}
.accent-line {
  background: var(--accent, #1536f9);
}
.popular-badge {
  position: absolute;
  top: 1.2rem; right: 1.2rem;
  background: var(--accent, #1536f9);
  color: #fff;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  padding: 4px 10px;
  border-radius: 100px;
}
.plan-name {
  font-family: 'Syne', sans-serif;
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  opacity: 0.5;
  margin-bottom: 1.2rem;
}
.plan-price { margin-bottom: 2rem; }
.price-val {
  font-family: 'Syne', sans-serif;
  font-size: 2.2rem;
  font-weight: 800;
}
.price-period {
  opacity: 0.45;
  font-size: 0.9rem;
  margin-left: 4px;
}
.plan-features {
  list-style: none;
  padding: 0;
  margin-bottom: 2rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.plan-features li {
  font-size: 0.9rem;
  opacity: 0.7;
  padding-left: 1.2rem;
  position: relative;
  line-height: 1.5;
}
.plan-features li::before {
  content: '→';
  position: absolute;
  left: 0;
  opacity: 0.4;
}
.plan-btn {
  width: 100%;
  text-align: center;
  display: block;
}
.bespoke-block {
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 16px;
  padding: 2rem 2.5rem;
  max-width: 820px;
  margin: 1.5rem auto 0;
}
.bespoke-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 2rem;
}
.bespoke-inner h3 {
  font-family: 'Syne', sans-serif;
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 0.3rem;
}
.bespoke-inner p { opacity: 0.55; font-size: 0.9rem; }
@media (max-width: 767px) {
  .pricing-grid { grid-template-columns: 1fr; }
  .bespoke-inner { flex-direction: column; text-align: center; }
}

@media (max-width: 768px) {
  :root { --mw: 100%; }
  .container { padding: 0 1.5rem; }
  .section-pad { padding: 4.5rem 0; }

  /* Header */
  .header-inner { padding: 1.2rem 1.5rem; }
  #header.scrolled .header-inner { padding: 0.85rem 1.5rem; }
  .header-nav, .btn-header { display: none; }
  .hamburger { display: flex; }
  .mobile-nav { display: flex; }

  /* Hero */
  .hero-content {
    max-width: 88vw;
    left: 1.5rem;
    right: 1.5rem;
    bottom: 8vh;
  }
  .hero-h1 { font-size: clamp(1.6rem, 6vw, 2.2rem); margin-bottom: 1rem; }
  .hero-sub { display: none; } /* Esconder subtítulo no mobile para não sobrecarregar */
  .hero-actions { gap: 0.75rem; }
  .hero-actions .btn-outline { display: none; } /* Só CTA principal no mobile */
  .hero-scroll-hint { display: none; }

  /* Marquee */
  .marquee-content span { font-size: 0.65rem; }

  /* Manifesto */
  .manifesto-section { padding: 4.5rem 0; }
  .manifesto-h2 { font-size: clamp(1.8rem, 6.5vw, 2.6rem); }

  /* Números */
  .numeros-section { padding: 3.5rem 0; }
  .numeros-grid {
    grid-template-columns: repeat(2,1fr);
  }
  .numero-item {
    border-right: none;
    border-bottom: 1px solid var(--border);
    padding: 1.8rem 1rem;
  }
  .numero-item:nth-child(odd)  { border-right: 1px solid var(--border); }
  .numero-item:nth-child(3),
  .numero-item:nth-child(4) { border-bottom: none; }

  /* Problema */
  .problema-section { padding: 4.5rem 0; }
  .problema-grid { grid-template-columns: 1fr; gap: 2.5rem; }

  /* Para quem */
  .fit-section { padding: 4.5rem 0; }
  .fit-header { margin-bottom: 2.4rem; }
  .fit-grid {
    grid-template-columns: 1fr;
    background: transparent;
    gap: 1rem;
    border: none;
  }
  .fit-list {
    border: 1px solid var(--border);
    padding: 1.8rem;
  }
  .fit-list-head { align-items: flex-start; }
  .fit-list li {
    padding-left: 1.7rem;
    font-size: 0.88rem;
  }

  /* Diferencial */
  .dif-section { padding: 4.5rem 0; }
  .dif-grid { grid-template-columns: 1fr; border: none; gap: 0; }
  .dif-card {
    border-right: none !important;
    border-bottom: 1px solid var(--border) !important;
    border-left: none;
    padding: 2rem 0;
    background: transparent !important;
  }

  /* Portfolio */
  .porto-section { padding: 4.5rem 0; }
  .porto-grid {
    grid-template-columns: 1fr;
    background: transparent; gap: 1.5rem;
  }
  .porto-item.porto-wide { grid-column: span 1; }
  .porto-item { border: 1px solid var(--border); }

  /* Reviews */
  .proof-section { padding: 4.5rem 0; }
  .reviews-grid {
    grid-template-columns: 1fr;
    background: transparent; gap: 1.2rem;
  }
  .review-card { border: 1px solid var(--border); }

  /* Invest */
  .invest-section { padding: 4.5rem 0; }
  .invest-grid { grid-template-columns: 1fr; }
  .invest-card { border-right: none; border-bottom: 1px solid var(--border); }
  .invest-card:last-child { border-bottom: none; }
  .invest-cta { flex-direction: column; align-items: flex-start; gap: 1rem; }

  /* Entregáveis */
  .entrega-section { padding: 4.5rem 0; }
  .entrega-grid {
    grid-template-columns: 1fr;
    background: transparent; gap: 1.2rem;
  }
  .entrega-card { border: 1px solid var(--border); }

  /* Sobre */
  .sobre-section { padding: 4.5rem 0; }
  .sobre-grid { grid-template-columns: 1fr; gap: 3rem; }
  .sobre-visual { order: -1; }
  .sobre-graphic { width: 240px; height: 240px; }
  .sg-core { inset: 42px; }
  .sg-core img { width: 56px; }
  .sg-badge.b1 { top: -6px; right: 10px; }
  .sg-badge.b2 { bottom: 20px; right: -8px; }
  .sg-badge.b3 { bottom: 14px; left: 4px; }

  /* FAQ */
  .faq-section { padding: 4.5rem 0; }
  .faq-inner { max-width: 100%; }

  /* CTA Final */
  .cta-final { padding: 6rem 0; }
  .cta-final h2 { font-size: clamp(1.9rem, 6.5vw, 2.8rem); }
  .btn-cta { padding: 1rem 1.8rem; font-size: 0.82rem; }

  /* Footer */
  .footer-inner {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 1.5rem;
  }
  .footer-logo-wrap { margin: 0 auto; }
  .footer-logo { width: 140px; }
  .footer-links { justify-content: center; gap: 1.2rem; }
  .footer-social { justify-content: center; }

  /* Float CTA */
  #float-cta { bottom: 1.2rem; right: 1rem; left: 1rem; }
  .float-btn { justify-content: center; border-radius: 4px; width: 100%; }
}

/* ── SOBRE — background image (legacy, superseded) ── */
.sobre-has-bg { position: relative; }

/* ── SECTION BACKGROUND VARIATIONS ──────────────── */
.manifesto-section {
  background: linear-gradient(135deg, rgba(21,54,249,0.06) 0%, transparent 60%);
}
.dif-section {
  background: linear-gradient(225deg, rgba(21,54,249,0.05) 0%, transparent 50%);
}
.numeros-section {
  background: linear-gradient(180deg, rgba(21,54,249,0.04) 0%, transparent 100%);
}
.proof-section {
  background: linear-gradient(135deg, rgba(21,54,249,0.05) 0%, transparent 60%);
}
.cta-final {
  background: radial-gradient(ellipse at 50% 0%, rgba(21,54,249,0.18) 0%, transparent 70%);
}

/* ── SECTION GLOWS (CAMBIO 3) ───────────────────── */
.section-glow {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  opacity: 0;
}
.glow-manifesto {
  background: radial-gradient(ellipse at 30% 50%, rgba(21,54,249,0.15) 0%, transparent 65%);
}
.glow-dif {
  background: radial-gradient(ellipse at 70% 50%, rgba(21,54,249,0.12) 0%, transparent 65%);
}
.glow-cta {
  background: radial-gradient(ellipse at 50% 30%, rgba(21,54,249,0.25) 0%, transparent 60%);
}
.manifesto-section,
.dif-section,
.cta-final {
  position: relative;
}
.manifesto-section .container,
.dif-section .container,
.cta-final .container {
  position: relative;
  z-index: 1;
}

/* ── SOBRE FOTO (CAMBIO 5) ───────────────────────── */
.sobre-foto-wrap {
  position: relative;
  border-radius: 20px;
  overflow: clip;
  width: 100%;
  max-height: 560px;
}
.sobre-foto-img {
  width: 100%;
  height: 100%;
  max-height: 560px;
  object-fit: cover;
  object-position: center;
  border-radius: 20px;
  display: block;
}
.sobre-foto-glow {
  position: absolute;
  bottom: -20px;
  left: 50%;
  transform: translateX(-50%);
  width: 80%;
  height: 60px;
  background: rgba(21,54,249,0.3);
  filter: blur(30px);
  border-radius: 50%;
  pointer-events: none;
}

/* ── FAQ CENTRADO (CAMBIO 10) ────────────────────── */
.faq-section .container {
  max-width: 720px;
  margin-inline: auto;
  text-align: center;
}
.faq-section .accordion {
  text-align: left;
  margin-top: 2.5rem;
}

/* ── PORTAFOLIO: links envolvendo imagens (CAMBIO 1) ── */
.work-img-link {
  position: absolute;
  inset: 0;
  display: block;
  z-index: 0;
  opacity: 0;
  transform: scale(0.97);
  transition: opacity 0.6s ease, transform 0.6s ease;
  text-decoration: none;
  pointer-events: none;
}
.work-img-link.active {
  z-index: 1;
  opacity: 1;
  transform: scale(1);
  pointer-events: auto;
}
.work-img-link img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 1 !important;
  transform: none !important;
  transition: none !important;
}

/* ── DEPOIMENTOS SLIDER (CAMBIO 2) ──────────────────── */
#prova {
  padding: 5rem 0;
  background: radial-gradient(ellipse at 50% 0%, rgba(21,54,249,0.08) 0%, transparent 70%);
}
.reviews-header {
  text-align: center;
  margin-bottom: 3rem;
}
.reviews-header h2 {
  margin-bottom: 0.75rem;
}
.proof-google-bar {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  margin-top: 1rem;
}
.proof-google-bar img {
  height: 22px;
  width: auto;
}
.proof-google-bar span {
  font-size: 0.95rem;
  color: rgba(255,255,255,0.65);
}
.proof-stars {
  color: #facc15;
  font-size: 1.1rem;
  letter-spacing: 1px;
}
.reviews-slider-wrap {
  position: relative;
  overflow: clip;
}
.reviews-track {
  display: flex;
  transition: transform 0.55s cubic-bezier(0.4,0,0.2,1);
}
.reviews-slide {
  min-width: 100%;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  padding: 0 0.5rem;
}
@media (max-width: 860px) {
  .reviews-slide {
    grid-template-columns: 1fr;
  }
}
.review-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 16px;
  padding: 1.5rem 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  transition: border-color 0.3s;
}
.review-card:hover {
  border-color: rgba(21,54,249,0.35);
}
.review-card-stars {
  color: #facc15;
  font-size: 1rem;
}
.review-card-text {
  font-size: 0.92rem;
  line-height: 1.65;
  color: rgba(255,255,255,0.78);
  flex: 1;
}
.review-card-author {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  margin-top: 0.5rem;
}
.review-card-avatar {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(21,54,249,0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.95rem;
  color: #fff;
  flex-shrink: 0;
}
.review-card-name {
  font-size: 0.88rem;
  font-weight: 600;
  color: #fff;
}
.review-card-role {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.45);
}
.reviews-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.25rem;
  margin-top: 2.25rem;
}
.reviews-btn {
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.12);
  color: #fff;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  transition: background 0.25s, border-color 0.25s;
}
.reviews-btn:hover {
  background: rgba(21,54,249,0.25);
  border-color: rgba(21,54,249,0.5);
}
.reviews-dots {
  display: flex;
  gap: 0.5rem;
}
.reviews-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,0.25);
  border: none;
  cursor: pointer;
  transition: background 0.3s, transform 0.3s;
  padding: 0;
}
.reviews-dot.active {
  background: #1536f9;
  transform: scale(1.3);
}

/* ── SELLO DE GARANTÍA (CAMBIO 3) ───────────────────── */
.garantia-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.65rem;
  margin-top: 1.5rem;
}
.garantia-wrap img {
  width: 56px;
  height: 56px;
  object-fit: contain;
  flex-shrink: 0;
}
.garantia-wrap p {
  font-size: 0.8rem;
  line-height: 1.45;
  color: rgba(255,255,255,0.55);
  margin: 0;
}

/* ── REVIEWS SLIDER — moderno (CAMBIO 2) ────────────── */
.reviews-slider-wrap {
  margin-top: 3rem;
  position: relative;
  overflow: clip;
}
.reviews-slider {
  display: flex;
  transition: transform 0.55s cubic-bezier(0.4,0,0.2,1);
  will-change: transform;
}
.review-slide {
  flex: 0 0 100%;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
@media (max-width: 767px) {
  .review-slide { grid-template-columns: 1fr; }
}
.review-card-modern {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 16px;
  padding: 1.8rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  transition: border-color 0.3s, transform 0.3s;
}
.review-card-modern:hover {
  border-color: rgba(21,54,249,0.35);
  transform: translateY(-4px);
}
.review-card-top {
  display: flex;
  align-items: center;
  gap: 0.8rem;
}
.review-av-modern {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, #1536f9, #0a1fa8);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  color: #fff;
  flex-shrink: 0;
}
.review-author-info { flex: 1; }
.review-author-info strong {
  display: block;
  font-family: 'Syne', sans-serif;
  font-size: 0.95rem;
  color: #ffffff;
}
.review-author-info span {
  font-size: 0.78rem;
  opacity: 0.5;
}
.review-stars-modern {
  color: #f5a623;
  font-size: 0.85rem;
  letter-spacing: 1px;
}
.review-text-modern {
  font-size: 0.92rem;
  line-height: 1.7;
  opacity: 0.75;
  color: #ffffff;
  flex: 1;
}
.review-card-footer {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding-top: 0.8rem;
  border-top: 1px solid rgba(255,255,255,0.06);
}
.google-logo-review {
  height: 18px;
  width: auto;
  opacity: 0.85;
}
.review-via {
  font-size: 0.72rem;
  opacity: 0.45;
}
.slider-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-top: 2rem;
}
.slider-btn {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  color: #ffffff;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 1rem;
  transition: all 0.3s;
  display: flex;
  align-items: center;
  justify-content: center;
}
.slider-btn:hover {
  background: #1536f9;
  border-color: #1536f9;
}
.slider-dots { display: flex; gap: 6px; }
.slider-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(255,255,255,0.2);
  cursor: pointer;
  transition: all 0.3s;
  border: none;
  padding: 0;
}
.slider-dot.active {
  background: #1536f9;
  width: 20px;
  border-radius: 3px;
}
.proof-google-bar {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  margin-top: 3rem;
  padding: 1.5rem 2rem;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 16px;
  flex-wrap: wrap;
}
.google-logo-bar { height: 28px; width: auto; }
.proof-rating {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex: 1;
}
.proof-score {
  font-family: 'Syne', sans-serif;
  font-size: 1.8rem;
  font-weight: 800;
  color: #ffffff;
}
.proof-stars { color: #f5a623; font-size: 1rem; }
.proof-count { font-size: 0.85rem; opacity: 0.5; }
.proof-google-btn { white-space: nowrap; }
@media (max-width: 767px) {
  .proof-google-bar { flex-direction: column; text-align: center; }
  .proof-rating { justify-content: center; }
}

/* ── GARANTIA BLOCK (CAMBIO 3) ───────────────────────── */
.garantia-block {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.8rem;
  padding: 1.5rem;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 16px;
  text-align: center;
}
.garantia-img {
  width: 72px;
  height: auto;
}
.garantia-text strong {
  display: block;
  font-family: 'Syne', sans-serif;
  font-size: 0.9rem;
  color: #ffffff;
  margin-bottom: 0.3rem;
}
.garantia-text span {
  font-size: 0.78rem;
  opacity: 0.55;
  line-height: 1.5;
}

/* ── SITE SEGURO BAR (CAMBIO 4) ──────────────────────── */
.site-seguro-bar {
  display: flex;
  justify-content: center;
  padding: 1rem 0 1.5rem;
  opacity: 0.7;
  transition: opacity 0.3s;
}
.site-seguro-bar:hover { opacity: 1; }
.site-seguro-img {
  height: 40px;
  width: auto;
}
