/* ── Fontes customizadas ── */
@font-face {
  font-family: 'PHATT';
  src: url('assets/fonts/PHATT.woff2') format('woff2'),
       url('assets/fonts/PHATT.woff') format('woff'),
       url('assets/fonts/PHATT.ttf') format('truetype');
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

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

:root {
  --bg: #0f0808;
  --surface: #1c1c1c;
  --card: #0f0808;
  --border: #2e2e2e;
  --fg: #f0f0f0;
  --muted: #888888;
  --primary: #c0392b;
  --primary-dark: #922b21;
  --primary-light: #e74c3c;
  --primary-fg: #ffffff;
  --grad-red: linear-gradient(135deg, #c0392b, #922b21);
  --shadow-red: 0 12px 40px -10px rgba(192,57,43,0.45);
  --shadow-soft: 0 10px 30px -10px rgba(0,0,0,0.5);
  --radius: 0.75rem;
}

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--fg);
  font-family: 'Poppins', system-ui, sans-serif;
  -webkit-font-smoothing: antialiased;
  min-height: 100vh;
}

/* Textos principais: PHATT */
h1, h2, h3, h4 { font-family: 'PHATT', 'Impact', impact, 'Poppins', sans-serif; letter-spacing: -0.01em; }
a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }

.container { max-width: 1280px; margin: 0 auto; padding: 0 1rem; width: 100%; }
@media (min-width: 640px)  { .container { padding: 0 1.5rem; } }
@media (min-width: 1024px) { .container { padding: 0 2rem; } }

/* ── Buttons ── */
.btn-primary {
  display: inline-flex; align-items: center; gap: 0.5rem;
  background: var(--grad-red); color: var(--primary-fg);
  border-radius: 9999px; padding: 0.75rem 1.5rem;
  font-size: 0.8rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em;
  box-shadow: var(--shadow-red); border: none; cursor: pointer;
  transition: transform 0.2s, box-shadow 0.2s;
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 18px 50px -10px rgba(192,57,43,0.7); }

.btn-ghost {
  display: inline-flex; align-items: center; gap: 0.5rem;
  background: rgba(26,26,26,0.7); color: var(--fg);
  border: 1px solid var(--border); border-radius: 9999px; padding: 0.75rem 1.5rem;
  font-size: 0.8rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em;
  cursor: pointer; transition: border-color 0.2s, background 0.2s; backdrop-filter: blur(8px);
}
.btn-ghost:hover { border-color: var(--primary); background: var(--surface); }

/* ── HEADER ── */
header {
  position: sticky; inset-x: 0; top: 0; z-index: 50;
  border-bottom: 1px solid rgba(46,46,46,0.7);
  background: rgba(20,20,20,0.85); backdrop-filter: blur(20px);
}
.header-inner {
  display: flex; align-items: center; justify-content: space-between;
  height: 4.5rem;
}

.logo { display: flex; align-items: baseline; gap: 0.625rem; margin-left: 10px; }
.logo-img-wrap {
  height: 3rem; width: auto; display: flex; align-items: first baseline;
}
.logo-img-wrap img { height: 100%; width: auto; object-fit: contain; }

nav {
  display: none; gap: 1rem; align-items: center;
  flex: 1; justify-content: center;
}
@media (min-width: 1024px) { nav { display: flex; } }
nav a {
  font-size: 0.8rem; font-weight: 600; text-transform: uppercase;
  letter-spacing: 0.1em; color: var(--muted); transition: color 0.2s;
  white-space: nowrap;
}
nav a:hover { color: var(--fg); }

.header-cta { display: none; }
@media (min-width: 1024px) { .header-cta { display: block; } }

.menu-btn {
  display: grid; place-items: center; border: 1px solid var(--border);
  border-radius: 0.5rem; padding: 0.5rem; background: none; cursor: pointer; color: var(--fg);
}
.menu-btn svg { width: 1.25rem; height: 1.25rem; stroke: currentColor; fill: none; stroke-width: 2; }
@media (min-width: 1024px) { .menu-btn { display: none; } }

#mobile-menu { display: none; border-top: 1px solid var(--border); background: var(--bg); }
#mobile-menu.open { display: block; }
#mobile-menu .inner { padding: 1rem; display: flex; flex-direction: column; gap: 0.25rem; }
#mobile-menu a { display: block; padding: 0.5rem 0.75rem; font-size: 0.875rem; font-weight: 600; color: var(--muted); border-radius: 0.5rem; transition: background 0.2s, color 0.2s; }
#mobile-menu a:hover { background: var(--surface); color: var(--fg); }
#mobile-menu .btn-wrap { padding-top: 0.75rem; }

/* ── HERO ── */
#home {
  position: relative; overflow: hidden;
  padding: 7rem 0 0;
  background: #111111;
  min-height: 88vh; display: flex; flex-direction: column;
}
@media (min-width: 1024px) { #home { padding: 5.5rem 0 0; min-height: 92vh; } }

.hero-bg-img { position: absolute; inset: 0; z-index: 0; }
.hero-bg-img img { width: 100%; height: 100%; object-fit: cover; object-position: center right; opacity: 0.6; }
.hero-bg-img::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(to right, rgba(17,17,17,0.97) 0%, rgba(17,17,17,0.7) 50%, rgba(17,17,17,0.15) 100%);
}
.hero-bg-img::before {
  content: ''; position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(to top, #111111 0%, transparent 35%);
}

.hero-glow {
  position: absolute; top: 0; right: 0; width: 50%; height: 65%;
  background: radial-gradient(ellipse at 80% 20%, rgba(192,57,43,0.15) 0%, transparent 60%);
  z-index: 0; pointer-events: none;
}

.hero-grid {
  position: relative; z-index: 2; flex: 1;
  display: grid; gap: 2rem; align-items: center;
  padding-top: 2rem; padding-bottom: 3rem;
}
@media (min-width: 1024px) { .hero-grid { grid-template-columns: 55% 45%; gap: 0; padding-bottom: 4rem; } }

.badge-pill {
  display: inline-flex; align-items: center; gap: 0.5rem;
  border: 1px solid rgba(57,164,99,0.3); background: rgba(57,164,99,0.1);
  border-radius: 9999px; padding: 0.375rem 1rem;
  font-size: 1.2rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.1em; color: rgba(57,164,99,0.8);
  margin-bottom: 1rem;
  animation: fadeSlideUp 0.6s ease both;
}
.ping { position: relative; display: inline-flex; width: 0.5rem; height: 0.5rem; }
.ping::before {
  content: ''; position: absolute; inset: 0; border-radius: 9999px;
  background: rgba(57,164,99,0.8); opacity: 0.75; animation: ping 1.4s ease-out infinite;
}
.ping::after {
  content: ''; position: relative; display: inline-flex;
  width: 0.5rem; height: 0.5rem; border-radius: 9999px; background: rgba(57,164,99,0.8);
}
@keyframes ping { 0% { transform: scale(1); opacity: 0.75; } 100% { transform: scale(2.5); opacity: 0; } }

.hero-title {
  font-family: 'Oswald', sans-serif;
  font-size: clamp(2.6rem, 6vw, 4.5rem);
  font-weight: 700; line-height: 1.0; color: #fff;
  text-transform: uppercase;
  animation: fadeSlideUp 0.7s ease 0.1s both;
}
.hero-title .gaer-word {
  color: var(--primary);
  font-size: clamp(3.5rem, 9vw, 9rem);
  display: block; line-height: 1.0;
}

.hero-sub {
  margin-top: 1rem; max-width: 30rem;
  color: rgba(200,200,200,0.85); font-size: 1.3rem; line-height: 1.6;
  animation: fadeSlideUp 0.7s ease 0.2s both;
}
.hero-sub .accent-red { color: var(--primary); font-weight: 600; }
.hero-sub .bold { color: #fff; font-weight: 600; }

.hero-feature-badges {
  margin-top: 1.5rem;
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 0.5rem; max-width: 45rem;
  animation: fadeSlideUp 0.7s ease 0.3s both;
}
@media (max-width: 639px) { .hero-feature-badges { grid-template-columns: repeat(2,1fr); } }
.hfb {
  display: flex; flex-direction: column; align-items: center; gap: 0.3rem;
  border: 1px solid rgba(255,255,255,0.08); background: rgba(20,20,20,0.6);
  border-radius: 0.625rem; padding: 0.625rem 0.5rem; text-align: center; backdrop-filter: blur(12px);
  transition: border-color 0.2s, transform 0.2s;
}
.hfb:hover { border-color: rgba(192,57,43,0.4); transform: translateY(-2px); }
.hfb svg { width: 1.1rem; height: 1.1rem; stroke: var(--primary); fill: none; stroke-width: 2; }
.hfb .ht { font-size: 1.0rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; color: #fff; line-height: 1.2; }
.hfb .hs { font-size: 0.9rem; font-weight: 500; text-transform: uppercase; letter-spacing: 0.08em; color: var(--muted); line-height: 1.2; }

.hero-btns {
  margin-top: 1.75rem; display: flex; flex-wrap: wrap; gap: 0.75rem;
  animation: fadeSlideUp 0.7s ease 0.4s both;
}

.hero-right {
  display: none; position: relative; align-items: center; justify-content: center;
}
@media (min-width: 1024px) { .hero-right { display: flex; } }

/* ── 3D PHONE ── */
.phone-scene {
  perspective: 1200px;
  display: flex; align-items: center; justify-content: center;
  width: 100%; height: 100%; min-height: 480px;
  position: relative; z-index: 3;
}
.phone-3d-wrap {
  transform-style: preserve-3d;
  animation: phone-float 4s ease-in-out infinite, phone-rotate-in 1.1s ease 0.3s both;
  position: relative;
}
@keyframes phone-float {
  0%,100% { transform: rotateY(-18deg) rotateX(6deg) translateY(0px); }
  50%      { transform: rotateY(-18deg) rotateX(6deg) translateY(-14px); }
}
@keyframes phone-rotate-in {
  from { transform: rotateY(-80deg) rotateX(20deg) translateY(30px); opacity: 0; }
  to   { transform: rotateY(-18deg) rotateX(6deg) translateY(0px); opacity: 1; }
}

.phone-body {
  width: 220px; height: 440px;
  background: linear-gradient(145deg, #2a2a2a 0%, #1a1a1a 40%, #111 100%);
  border-radius: 36px;
  border: 2px solid rgba(255,255,255,0.10);
  box-shadow:
    0 0 0 1px rgba(0,0,0,0.8),
    12px 20px 60px rgba(0,0,0,0.7),
    -4px -4px 20px rgba(255,255,255,0.04),
    inset 0 1px 0 rgba(255,255,255,0.08);
  position: relative;
  transform-style: preserve-3d;
}
.phone-body::before {
  content: '';
  position: absolute; left: -8px; top: 20px; bottom: 20px; width: 8px;
  background: linear-gradient(to right, #111, #222);
  border-radius: 4px 0 0 4px;
  transform: translateZ(-4px) rotateY(90deg) translateZ(4px);
  box-shadow: inset -2px 0 4px rgba(0,0,0,0.5);
}
.phone-body::after {
  content: '';
  position: absolute; left: 20px; right: 20px; bottom: -8px; height: 8px;
  background: linear-gradient(to bottom, #1a1a1a, #111);
  border-radius: 0 0 4px 4px;
  transform: rotateX(-90deg) translateZ(4px);
  box-shadow: 0 4px 8px rgba(0,0,0,0.8);
}

.phone-island {
  position: absolute; top: 14px; left: 50%; transform: translateX(-50%);
  width: 80px; height: 22px;
  background: #000;
  border-radius: 14px;
  z-index: 10;
  box-shadow: 0 0 0 1px rgba(255,255,255,0.06);
}

.phone-screen {
  position: absolute; inset: 6px;
  border-radius: 31px;
  background: #0a0a12;
  overflow: hidden;
  display: flex; flex-direction: column;
}

.phone-status {
  display: flex; justify-content: space-between; align-items: center;
  padding: 10px 20px 4px;
  font-size: 8px; font-weight: 700; color: rgba(255,255,255,0.7);
  flex-shrink: 0;
}
.status-icons { display: flex; gap: 4px; align-items: center; }

.phone-app-header {
  background: linear-gradient(180deg, #c0392b 0%, #922b21 100%);
  padding: 8px 14px 10px;
  display: flex; align-items: center; justify-content: space-between;
  flex-shrink: 0;
}
.phone-app-title { font-size: 10px; font-weight: 800; color: #fff; letter-spacing: 0.05em; font-family: 'Oswald', sans-serif; }
.phone-live-dot {
  display: flex; align-items: center; gap: 3px;
  font-size: 7px; color: rgba(255,255,255,0.9); font-weight: 700;
}
.phone-live-dot span {
  width: 5px; height: 5px; border-radius: 50%; background: #4ade80;
  animation: pulse-green 1.2s infinite;
}

.phone-map {
  flex: 1; position: relative; overflow: hidden;
  background: #0d1117;
}
.phone-map::before {
  content: '';
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
  background-size: 20px 20px;
}
.map-road-h { position: absolute; height: 3px; border-radius: 2px; background: rgba(255,255,255,0.08); }
.map-road-v { position: absolute; width: 3px; border-radius: 2px; background: rgba(255,255,255,0.08); }
.map-road-accent { background: rgba(192,57,43,0.25); }

.map-car-dot {
  position: absolute; width: 18px; height: 18px;
  animation: car-move 5s ease-in-out infinite;
}
@keyframes car-move {
  0%   { left: 30%; top: 40%; }
  25%  { left: 50%; top: 30%; }
  50%  { left: 65%; top: 50%; }
  75%  { left: 45%; top: 60%; }
  100% { left: 30%; top: 40%; }
}
.car-dot-inner {
  width: 18px; height: 18px; border-radius: 50%;
  background: var(--primary);
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 0 0 5px rgba(192,57,43,0.25), 0 0 12px rgba(192,57,43,0.5);
  animation: car-pulse 1.8s ease-in-out infinite;
}
@keyframes car-pulse {
  0%,100% { box-shadow: 0 0 0 4px rgba(192,57,43,0.25), 0 0 10px rgba(192,57,43,0.4); }
  50%      { box-shadow: 0 0 0 8px rgba(192,57,43,0.1), 0 0 20px rgba(192,57,43,0.6); }
}
.car-dot-inner svg { width: 9px; height: 9px; fill: #fff; }

.map-trail {
  position: absolute;
  stroke: var(--primary); stroke-width: 2; fill: none;
  stroke-dasharray: 6 3;
  opacity: 0.5;
  animation: trail-flow 2s linear infinite;
}
@keyframes trail-flow {
  from { stroke-dashoffset: 0; }
  to   { stroke-dashoffset: -18; }
}

.phone-info {
  padding: 8px 12px;
  background: #0f1118;
  border-top: 1px solid rgba(255,255,255,0.05);
  display: grid; grid-template-columns: 1fr 1fr 1fr;
  gap: 6px;
  flex-shrink: 0;
}
.info-cell { display: flex; flex-direction: column; align-items: center; gap: 1px; }
.info-val { font-size: 11px; font-weight: 800; color: #fff; font-family: 'Oswald', sans-serif; }
.info-label { font-size: 6.5px; color: rgba(255,255,255,0.4); text-transform: uppercase; letter-spacing: 0.05em; }
.info-val.green { color: #4ade80; }
.info-val.red { color: var(--primary); }

.phone-alert {
  padding: 5px 12px;
  background: rgba(192,57,43,0.15);
  border-top: 1px solid rgba(192,57,43,0.2);
  display: flex; align-items: center; gap: 6px;
  flex-shrink: 0;
}
.alert-dot { width: 5px; height: 5px; border-radius: 50%; background: var(--primary); animation: pulse-green 1s infinite; }
.phone-alert-text { font-size: 7px; color: rgba(255,255,255,0.8); font-weight: 600; }
.phone-alert-text span { color: var(--primary); }

.phone-home-indicator {
  height: 16px; display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; background: #0a0a12;
}
.home-bar { width: 60px; height: 4px; background: rgba(255,255,255,0.15); border-radius: 2px; }

.phone-shine {
  position: absolute; inset: 0; border-radius: 31px; pointer-events: none;
  background: linear-gradient(135deg, rgba(255,255,255,0.07) 0%, transparent 50%);
  z-index: 20;
}

.phone-glow {
  position: absolute; bottom: -30px; left: 50%; transform: translateX(-50%);
  width: 160px; height: 30px;
  background: rgba(192,57,43,0.25);
  border-radius: 50%;
  filter: blur(18px);
  animation: phone-float 4s ease-in-out infinite;
  z-index: 1;
}

.hero-car-img {
  position: relative; z-index: 2; width: 100%;
  animation: fadeSlideRight 0.9s ease 0.3s both;
}
.hero-car-img img {
  width: 100%; height: auto; object-fit: contain;
  filter: drop-shadow(0 20px 40px rgba(0,0,0,0.6));
}

.hero-float-badge {
  position: absolute; z-index: 5;
  background: rgba(26,26,26,0.9); border: 1px solid rgba(46,46,46,0.8);
  border-radius: 0.75rem; padding: 0.6rem 0.875rem;
  box-shadow: var(--shadow-soft); backdrop-filter: blur(12px);
  animation: fadeIn 0.8s ease 0.6s both;
}
.hero-float-badge.top-right { top: 10px; right: -10px; min-width: 155px; }
.hero-float-badge.bottom-left { bottom: -50px; left: -10px; }
.float-title {
  font-size: 1rem; font-weight: 700; text-transform: uppercase;
  letter-spacing: 0.1em; color: var(--primary);
  display: flex; align-items: center; gap: 0.35rem; margin-bottom: .3rem;
}
.float-title svg { width: 0.75rem; height: 0.75rem; stroke: var(--primary); fill: none; stroke-width: 2; }
.float-items { display: flex; flex-direction: column; gap: 0.2rem; }
.float-item { font-size: 0.8rem; color: var(--muted); }
.float-item::before { content: '•'; color: var(--primary); margin-right: 0.3rem; }
.float-online {
  display: flex; align-items: center; gap: 0.4rem;
  font-size: 0.65rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em; color: #fff;
}
.dot-green { width: 0.4rem; height: 0.4rem; border-radius: 9999px; background: #4ade80; animation: pulse-green 1.5s ease-in-out infinite; }
@keyframes pulse-green { 0%,100%{opacity:1} 50%{opacity:0.4} }

/* ── STATS BAR ── */
.stats-bar {
  position: relative; z-index: 3; background: #111;
  border-top: 1px solid var(--border);
}
.stats-inner {
  display: grid; grid-template-columns: repeat(2,1fr); gap: 0;
}
@media (min-width: 640px) { .stats-inner { grid-template-columns: repeat(4,1fr); } }
.stat-item {
  padding: 1.5rem 1.25rem; border-right: 1px solid var(--border);
  display: flex; flex-direction: column; align-items: center; text-align: center;
  transition: background 0.2s;
}
.stat-item:hover { background: var(--surface); }
.stat-item:last-child { border-right: none; }
.stat-num {
  font-family: 'Oswald', sans-serif;
  font-size: clamp(1.5rem, 4vw, 2rem); font-weight: 700; color: #fff; line-height: 1;
}
.stat-num .highlight { color: var(--primary); }
.stat-label { margin-top: 0.3rem; font-size: 1.1rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.1em; color: var(--muted); }

/* ── SECTIONS ── */
section { padding: 5rem 0; }
@media (min-width: 1024px) { section { padding: 7rem 0; } }
.section-center { text-align: center; max-width: 42rem; margin: 0 auto; }
.section-title {
  font-family: 'Oswald', sans-serif;
  font-size: clamp(2rem, 4vw, 2.5rem); font-weight: 700;
  text-transform: uppercase; line-height: 1.1; color: #000;
}
.section-title .accent { color: var(--primary); }
.section-desc { margin-top: 0.75rem; color: var(--bg); font-size: 1.5rem; line-height: 1.6; }

/* ── WHY SECTION ── */
#mercado { background: linear-gradient(to right, #ffffff, #a1a1a1); }
.why-grid { display: grid; gap: 3rem; align-items: center; margin-top: 3rem; }
@media (min-width: 1024px) { .why-grid { grid-template-columns: 1fr 1fr; } }
.why-text p { color: rgba(0,0,0,0.9); line-height: 1.75; font-size: 1.1rem; }
.why-features { display: grid; gap: 1rem; grid-template-columns: repeat(2,1fr); margin-top: 1.5rem; }
.why-feat {
  border: 1px solid var(--border); background: var(--card);
  border-radius: 0.75rem; padding: 1rem; text-align: center;
  transition: border-color 0.2s, transform 0.25s;
}
.why-feat:hover { border-color: rgba(192,57,43,0.4); transform: translateY(-3px); }
.why-feat svg { width: 1.5rem; height: 1.5rem; stroke: var(--primary); fill: none; stroke-width: 2; margin: 0 auto 0.4rem; display: block; }
.why-feat .wt { font-size: 1rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em; }
.why-feat .ws { font-size: 1rem; color: var(--muted); text-transform: uppercase; letter-spacing: 0.08em; margin-top: 0.2rem; }

.testimonial-card {
  border: 1px solid var(--border); background: var(--card);
  border-radius: 1.25rem; padding: 1.75rem; position: relative; overflow: hidden;
  /*new*/
  box-sizing: border-box;
  width: 100%;

  margin: 0 auto;
  overflow: hidden;
}
.testimonial-card::before {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(192,57,43,0.06) 0%, transparent 10%);
  pointer-events: none;
}
.testimonial-card .head {
  font-family: 'Oswald', sans-serif; font-size: 2.5rem; font-weight: 700; text-align: center;
  text-transform: uppercase; letter-spacing: 0.05em; margin-bottom: 1.25rem;
}
.testimonial-inner { display: flex; align-items: center; gap: 1rem; margin-bottom: 1.25rem; 
/*new
  flex-wrap: wrap;
  */
}
.testimonial-inner img { width: 300px; height: 300px; border-radius: 9999px; object-fit: cover; border: 2px solid var(--primary); flex-shrink: 0;}
.testimonial-card .name { font-weight: 700; font-size: 2.0rem; }
.testimonial-card .role { font-size: 1.2rem; color: var(--primary); text-transform: uppercase; letter-spacing: 0.1em; margin-top: 0.2rem; }
.testimonial-card .num { font-family: 'Oswald', sans-serif; font-size: 4rem; font-weight: 700; color: var(--primary); line-height: 1; margin-top: 0.5rem; }
.testimonial-card .num-label { font-size: 1.2rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em; }
.testimonial-card .num-sub { font-size: 1.2rem; color: var(--muted); }
blockquote { color: rgba(200,200,200,0.8); font-size: 1.2rem; line-height: 1.6; font-style: italic; border-left: 3px solid var(--primary); padding-left: 0.875rem; }
.stars { display: flex; gap: 0.2rem; margin-top: 1rem; }
.stars svg { width: 0.875rem; height: 0.875rem; fill: var(--fg); stroke: none; }
@media (max-width: 400px) 
{.testimonial-inner {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
}
/* ── MODELS ── */
#modelos { background: linear-gradient(to right, #ffffff, #a1a1a1); }
.models-grid { display: grid; gap: 1.5rem; margin-top: 3rem; }
@media (min-width: 768px) { .models-grid { grid-template-columns: repeat(3,1fr); } }
.model-card {
  border: 1px solid var(--border); background: var(--card);
  border-radius: 1.25rem; overflow: hidden;
  transition: border-color 0.25s, transform 0.25s, box-shadow 0.25s;
}
.model-card:hover { border-color: rgba(192,57,43,0.5); transform: translateY(-6px); box-shadow: 0 20px 50px -15px rgba(192,57,43,0.25); }
.model-card-img { position: relative; height: 220px; overflow: hidden; }
.model-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s ease; }
.model-card:hover .model-card-img img { transform: scale(1.05); }
.model-card-img::after { content: ''; position: absolute; inset: 0; background: linear-gradient(to top, rgba(26,26,26,0.1) 0%, transparent 60%); }
.model-badge {
  position: absolute; bottom: 0.875rem; left: 0.875rem; z-index: 2;
  display: inline-flex; align-items: center; gap: 0.3rem;
  background: var(--grad-red); border-radius: 0.375rem; padding: 0.35rem 0.75rem;
  font-size: 1.2rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; color: #fff;
  box-shadow: var(--shadow-red);
}
.model-badge svg { width: 0.875rem; height: 0.875rem; stroke: #fff; fill: none; stroke-width: 2; }
.model-body { padding: 1.25rem; }
.model-body p { font-size: 1.2rem; color: var(--muted); line-height: 1.5; }
.model-link {
  display: inline-flex; align-items: center; gap: 0.3rem; margin-top: 0.875rem;
  font-size: 1rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em; color: var(--primary);
  transition: gap 0.2s;
}
.model-link:hover { gap: 0.5rem; }
.model-link svg { width: 0.875rem; height: 0.875rem; stroke: currentColor; fill: none; stroke-width: 2.5; }

/* ── INVESTMENT ── */
#investimentos { background: linear-gradient(to right, #ffffff, #a1a1a1); }
.invest-grid { display: grid; gap: 2rem; margin-top: 3rem; }
@media (min-width: 1024px) { .invest-grid { grid-template-columns: 2fr 1fr; } }
.tiers-grid { display: grid; gap: 1rem; }
@media (min-width: 640px) { .tiers-grid { grid-template-columns: repeat(3,1fr); } }
.tier-card {
  border: 1px solid var(--border); background: var(--card);
  border-radius: 1.25rem; padding: 1.2rem; box-shadow: var(--shadow-soft);
  transition: border-color 0.2s, box-shadow 0.2s;
}
.tier-card:hover { border-color: rgba(192,57,43,0.5); box-shadow: var(--shadow-red); }
.tier-name { font-family: 'Poppins', sans-serif; font-size: 1.4rem; font-weight: 700; }
.tier-from { margin-top: 0.25rem; font-size: 1.2rem; color: var(--muted); }
.tier-price { font-family: 'Poppins', sans-serif; font-size: 2rem; font-weight: 700; color: var(--primary); margin-top: 0.375rem; }
.tier-price span { font-size: 1rem; }
.tier-divider { height: 1px; background: var(--border); margin: 1.25rem 0; }
.tier-row { margin-bottom: 0.75rem; }
.tier-row dt { font-size: 1rem; text-transform: uppercase; letter-spacing: 0.1em; color: var(--muted); }
.tier-row dd { font-size: 1.2rem; font-weight: 700; }
.tier-row dd.accent {font-size: 2rem; color: var(--primary); }

.projection {
  background: var(--grad-red); border-radius: 1.25rem; padding: 1.5rem;
  box-shadow: var(--shadow-red); color: #fff;
}
.proj-tag { display: inline-block; background: rgba(0,0,0,0.25); border-radius: 0.375rem; padding: 0.375rem 0.75rem; font-size: 2rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; }
.proj-desc { margin-top: 0.75rem; font-size: 1rem; opacity: 0.95; }
.proj-rows { margin-top: 1.25rem; display: flex; flex-direction: column; gap: 0.5rem; }
.proj-row { display: grid; grid-template-columns: 1fr 1fr 1fr; align-items: center; gap: 0.5rem; background: rgba(0,0,0,0.2); border-radius: 0.5rem; padding: 0.625rem 0.75rem; font-size: 1.2rem; }
.proj-row .month { font-size: 1rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em; opacity: 0.9; }
.proj-row .rev { font-family: 'Oswald', sans-serif; font-weight: 700; text-align: center; }
.proj-row .clients { font-size: 1rem; opacity: 0.9; text-align: right; }
.proj-note { margin-top: 0.75rem; font-size: 0.65rem; text-transform: uppercase; letter-spacing: 0.1em; opacity: 0.8; }

/* ── BENEFITS ── */
#vantagens { background: linear-gradient(to right, #0f0808, #000); }
#benefits-title {color:var(--fg)}
.benefits-grid { display: grid; gap: 2rem; align-items: center;  }
@media (min-width: 1024px) { .benefits-grid { grid-template-columns: 1fr 2fr; } }
.benefits-cards { display: grid; gap: 1rem; grid-template-columns: repeat(2,1fr); }
@media (min-width: 640px)  { .benefits-cards { grid-template-columns: repeat(3,1fr); } }
@media (min-width: 1024px) { .benefits-cards { grid-template-columns: repeat(5,1fr); } }
.benefit-card {
  border: 1px solid var(--border); background: var(--card);
  border-radius: 0.75rem; padding: 1rem; text-align: center;
  transition: transform 0.2s, border-color 0.2s;
}
@media (max-width: 639px) {
  .benefits-cards {
    grid-template-columns: repeat(2, 1fr);
  }

  .benefit-card .bt {
    font-size: 2.95rem;
  }

  .benefit-card .bs {
    font-size: 0.85rem;
  }

  .benefit-card svg {
    width: 2.75rem;
    height: 2rem;
  }
}
.benefit-card:hover { transform: translateY(-4px); border-color: rgba(192,57,43,0.4); }
.benefit-card svg { width: 3.75rem; height: 2.75rem; stroke: var(--primary); fill: none; stroke-width: 2; margin: 0 auto 0.5rem; display: block; }
.benefit-card .bt { font-size: 1.2rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em; }
.benefit-card .bs { font-size: 1.1rem; text-transform: uppercase; letter-spacing: 0.08em; color: var(--muted); }

/* ── PROCESS ── */
.process-section { background: linear-gradient(to right, #ffffff, #a1a1a1); padding: 3rem 0; }
.process-section .section-title { color: #0f0808; }
.process-steps { position: relative; margin-top: 3.5rem; text-decoration: none; }
.process-line { display: none; position: absolute; left: 0; right: 0; top: 3.5rem; height: 3px; background: linear-gradient(to right, transparent, rgba(192,57,43,0.4), transparent);}
@media (min-width: 1024px) { .process-line { display: block; } }
.steps-grid { display: grid; gap: 2rem; grid-template-columns: repeat(2,1fr); }
@media (min-width: 640px)  { .steps-grid { grid-template-columns: repeat(3,1fr); } }
@media (min-width: 1024px) { .steps-grid { grid-template-columns: repeat(6,1fr); } }
.step { text-align: center; position: relative; }
.step-icon { position: relative; width: 7rem; height: 7rem; border-radius: 9999px; background: var(--grad-red); box-shadow: var(--shadow-red); display: grid; place-items: center; margin: 0 auto; transition: transform 0.2s; }
.step:hover .step-icon { transform: scale(1.1); }
.step-icon svg { width: 3.5rem; height: 3.5rem; stroke: #fff; fill: none; stroke-width: 2; }
.step-num { position: absolute; top: -0.5rem; right: -0.5rem; width: 2.5rem; height: 2.5rem; border-radius: 9999px; border: 2px solid var(--bg); background: var(--fg); color: var(--bg); font-size: 1rem; font-weight: 700; display: grid; place-items: center; }
.step-title { margin-top: 1rem; font-size: 1.2rem; font-weight: 700;color: var(--card); text-transform: uppercase; letter-spacing: 0.08em; }
.step-sub { font-size: 1.2rem; text-transform: uppercase; letter-spacing: 0.08em; color: var(--muted); }
.visible{list-style-type: none;
}

/* ── FAQ ── */
#duvidas {background: linear-gradient(to right, #f8f7f7, #a6a6a6); padding: 3rem 0; }
@media (min-width: 1024px) { #duvidas { padding: 7rem 0; } }
.faq-wrap { max-width: 56rem; margin: 2.5rem auto 0; display: flex; flex-direction: column; gap: 0.75rem; }
.faq-item { border: 1px solid var(--border); background: var(--card); border-radius: 0.75rem; overflow: hidden; transition: border-color 0.2s; }
.faq-item:hover { border-color: rgba(192,57,43,0.3); }
.faq-btn { width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 1rem; padding: 1rem 1.25rem; text-align: left; background: none; border: none; cursor: pointer; color: var(--fg); transition: background 0.2s; }
.faq-btn:hover { background: var(--surface); }
.faq-btn span { font-size: 1.2rem; font-weight: 600; }
.faq-chevron { width: 1.25rem; height: 1.25rem; stroke: var(--primary); fill: none; stroke-width: 2; flex-shrink: 0; transition: transform 0.3s; }
.faq-chevron.open { transform: rotate(180deg); }
.faq-body { display: none; border-top: 1px solid var(--border); padding: 1rem 1.25rem; font-size: 0.875rem; color: var(--muted); line-height: 1.6; }
.faq-body.open { display: block; }

/* ── CTA ── */
#contato { position: relative; overflow: hidden; }
.cta-bg { position: absolute; inset: 0; background: var(--grad-red); }
.cta-glow { position: absolute; inset: 0; opacity: 0.3; background: radial-gradient(circle at 20% 50%, rgba(255,255,255,0.18), transparent 50%); }
.cta-inner { position: relative; display: grid; align-items: center; gap: 1.5rem; padding: 2.5rem 0; }
@media (min-width: 1024px) { .cta-inner { grid-template-columns: 1fr auto; } }
.cta-left { display: flex; align-items: center; gap: 1rem; }
.cta-icon { width: 3.5rem; height: 3.5rem; background: rgba(0,0,0,0.25); border-radius: 0.75rem; display: grid; place-items: center; flex-shrink: 0; }
.cta-icon svg { width: 1.75rem; height: 1.75rem; stroke: #fff; fill: none; stroke-width: 2; }
.cta-title { font-family: 'Oswald', sans-serif; font-size: clamp(1.5rem, 4vw, 2rem); font-weight: 700; color: #fff; }
.cta-btns { display: flex; flex-wrap: wrap; gap: 0.75rem; }
.cta-btn-white { display: inline-flex; align-items: center; gap: 0.5rem; background: #111; border-radius: 9999px; padding: 0.75rem 1.5rem; font-size: 0.8rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em; color: var(--fg); box-shadow: var(--shadow-soft); transition: transform 0.2s; }
.cta-btn-white:hover { transform: translateY(-2px); }
.cta-btn-white svg { width: 1rem; height: 1rem; stroke: var(--primary); fill: none; stroke-width: 2; }
.cta-btn-outline { display: inline-flex; align-items: center; gap: 0.5rem; border: 1px solid rgba(255,255,255,0.6); border-radius: 9999px; padding: 0.75rem 1.5rem; font-size: 0.8rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em; color: #fff; transition: background 0.2s; }
.cta-btn-outline:hover { background: rgba(0,0,0,0.2); }
.cta-btn-outline svg { width: 1rem; height: 1rem; stroke: #fff; fill: none; stroke-width: 2; }

/* ── FOOTER ── */
footer { border-top: 1px solid var(--border); background: var(--bg); padding: 2.5rem 0; }
.footer-inner { display: flex; flex-direction: column; align-items: center; justify-content: space-between; gap: 1rem; text-align: center; }
@media (min-width: 768px) { .footer-inner { flex-direction: row; text-align: left; } }
.footer-copy { font-size: 0.75rem; color: var(--muted); }
.footer-links { display: flex; gap: 1rem; font-size: 0.75rem; color: var(--muted); }
.footer-links a:hover { color: var(--primary); }

/* ── ANIMATIONS ── */
@keyframes fadeSlideUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeSlideRight {
  from { opacity: 0; transform: translateX(32px); }
  to   { opacity: 1; transform: translateX(0); }
}
@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}

/* Scroll reveal */
.reveal {
  opacity: 0; transform: translateY(28px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal.visible { opacity: 1; transform: none; }
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }

/* ── SECTION TITLE VARIANTS ── */
.section-title-dark {
  font-family: 'Oswald', 'Impact', sans-serif;
  font-size: clamp(1.8rem, 4vw, 2.5rem); font-weight: 700;
  text-transform: uppercase; line-height: 1.1; color: #111;
}
.section-title-dark .accent { color: var(--primary); }
.section-title-white {
  font-family: 'Oswald', 'Impact', sans-serif;
  font-size: clamp(1.8rem, 4vw, 2.5rem); font-weight: 700;
  text-transform: uppercase; line-height: 1.1; color: #fff;
}
.section-title-white .accent { color: var(--primary); }
.section-desc-dark { margin-top: 0.75rem; color: rgba(255,255,255,0.75); font-size: 1.1rem; line-height: 1.6; }

/* ── SOBRE MERCADO ── */
.sobre-mercado-section { background: linear-gradient(135deg, #ffffff 0%, #d8d8d8 100%); padding: 5rem 0; }
@media (min-width: 1024px) { .sobre-mercado-section { padding: 7rem 0; } }
.sobre-grid { display: grid; gap: 3rem; align-items: center; }
@media (min-width: 1024px) { .sobre-grid { grid-template-columns: 1fr 1fr; } }
.sobre-text p { color: rgba(0,0,0,0.8); line-height: 1.75; font-size: 1.05rem; }
.sobre-stats { display: flex; flex-direction: column; gap: 1.5rem; }
.anos-badge {
  display: flex; align-items: center; gap: 1rem;
  background: var(--grad-red); border-radius: 1rem; padding: 1.25rem 1.5rem;
  box-shadow: var(--shadow-red);
}
.anos-num { font-family: 'Oswald', sans-serif; font-size: 4rem; font-weight: 700; color: #fff; line-height: 1; }
.anos-label { font-size: 1rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em; color: rgba(255,255,255,0.9); line-height: 1.3; }
.sobre-stat-cards { display: grid; grid-template-columns: 1fr 1fr; gap: 0.75rem; }
.sobre-stat-card {
  border: 1px solid #ddd; background: #fff; border-radius: 0.75rem; padding: 1rem;
  text-align: center; transition: transform 0.2s, box-shadow 0.2s;
}
.sobre-stat-card:hover { transform: translateY(-3px); box-shadow: 0 8px 24px rgba(0,0,0,0.1); }
.sobre-stat-card.accent-card { background: #1a0a0a; border-color: var(--primary); }
.sobre-stat-card.accent-card .ssc-num { color: var(--primary); }
.sobre-stat-card.accent-card .ssc-label { color: rgba(255,255,255,0.75); }
.ssc-num { font-family: 'Oswald', sans-serif; font-size: 1.75rem; font-weight: 700; color: var(--primary); }
.ssc-label { font-size: 0.7rem; text-transform: uppercase; letter-spacing: 0.08em; color: #666; margin-top: 0.25rem; }
.sobre-tagline { font-size: 1rem; font-weight: 600; color: #111; text-transform: uppercase; letter-spacing: 0.05em; }
.sobre-tagline .accent-red { color: var(--primary); font-weight: 800; }

/* ── TRÊS MODELOS ── */
.tres-modelos-section { background: var(--bg); padding: 5rem 0; }
@media (min-width: 1024px) { .tres-modelos-section { padding: 7rem 0; } }
.modelos-road {
  display: flex; align-items: center; gap: 1rem; flex-wrap: wrap; justify-content: center;
}
.road-card {
  display: flex; flex-direction: column; align-items: center; text-align: center;
  background: var(--surface); border: 1px solid var(--border); border-radius: 1.25rem;
  padding: 2rem 1.5rem; min-width: 200px; flex: 1; max-width: 280px;
  transition: transform 0.25s, border-color 0.25s, box-shadow 0.25s;
}
.road-card:hover { transform: translateY(-6px); border-color: var(--primary); box-shadow: var(--shadow-red); }
.road-num {
  width: 3.5rem; height: 3.5rem; background: var(--grad-red); border-radius: 50%;
  display: grid; place-items: center; font-family: 'Oswald', sans-serif;
  font-size: 1.75rem; font-weight: 700; color: #fff; margin-bottom: 1rem;
  box-shadow: var(--shadow-red);
}
.road-title { font-size: 1rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em; color: #fff; }
.road-desc { font-size: 0.85rem; color: var(--muted); margin-top: 0.4rem; line-height: 1.5; }
.road-arrow { flex-shrink: 0; }
.road-arrow svg { width: 60px; height: 20px; }
@media (max-width: 768px) { .road-arrow { display: none; } .modelos-road { flex-direction: column; align-items: stretch; } .road-card { max-width: 100%; } }

/* ── INVESTIMENTOS DETALHADOS ── */
.invest-detalhado-section { background: linear-gradient(135deg, #ffffff 0%, #d8d8d8 100%); padding: 5rem 0; }
@media (min-width: 1024px) { .invest-detalhado-section { padding: 7rem 0; } }
.inv-tabs { display: flex; gap: 0.75rem; flex-wrap: wrap; justify-content: center; }
.inv-tab {
  padding: 0.625rem 1.75rem; border-radius: 9999px; border: 2px solid #ccc;
  background: #fff; font-size: 1rem; font-weight: 700; text-transform: uppercase;
  letter-spacing: 0.08em; cursor: pointer; color: #555;
  transition: all 0.25s;
}
.inv-tab:hover { border-color: var(--primary); color: var(--primary); }
.inv-tab.active { background: var(--grad-red); border-color: transparent; color: #fff; box-shadow: var(--shadow-red); }
.inv-panel { display: none; margin-top: 2.5rem; }
.inv-panel.active { display: block; }
.inv-grid { display: grid; gap: 2rem; }
@media (min-width: 1024px) { .inv-grid { grid-template-columns: 1fr 2fr; align-items: start; } }
.inv-summary {
  background: #111; border-radius: 1.25rem; padding: 2rem;
  border: 1px solid rgba(192,57,43,0.3);
}
.inv-summary-title { font-family: 'Oswald', sans-serif; font-size: 1.5rem; font-weight: 700; color: #fff; border: 1px solid var(--primary); border-radius: 0.5rem; padding: 0.5rem 1rem; text-align: center; margin-bottom: 1.5rem; }
.inv-summary-row { display: flex; flex-direction: column; padding: 0.75rem 0; border-bottom: 1px solid rgba(255,255,255,0.08); }
.inv-summary-row span { font-size: 1.3rem; color: rgba(255,255,255,0.6); }
.inv-summary-row strong { font-size: 1.3rem; color: #fff; margin-top: 0.2rem; }
.inv-total { margin-top: 1.5rem; text-align: center; font-size: 1.1rem; color: rgba(255,255,255,0.7); line-height: 1.4; }
.inv-total span { display: block; font-family: 'Oswald', sans-serif; font-size: 2.2rem; font-weight: 700; color: var(--primary); margin-top: 0.3rem; }
.inv-table-wrap { overflow-x: auto; border-radius: 1rem; box-shadow: 0 4px 24px rgba(0,0,0,0.1); }
.inv-table { width: 100%; border-collapse: collapse; background: #1a1a1a; border-radius: 1rem; overflow: hidden; }
.inv-table th { background: #111; color: #fff; padding: 1rem 1.5rem; font-size: 1.5rem; text-transform: uppercase; letter-spacing: 0.12em; text-align: left; }
.inv-table th:last-child { text-align: right; }
.inv-table td { padding: 0.875rem 1.5rem; font-size: 1.4rem; color: rgba(255,255,255,0.9); border-bottom: 1px solid rgba(255,255,255,0.05); }
.inv-table td:last-child { text-align: right; font-weight: 700; color: var(--primary); }
.inv-table tbody tr:last-child td { border-bottom: none; }
.inv-table tbody tr:hover td { background: rgba(192,57,43,0.05); }

/* ── PROJEÇÃO DETALHADA ── */
.projecao-detalhada-section { background: var(--fg); padding: 5rem 0; }
@media (min-width: 1024px) { .projecao-detalhada-section { padding: 7rem 0; } }
.proj-cards {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 1rem;
}
@media (min-width: 640px) { .proj-cards { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 1024px) { .proj-cards { grid-template-columns: repeat(6, 1fr); } }
.proj-month-card {
  background: #fff; border-radius: 1rem; padding: 1.25rem 1rem; text-align: center;
  box-shadow: 0 4px 24px rgba(0,0,0,0.15);
  transition: transform 0.25s, box-shadow 0.25s;
}
.proj-month-card:hover { transform: translateY(-5px); box-shadow: 0 12px 40px rgba(0,0,0,0.25); }
.proj-month-card.highlight-card { background: var(--grad-red); box-shadow: var(--shadow-red); }
.proj-month-card.highlight-card .proj-month-label { color: rgba(255,255,255,0.8); }
.proj-month-card.highlight-card .proj-month-main { color: #fff; }
.proj-month-card.highlight-card .proj-month-sub { color: rgba(255,255,255,0.75); }
.proj-month-card.highlight-card .proj-month-plus { color: rgba(255,255,255,0.9); }
.proj-month-card.highlight-card .proj-month-extra { color: #fff; }
.proj-month-label { font-size: 0.7rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; color: var(--primary); }
.proj-month-main { font-family: 'Oswald', sans-serif; font-size: 1.2rem; font-weight: 700; color: #111; margin-top: 0.3rem; }
.proj-month-sub { font-size: 0.65rem; color: #666; margin-top: 0.2rem; }
.proj-month-plus { font-size: 1.5rem; font-weight: 700; color: var(--primary); margin: 0.3rem 0; }
.proj-month-extra { font-family: 'Oswald', sans-serif; font-size: 1.1rem; font-weight: 700; color: var(--primary); }

/* ── VANTAGENS FRANQUEADO ── */
.vantagens-franq-section { background: linear-gradient(135deg, #ffffff 0%, #d8d8d8 100%); padding: 5rem 0; }
@media (min-width: 1024px) { .vantagens-franq-section { padding: 7rem 0; } }
.vantagens-franq-grid { display: grid; gap: 3rem; align-items: start; }
@media (min-width: 1024px) { .vantagens-franq-grid { grid-template-columns: 1fr 1fr; } }
.vf-left { display: flex; flex-direction: column; gap: 0; }
.vf-medal { width: 80px; height: 80px; margin-bottom: 1rem; }
.vf-list { list-style: none; margin: 1.25rem 0; display: flex; flex-direction: column; gap: 0.5rem; }
.vf-list li { display: flex; align-items: flex-start; gap: 0.5rem; font-size: 1.2rem; color: #222; line-height: 1.5; }
.vf-list li::before { content: '•'; color: var(--primary); font-size: 1.2rem; line-height: 1.2; flex-shrink: 0; }
.vf-tagline { font-size: 1.2rem; color: #333; margin-top: 0.5rem; }
.vf-right { background: var(--surface); border: 1px solid var(--border); border-radius: 1.25rem; padding: 2rem; }
.vf-benefits-title { font-family: 'Oswald', sans-serif; font-size: 2.3rem; font-weight: 700; text-transform: uppercase; color: #fff;text-align: center; line-height: 1.3; margin-bottom: 1.75rem; }
.vf-benefits-title .accent { color: var(--primary); }
.vf-benefits-list { display: flex; flex-direction: column; gap: 1.25rem; }
.vf-benefit-item { display: flex; align-items: flex-start; gap: 1rem; }
.vf-num { font-family: 'Oswald', sans-serif; font-size: 2rem; font-weight: 700; color: var(--primary); line-height: 1; flex-shrink: 0; }
.vf-benefit-text { font-size: 1.3rem; color: rgba(255,255,255,0.85); line-height: 1.5; padding-top: 0.3rem; }


/* Pessoa: entrada + flutuação suave */
#contato .cta-person {
  animation: personEntry 0.8s cubic-bezier(0.22,1,0.36,1) both,
             personFloat 4s ease-in-out 0.8s infinite;
  transform-origin: bottom center;
}
@keyframes personEntry {
  from { opacity:0; transform:translateY(40px); }
  to   { opacity:1; transform:translateY(0); }
}
@keyframes personFloat {
  0%,100% { transform:translateY(0); }
  50%     { transform:translateY(-6px); }
}

/* Logo e headline: fade descendo */
#contato .logo-box    { animation: fadeDown 0.7s 0.3s ease both; }
#contato .cta-headline{ animation: fadeDown 0.7s 0.5s ease both; }
@keyframes fadeDown {
  from { opacity:0; transform:translateY(-14px); }
  to   { opacity:1; transform:translateY(0); }
}

/* Botões: entrada da direita */
#contato .hero-btns { animation: fadeLeft 0.7s 0.6s ease both; }
@keyframes fadeLeft {
  from { opacity:0; transform:translateX(20px); }
  to   { opacity:1; transform:translateX(0); }
}

/* Hover botão primário */
.btn-primary { font-size: 1rem;
  transition: transform 0.2s ease,  box-shadow 0.2s ease, background 0.2s ease;
  box-shadow: 0 2px 10px rgba(0,0,0,0.2);
}
.btn-primary:hover {
  transform: translateY(-2px) scale(1.03);
  box-shadow: 0 6px 20px rgba(255,255,255,0.2);
}
.btn-primary:active { transform: scale(0.97); }

/* Hover botão ghost */
.btn-ghost {font-size: 1rem;
  transition: transform 0.2s ease, box-shadow 0.2s ease,
              background 0.2s ease, border-color 0.2s ease;
}
.btn-ghost:hover {
  transform: translateY(-2px) scale(1.03);
  background: rgba(255,255,255,0.13);
  border-color: rgba(255,255,255,0.5);
  box-shadow: 0 6px 20px rgba(255,255,255,0.08);
}
.btn-ghost:active { transform: scale(0.97); }

/* Ícone dos botões no hover */
.btn-primary svg, .btn-ghost svg {
  transition: transform 0.2s ease;
}
.btn-primary:hover svg, .btn-ghost:hover svg {
  transform: scale(1.15);
}

/* ── MOBILE RESPONSIVO (max-width: 639px) ── */

@media (max-width: 639px) {

  /* ── GERAL ── */
  section { padding: 3rem 0; }
  .container { padding: 0 1rem; }

  /* ── HERO ── */
  #home { padding: 5rem 0 0; min-height: auto; }
  .hero-grid { padding-top: 1.5rem; padding-bottom: 2rem; gap: 1.5rem; }
  .hero-title { font-size: clamp(2rem, 10vw, 3rem); }
  .hero-title .gaer-word { font-size: clamp(3rem, 16vw, 5rem); }
  .hero-sub { font-size: 1rem; }
  .hero-btns { flex-direction: column; }
  .hero-btns .btn-primary,
  .hero-btns .btn-ghost { width: 100%; justify-content: center; }
  .hero-feature-badges { grid-template-columns: repeat(2, 1fr); gap: 0.4rem; }
  .hfb .ht { font-size: 0.8rem; }
  .hfb .hs { font-size: 0.7rem; }
  .hero-right { display: none; }
  .hero-float-badge { display: none; }

  /* ── STATS BAR ── */
  .stats-inner { grid-template-columns: repeat(2, 1fr); }
  .stat-item { padding: 1rem 0.75rem; border-bottom: 1px solid var(--border); }
  .stat-item:nth-child(2n) { border-right: none; }
  .stat-label { font-size: 0.75rem; }

  /* ── TESTIMONIAL ── */
  .testimonial-card { padding: 1.25rem; }
  .testimonial-card .head { font-size: 1.5rem; }
  .testimonial-inner {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 0.75rem;
  }
  .testimonial-inner img { width: 120px; height: 120px; }
  .testimonial-card .name { font-size: 1.25rem; }
  .testimonial-card .role { font-size: 0.85rem; }
  .testimonial-card .num { font-size: 2.5rem; }
  .testimonial-card .num-label { font-size: 0.9rem; }
  .testimonial-card .num-sub { font-size: 0.85rem; }
  blockquote { font-size: 0.95rem; }

  /* ── WHY / MERCADO ── */
  .why-features { grid-template-columns: 1fr 1fr; gap: 0.75rem; }
  .why-feat .wt { font-size: 0.8rem; }
  .why-feat .ws { font-size: 0.75rem; }

  /* ── MODELOS (cards) ── */
  .models-grid { grid-template-columns: 1fr; }
  .model-card-img { height: 180px; }

  /* ── INVESTIMENTOS (tiers) ── */
  .tiers-grid { grid-template-columns: 1fr; }
  .tier-price { font-size: 1.5rem; }
  .proj-row { font-size: 0.85rem; }
  .proj-row .rev { font-size: 0.9rem; }

  /* ── TABELA INVEST DETALHADO ── */
  .inv-table th,
  .inv-table td { padding: 0.625rem 0.75rem; font-size: 0.85rem; }
  .inv-grid { grid-template-columns: 1fr; }
  .inv-tabs { gap: 0.4rem; }
  .inv-tab { padding: 0.5rem 1rem; font-size: 0.8rem; }

  /* ── PROJEÇÃO MENSAL ── */
  .proj-cards { grid-template-columns: repeat(2, 1fr); }
  .proj-month-main { font-size: 0.95rem; }
  .proj-month-plus { font-size: 1.1rem; }
  .proj-month-extra { font-size: 0.85rem; }

  /* ── BENEFITS ── */
  .benefits-grid { grid-template-columns: 1fr; }
  .benefits-cards { grid-template-columns: repeat(2, 1fr); }
  .benefit-card .bt { font-size: 0.85rem; }
  .benefit-card .bs { font-size: 0.8rem; }
  .benefit-card svg { width: 2.25rem; height: 1.75rem; }

  /* ── PROCESSO (steps) ── */
  .steps-grid { grid-template-columns: repeat(2, 1fr); gap: 1.5rem; }
  .step-icon { width: 5rem; height: 5rem; }
  .step-icon svg { width: 2.5rem; height: 2.5rem; }
  .step-title { font-size: 0.85rem; }
  .step-sub { font-size: 0.8rem; }

  /* ── SOBRE MERCADO ── */
  .sobre-stat-cards { grid-template-columns: 1fr 1fr; }
  .anos-num { font-size: 2.75rem; }
  .ssc-num { font-size: 1.25rem; }

  /* ── TRÊS MODELOS ── */
  .road-card { min-width: unset; max-width: 100%; }

  /* ── VANTAGENS FRANQUEADO ── */
  .vantagens-franq-grid { grid-template-columns: 1fr; }
  .vf-benefits-title { font-size: 1.5rem; }
  .vf-benefit-text { font-size: 1rem; }
  .vf-num { font-size: 1.5rem; }
  .vf-list li { font-size: 1rem; }

  /* ── FAQ ── */
  .faq-btn span { font-size: 0.95rem; }

  /* ── CTA / CONTATO ── */
  .cta-inner { grid-template-columns: 1fr; padding: 2rem 0; }
  .cta-left { flex-direction: column; text-align: center; }
  .cta-btns { justify-content: center; flex-direction: column; }
  .cta-btns .cta-btn-white,
  .cta-btns .cta-btn-outline { justify-content: center; }
  #contato > div[style] {
    grid-template-columns: 1fr !important;
    padding: 1.25rem 1rem !important;
    gap: 12px !important;
  }

  /* Esconde a coluna vazia reservada para a pessoa */
  #contato > div[style] > div:first-child {
    display: none !important;
  }

  /* Imagem da pessoa também some (sem espaço em mobile) */
  #contato img[src*="olhando"] {
    display: none !important;
  }

  /* Botões empilhados e largura total */
  #contato .hero-btns {
    flex-direction: column;
    width: 100%;
  }

  #contato .hero-btns .btn-primary,
  #contato .hero-btns .btn-ghost {
    width: 100%;
    justify-content: center;
  }


  /* ── FOOTER ── */
  .footer-links { flex-wrap: wrap; justify-content: center; }
}