/* ============================================
   RESET & VARIÁVEIS
============================================ */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  /* Paleta extraída da logo */
  --navy-deep: #0A1428;
  --navy: #142850;
  --navy-light: #1e3a6b;
  --gold: #F5C518;
  --gold-bright: #FFD740;
  --gold-dark: #C99A0F;
  --white: #FFFFFF;
  --off-white: #F5F5F0;
  --gray-line: rgba(255,255,255,0.1);

  /* Tipografia */
  --font-display: 'Bebas Neue', 'Archivo Black', sans-serif;
  --font-body: 'Outfit', sans-serif;
  --font-impact: 'Archivo Black', sans-serif;

  /* Espaçamentos */
  --max-width: 1280px;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  background: var(--navy-deep);
  color: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }

/* ============================================
   NAVBAR
============================================ */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 18px 32px;
  background: rgba(10, 20, 40, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--gray-line);
  transition: padding 0.3s ease;
}

.navbar.scrolled {
  padding: 12px 32px;
}

.nav-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-display);
  font-size: 22px;
  letter-spacing: 2px;
  color: var(--gold);
  height: 50px;
}

.nav-logo-img {
  height: 50px;
  width: auto;
  object-fit: contain;
}

.nav-logo-mark {
  width: 38px; height: 38px;
  background: var(--gold);
  color: var(--navy-deep);
  display: grid; place-items: center;
  font-family: var(--font-impact);
  font-size: 22px;
  border-radius: 6px;
  position: relative;
  overflow: hidden;
}
.nav-logo-mark::after {
  content: '';
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    90deg,
    transparent 0 4px,
    rgba(10,20,40,0.15) 4px 6px
  );
  pointer-events: none;
}

.nav-links {
  display: flex;
  gap: 32px;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.nav-links a {
  position: relative;
  padding: 4px 0;
  transition: color 0.2s;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -2px; left: 0;
  width: 0; height: 2px;
  background: var(--gold);
  transition: width 0.3s ease;
}

.nav-links a:hover { color: var(--gold); }
.nav-links a:hover::after { width: 100%; }

.nav-cta {
  background: var(--gold);
  color: var(--navy-deep);
  padding: 11px 22px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  transition: transform 0.2s, box-shadow 0.2s;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.nav-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(245, 197, 24, 0.4);
}

.menu-toggle {
  display: none;
  width: 36px; height: 36px;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
}
.menu-toggle span {
  display: block;
  height: 2px;
  background: var(--gold);
  transition: 0.3s;
}

@media (max-width: 880px) {
  .nav-links { display: none; }
  .nav-cta { display: none; }
  .menu-toggle { display: flex; }
  .navbar { padding: 14px 20px; }
}

/* Mobile menu */
.mobile-menu {
  position: fixed;
  top: 70px; left: 0; right: 0;
  background: var(--navy-deep);
  padding: 24px;
  border-bottom: 1px solid var(--gray-line);
  display: none;
  flex-direction: column;
  gap: 18px;
  z-index: 99;
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  font-family: var(--font-display);
  font-size: 22px;
  letter-spacing: 2px;
  color: var(--white);
  padding: 8px 0;
  border-bottom: 1px solid var(--gray-line);
}
.mobile-menu .mobile-cta {
  background: var(--gold);
  color: var(--navy-deep);
  padding: 14px;
  border-radius: 999px;
  font-weight: 700;
  text-align: center;
  text-transform: uppercase;
  font-family: var(--font-body);
  letter-spacing: 1px;
  font-size: 14px;
  border: none;
}

/* ============================================
   HERO SECTION
============================================ */
.hero {
  position: relative;
  min-height: 100vh;
  padding: 140px 32px 80px;
  display: flex;
  align-items: center;
  overflow: hidden;
  background:
    radial-gradient(ellipse at 80% 30%, rgba(245, 197, 24, 0.12), transparent 50%),
    radial-gradient(ellipse at 20% 80%, rgba(20, 40, 80, 0.6), transparent 50%),
    var(--navy-deep);
}

/* Padrão de estrada animado no fundo */
.hero-road-bg {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  pointer-events: none;
  opacity: 0.08;
  background-image:
    repeating-linear-gradient(
      90deg,
      transparent 0 80px,
      var(--gold) 80px 120px,
      transparent 120px 200px
    );
  background-size: 200px 100%;
  background-position: 0 50%;
  background-repeat: no-repeat;
  background-position-y: 50%;
}

.hero-grid-bg {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(245,197,24,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(245,197,24,0.04) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
  mask-image: radial-gradient(ellipse at center, black 30%, transparent 80%);
}

.hero-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  width: 100%;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 2;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 16px;
  border: 1px solid var(--gold);
  border-radius: 999px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 28px;
  animation: fadeInUp 0.8s ease-out;
}
.hero-badge .pulse {
  width: 8px; height: 8px;
  background: var(--gold);
  border-radius: 50%;
  position: relative;
}
.hero-badge .pulse::after {
  content: '';
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  background: var(--gold);
  opacity: 0.4;
  animation: pulseRing 1.6s infinite;
}
@keyframes pulseRing {
  0% { transform: scale(0.8); opacity: 0.5; }
  100% { transform: scale(2); opacity: 0; }
}

.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(48px, 7vw, 96px);
  line-height: 0.95;
  letter-spacing: 1px;
  color: var(--white);
  margin-bottom: 24px;
  animation: fadeInUp 0.8s ease-out 0.1s both;
}

.hero h1 .accent {
  color: var(--gold);
  position: relative;
  display: inline-block;
}
.hero h1 .accent::after {
  content: '';
  position: absolute;
  left: 0; right: 0; bottom: 4px;
  height: 6px;
  background: var(--gold);
  opacity: 0.25;
  z-index: -1;
}

.hero h1 .stroke {
  -webkit-text-stroke: 2px var(--gold);
  color: transparent;
}

.hero-sub {
  font-size: clamp(16px, 1.5vw, 19px);
  line-height: 1.6;
  color: rgba(255,255,255,0.75);
  max-width: 540px;
  margin-bottom: 36px;
  animation: fadeInUp 0.8s ease-out 0.2s both;
}

.hero-cta-row {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 48px;
  animation: fadeInUp 0.8s ease-out 0.3s both;
}

.btn-primary {
  background: var(--gold);
  color: var(--navy-deep);
  padding: 18px 32px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 15px;
  letter-spacing: 1px;
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: all 0.3s;
  position: relative;
  overflow: hidden;
}

.btn-primary::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent 30%, rgba(255,255,255,0.5) 50%, transparent 70%);
  transform: translateX(-100%);
  transition: transform 0.6s;
}

.btn-primary:hover::before { transform: translateX(100%); }
.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(245, 197, 24, 0.45);
}

.btn-secondary {
  background: transparent;
  color: var(--white);
  padding: 18px 32px;
  border-radius: 999px;
  border: 2px solid rgba(255,255,255,0.25);
  font-weight: 600;
  font-size: 15px;
  letter-spacing: 1px;
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: all 0.3s;
}

.btn-secondary:hover {
  border-color: var(--gold);
  color: var(--gold);
  transform: translateY(-3px);
}

.hero-stats {
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
  animation: fadeInUp 0.8s ease-out 0.4s both;
}

.stat {
  position: relative;
  padding-left: 20px;
  border-left: 3px solid var(--gold);
}

.stat-num {
  font-family: var(--font-display);
  font-size: 36px;
  letter-spacing: 1px;
  color: var(--gold);
  line-height: 1;
}

.stat-label {
  font-size: 12px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.6);
  margin-top: 4px;
}

/* Hero visual / cartão de habilitação */
.hero-visual {
  position: relative;
  animation: fadeInRight 1s ease-out 0.3s both;
}

.cnh-card {
  position: relative;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
  border: 2px solid var(--gold);
  border-radius: 20px;
  padding: 32px;
  box-shadow:
    0 30px 60px rgba(0,0,0,0.4),
    inset 0 1px 0 rgba(255,255,255,0.1);
  transform: rotate(-3deg);
  max-width: 440px;
  margin-left: auto;
  transition: transform 0.4s ease;
}

.cnh-card:hover {
  transform: rotate(0deg) scale(1.02);
}

.cnh-card::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 20px;
  background: repeating-linear-gradient(
    45deg,
    transparent 0 20px,
    rgba(245,197,24,0.03) 20px 21px
  );
  pointer-events: none;
}

.cnh-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 28px;
  padding-bottom: 16px;
  border-bottom: 2px dashed rgba(245,197,24,0.3);
}

.cnh-header-text {
  font-family: var(--font-display);
  font-size: 14px;
  letter-spacing: 2px;
  color: var(--gold);
  line-height: 1.2;
}
.cnh-header-text strong {
  display: block;
  font-size: 22px;
  color: var(--white);
}

.cnh-shield-logo {
  width: 100px;
  height: 50px;
  object-fit: contain;
}

.cnh-photo {
  display: flex;
  gap: 20px;
  margin-bottom: 24px;
}

.cnh-photo-frame {
  width: 100px; height: 130px;
  background: linear-gradient(135deg, #2a4778, #1a2f5c);
  border: 2px solid var(--gold);
  border-radius: 8px;
  display: grid;
  place-items: center;
  font-size: 64px;
  position: relative;
  overflow: hidden;
}
.cnh-photo-frame::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, transparent 60%, rgba(245,197,24,0.15));
}

.cnh-info {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.cnh-info-row {
  display: flex;
  flex-direction: column;
}
.cnh-info-label {
  font-size: 9px;
  letter-spacing: 1px;
  color: var(--gold);
  text-transform: uppercase;
  margin-bottom: 2px;
}
.cnh-info-value {
  font-family: var(--font-display);
  font-size: 16px;
  letter-spacing: 1px;
  color: var(--white);
}

.cnh-categories {
  display: flex;
  gap: 8px;
  margin-bottom: 16px;
}
.cnh-cat {
  width: 38px; height: 38px;
  background: var(--gold);
  color: var(--navy-deep);
  display: grid; place-items: center;
  font-family: var(--font-impact);
  font-size: 18px;
  border-radius: 6px;
  transition: transform 0.3s;
}
.cnh-cat:hover { transform: rotate(-8deg) scale(1.1); }
.cnh-cat.outline {
  background: transparent;
  color: var(--gold);
  border: 2px solid var(--gold);
}

.cnh-stamp {
  position: absolute;
  bottom: -20px; right: -20px;
  width: 110px; height: 110px;
  border: 4px solid var(--gold);
  border-radius: 50%;
  display: grid; place-items: center;
  background: rgba(10, 20, 40, 0.95);
  font-family: var(--font-display);
  font-size: 14px;
  text-align: center;
  letter-spacing: 1px;
  color: var(--gold);
  transform: rotate(-15deg);
  line-height: 1.1;
  padding: 8px;
}
.cnh-stamp strong {
  display: block;
  font-size: 22px;
  color: var(--white);
}

/* Floating elements */
.floating-icon {
  position: absolute;
  font-size: 48px;
  opacity: 0.3;
  animation: float 6s ease-in-out infinite;
}
.floating-icon.f1 { top: 10%; left: -5%; animation-delay: 0s; }
.floating-icon.f2 { bottom: 15%; right: -5%; animation-delay: 2s; }

@keyframes float {
  0%, 100% { transform: translateY(0) rotate(0); }
  50% { transform: translateY(-20px) rotate(5deg); }
}

@media (max-width: 880px) {
  .hero { padding: 110px 20px 60px; }
  .hero-inner { grid-template-columns: 1fr; gap: 40px; }
  .hero-visual { max-width: 380px; margin: 0 auto; }
  .cnh-card { transform: rotate(-2deg); }
  .hero-stats { gap: 24px; }
  .stat-num { font-size: 28px; }
}

/* ============================================
   ANIMAÇÕES GLOBAIS
============================================ */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes fadeInRight {
  from { opacity: 0; transform: translateX(30px); }
  to { opacity: 1; transform: translateX(0); }
}

.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================
   BARRA SCROLLING - "TICKER"
============================================ */
.ticker {
  background: var(--gold);
  color: var(--navy-deep);
  padding: 18px 0;
  overflow: hidden;
  position: relative;
  border-top: 4px solid var(--navy-deep);
  border-bottom: 4px solid var(--navy-deep);
}
.ticker-track {
  display: flex;
  white-space: nowrap;
  animation: scroll 30s linear infinite;
  font-family: var(--font-display);
  font-size: 24px;
  letter-spacing: 3px;
  gap: 40px;
}
.ticker-track span {
  display: inline-flex;
  align-items: center;
  gap: 40px;
}
.ticker-track .dot {
  display: inline-block;
  width: 10px; height: 10px;
  background: var(--navy-deep);
  border-radius: 50%;
  vertical-align: middle;
}
@keyframes scroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ============================================
   SECTION DEFAULTS
============================================ */
section {
  padding: 100px 32px;
  position: relative;
}

.section-inner {
  max-width: var(--max-width);
  margin: 0 auto;
}

.section-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 12px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 600;
  margin-bottom: 16px;
}
.section-eyebrow::before {
  content: '';
  width: 32px; height: 2px;
  background: var(--gold);
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(36px, 5vw, 64px);
  line-height: 1;
  letter-spacing: 1px;
  margin-bottom: 20px;
}
.section-title .gold { color: var(--gold); }

.section-desc {
  font-size: 17px;
  color: rgba(255,255,255,0.7);
  max-width: 580px;
  margin-bottom: 60px;
}

@media (max-width: 700px) {
  section { padding: 70px 20px; }
  .section-desc { margin-bottom: 40px; }
}

/* ============================================
   PROVA SOCIAL - DEPOIMENTOS
============================================ */
.testimonials {
  background:
    linear-gradient(180deg, var(--navy-deep), var(--navy) 50%, var(--navy-deep));
}

.review-summary {
  display: flex;
  align-items: center;
  gap: 32px;
  flex-wrap: wrap;
  padding: 24px 32px;
  background: linear-gradient(135deg, rgba(245,197,24,0.08), transparent);
  border: 1px solid rgba(245,197,24,0.2);
  border-radius: 16px;
  margin-bottom: 60px;
}

.review-score {
  display: flex;
  align-items: center;
  gap: 16px;
}
.review-score .num {
  font-family: var(--font-display);
  font-size: 56px;
  color: var(--gold);
  line-height: 1;
}
.stars {
  display: flex;
  gap: 4px;
  font-size: 22px;
  color: var(--gold);
}
.review-text strong { color: var(--white); }
.review-text small { color: rgba(255,255,255,0.6); display: block; font-size: 13px; margin-top: 4px; }

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
}

.testimonial-card {
  background: linear-gradient(180deg, rgba(255,255,255,0.04), rgba(255,255,255,0.01));
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 16px;
  padding: 32px;
  position: relative;
  transition: all 0.3s;
}

.testimonial-card:hover {
  transform: translateY(-6px);
  border-color: var(--gold);
  box-shadow: 0 20px 40px rgba(0,0,0,0.3);
}

.testimonial-card::before {
  content: '"';
  position: absolute;
  top: 12px; right: 24px;
  font-family: var(--font-impact);
  font-size: 96px;
  color: var(--gold);
  opacity: 0.15;
  line-height: 1;
}

.testimonial-card .stars {
  margin-bottom: 16px;
  font-size: 16px;
}

.testimonial-text {
  font-size: 15px;
  line-height: 1.7;
  color: rgba(255,255,255,0.85);
  margin-bottom: 24px;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,0.08);
}

.author-avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: var(--navy-deep);
  display: grid; place-items: center;
  font-family: var(--font-impact);
  font-size: 18px;
}

.author-info strong { display: block; font-weight: 600; font-size: 14px; }
.author-info small { color: rgba(255,255,255,0.5); font-size: 12px; }

/* ============================================
   SOBRE A AUTOESCOLA
============================================ */
.about {
  background: var(--navy-deep);
  position: relative;
  overflow: hidden;
}

.about::before {
  content: 'CFC';
  position: absolute;
  top: 50%; right: -50px;
  transform: translateY(-50%);
  font-family: var(--font-impact);
  font-size: 380px;
  color: rgba(245,197,24,0.04);
  letter-spacing: -10px;
  pointer-events: none;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.about-visual {
  position: relative;
}

.about-image-wrap {
  position: relative;
  aspect-ratio: 4/5;
  background: linear-gradient(135deg, var(--navy-light), var(--navy));
  border-radius: 20px;
  overflow: hidden;
  border: 2px solid var(--gold);
}

.about-image-wrap::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    repeating-linear-gradient(
      0deg,
      transparent 0 50px,
      rgba(245,197,24,0.05) 50px 51px
    ),
    repeating-linear-gradient(
      90deg,
      transparent 0 50px,
      rgba(245,197,24,0.05) 50px 51px
    );
}

.about-image-content {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  font-size: 220px;
  text-align: center;
}

.about-since-badge {
  position: absolute;
  bottom: 24px; left: 24px;
  background: var(--gold);
  color: var(--navy-deep);
  padding: 12px 20px;
  border-radius: 12px;
  font-family: var(--font-display);
  letter-spacing: 1px;
}
.about-since-badge .num {
  font-size: 32px;
  display: block;
  line-height: 1;
}
.about-since-badge .lbl {
  font-size: 11px;
  letter-spacing: 2px;
}

.years-counter {
  position: absolute;
  top: -30px; right: -30px;
  width: 130px; height: 130px;
  background: var(--navy-deep);
  border: 3px solid var(--gold);
  border-radius: 50%;
  display: grid; place-items: center;
  text-align: center;
  font-family: var(--font-display);
  color: var(--gold);
  letter-spacing: 1px;
  transform: rotate(8deg);
  box-shadow: 0 12px 30px rgba(0,0,0,0.4);
}
.years-counter .big {
  font-size: 44px;
  color: var(--white);
  display: block;
  line-height: 1;
  margin-top: 15px;
}
.years-counter .small {
  font-size: 11px;
  letter-spacing: 2px;
  margin-bottom: 15px;
}

.differentials {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 32px;
}

.differential {
  display: flex;
  gap: 16px;
  padding: 16px 20px;
  background: rgba(255,255,255,0.02);
  border-left: 3px solid var(--gold);
  border-radius: 0 12px 12px 0;
  transition: all 0.3s;
}

.differential:hover {
  background: rgba(245,197,24,0.06);
  transform: translateX(6px);
}

.differential-icon {
  font-size: 24px;
  flex-shrink: 0;
}

.differential-content strong {
  display: block;
  margin-bottom: 4px;
  font-size: 15px;
}

.differential-content p {
  font-size: 14px;
  color: rgba(255,255,255,0.65);
  line-height: 1.5;
}

@media (max-width: 880px) {
  .about-grid { grid-template-columns: 1fr; gap: 60px; }
  .about-visual { max-width: 400px; margin: 0 auto; }
  .years-counter { width: 100px; height: 100px; top: -20px; right: -10px; }
  .years-counter .big { font-size: 32px; }
}

/* ============================================
   SERVIÇOS
============================================ */
.services {
  background: var(--navy);
  position: relative;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
}

.service-card {
  position: relative;
  padding: 40px 32px;
  background: var(--navy-deep);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 16px;
  overflow: hidden;
  transition: all 0.4s;
  cursor: pointer;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 4px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}

.service-card:hover {
  transform: translateY(-8px);
  border-color: var(--gold);
  box-shadow: 0 24px 50px rgba(0,0,0,0.5);
}

.service-card:hover::before {
  transform: scaleX(1);
}

.service-icon-wrap {
  width: 64px; height: 64px;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  border-radius: 14px;
  display: grid; place-items: center;
  font-size: 32px;
  margin-bottom: 24px;
  color: var(--navy-deep);
  position: relative;
  transition: transform 0.4s;
}

.service-card:hover .service-icon-wrap {
  transform: rotate(-8deg) scale(1.05);
}

.service-card h3 {
  font-family: var(--font-display);
  font-size: 26px;
  letter-spacing: 1.5px;
  margin-bottom: 12px;
  color: var(--white);
}

.service-card p {
  font-size: 14px;
  color: rgba(255,255,255,0.65);
  line-height: 1.6;
  margin-bottom: 20px;
}

.service-categories {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
}
.cat-pill {
  padding: 4px 10px;
  background: rgba(245,197,24,0.12);
  border: 1px solid rgba(245,197,24,0.3);
  border-radius: 999px;
  font-size: 11px;
  letter-spacing: 1px;
  color: var(--gold);
  font-weight: 600;
}

/* ============================================
   BENEFÍCIOS
============================================ */
.benefits {
  background:
    linear-gradient(180deg, var(--navy), var(--navy-deep));
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
}

.benefit {
  text-align: left;
  padding: 28px 24px;
  background: rgba(255,255,255,0.02);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 16px;
  transition: all 0.3s;
  position: relative;
  overflow: hidden;
}

.benefit::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 100%; height: 0;
  background: linear-gradient(180deg, transparent, rgba(245,197,24,0.06));
  transition: height 0.4s ease;
  z-index: 0;
}

.benefit:hover::after { height: 100%; }
.benefit:hover {
  border-color: var(--gold);
  transform: translateY(-4px);
}

.benefit-icon {
  width: 48px; height: 48px;
  display: grid; place-items: center;
  background: var(--navy-deep);
  border: 2px solid var(--gold);
  border-radius: 12px;
  font-size: 22px;
  margin-bottom: 18px;
  position: relative;
  z-index: 1;
}

.benefit h4 {
  font-size: 16px;
  margin-bottom: 6px;
  position: relative;
  z-index: 1;
}

.benefit p {
  font-size: 13px;
  color: rgba(255,255,255,0.6);
  line-height: 1.5;
  position: relative;
  z-index: 1;
}

/* ============================================
   CTA INTERMEDIÁRIO
============================================ */
.cta-mid {
  padding: 80px 32px;
  background: var(--gold);
  color: var(--navy-deep);
  position: relative;
  overflow: hidden;
}

.cta-mid::before {
  content: '';
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    -45deg,
    transparent 0 30px,
    rgba(10,20,40,0.04) 30px 31px
  );
}

.cta-mid-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
  position: relative;
  z-index: 1;
}

.cta-mid h2 {
  font-family: var(--font-display);
  font-size: clamp(32px, 4.5vw, 56px);
  line-height: 1;
  letter-spacing: 1px;
  max-width: 700px;
}

.cta-mid h2 em {
  font-style: normal;
  position: relative;
  display: inline-block;
}
.cta-mid h2 em::after {
  content: '';
  position: absolute;
  left: 0; right: 0; bottom: 4px;
  height: 8px;
  background: var(--navy-deep);
  opacity: 0.2;
  z-index: -1;
}

.cta-mid-btn {
  background: var(--navy-deep);
  color: var(--gold);
  padding: 22px 36px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 16px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  transition: all 0.3s;
  white-space: nowrap;
}

.cta-mid-btn:hover {
  transform: translateY(-3px) scale(1.03);
  box-shadow: 0 14px 34px rgba(10,20,40,0.4);
}

/* ============================================
   GALERIA / INSTAGRAM
============================================ */
.instagram-section {
  background: var(--navy-deep);
}

.ig-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 60px;
}

.ig-handle {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 18px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 999px;
  font-size: 14px;
  font-weight: 500;
  transition: all 0.3s;
}
.ig-handle:hover {
  border-color: var(--gold);
  background: rgba(245,197,24,0.06);
}

.ig-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.ig-tile {
  position: relative;
  aspect-ratio: 1;
  border-radius: 12px;
  overflow: hidden;
  background: linear-gradient(135deg, var(--navy-light), var(--navy));
  border: 1px solid rgba(255,255,255,0.08);
  cursor: pointer;
  transition: transform 0.4s;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 20px;
}

.ig-tile::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(10,20,40,0.9));
  z-index: 1;
}

.ig-tile-emoji {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  font-size: 70px;
  z-index: 0;
  transition: transform 0.4s;
}

.ig-tile:hover .ig-tile-emoji {
  transform: translate(-50%, -50%) scale(1.15);
}

.ig-tile-text {
  position: relative;
  z-index: 2;
  font-family: var(--font-display);
  font-size: 16px;
  letter-spacing: 1.5px;
  color: var(--white);
  line-height: 1.1;
}
.ig-tile-text small {
  display: block;
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 1px;
  color: var(--gold);
  text-transform: uppercase;
  margin-bottom: 6px;
  font-weight: 600;
}

.ig-tile:nth-child(1) { background: linear-gradient(135deg, #1a3060, #0a1428); }
.ig-tile:nth-child(2) { background: linear-gradient(135deg, #244a8c, #142850); }
.ig-tile:nth-child(3) { background: linear-gradient(135deg, #0e1f3f, #020817); }
.ig-tile:nth-child(4) { background: linear-gradient(135deg, #2a5298, #1e3a6b); }
.ig-tile:nth-child(5) { background: linear-gradient(135deg, #142850, #0a1428); }
.ig-tile:nth-child(6) { background: linear-gradient(135deg, #1e3a6b, #142850); }
.ig-tile:nth-child(7) { background: linear-gradient(135deg, #0a1428, #1a3060); }
.ig-tile:nth-child(8) { background: linear-gradient(135deg, #244a8c, #0a1428); }

@media (max-width: 880px) {
  .ig-grid { grid-template-columns: repeat(2, 1fr); }
}

/* ============================================
   LOCALIZAÇÃO
============================================ */
.location {
  background: var(--navy);
}

.location-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 40px;
  align-items: stretch;
}

.location-info {
  padding: 40px;
  background: var(--navy-deep);
  border-radius: 16px;
  border: 1px solid rgba(255,255,255,0.08);
}

.location-info h3 {
  font-family: var(--font-display);
  font-size: 32px;
  letter-spacing: 1.5px;
  margin-bottom: 24px;
}

.info-row {
  display: flex;
  gap: 14px;
  padding: 18px 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.info-row:last-child { border-bottom: none; }

.info-icon {
  width: 40px; height: 40px;
  flex-shrink: 0;
  background: rgba(245,197,24,0.1);
  border: 1px solid rgba(245,197,24,0.3);
  border-radius: 10px;
  display: grid; place-items: center;
  font-size: 18px;
}

.info-row strong {
  display: block;
  font-size: 13px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 4px;
}

.info-row p { font-size: 15px; color: rgba(255,255,255,0.85); }

.location-map {
  background: linear-gradient(135deg, var(--navy-light), var(--navy-deep));
  border-radius: 16px;
  border: 2px solid var(--gold);
  position: relative;
  overflow: hidden;
  min-height: 380px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.map-grid-bg {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(245,197,24,0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(245,197,24,0.08) 1px, transparent 1px);
  background-size: 40px 40px;
}

.map-streets {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.map-pin {
  position: relative;
  z-index: 2;
  text-align: center;
  animation: bounce 2s infinite;
}

@keyframes bounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}

.map-pin-icon {
  width: 64px; height: 64px;
  background: var(--gold);
  border-radius: 50% 50% 50% 0;
  transform: rotate(-45deg);
  margin: 0 auto 14px;
  display: grid; place-items: center;
  box-shadow: 0 12px 30px rgba(245,197,24,0.5);
  position: relative;
}
.map-pin-icon::after {
  content: '📍';
  transform: rotate(45deg);
  font-size: 28px;
}

.map-pin-text {
  font-family: var(--font-display);
  letter-spacing: 1.5px;
  font-size: 18px;
  color: var(--white);
  background: rgba(10,20,40,0.85);
  padding: 8px 16px;
  border-radius: 8px;
  border: 1px solid var(--gold);
}

.map-overlay-cta {
  position: absolute;
  bottom: 20px; left: 20px; right: 20px;
  background: rgba(10,20,40,0.95);
  backdrop-filter: blur(8px);
  border: 1px solid var(--gold);
  border-radius: 12px;
  padding: 16px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}
.map-overlay-cta p {
  font-size: 14px;
  color: rgba(255,255,255,0.85);
}
.map-overlay-cta a {
  background: var(--gold);
  color: var(--navy-deep);
  padding: 10px 18px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 1px;
  text-transform: uppercase;
  white-space: nowrap;
  transition: transform 0.2s;
}
.map-overlay-cta a:hover { transform: scale(1.05); }

@media (max-width: 880px) {
  .location-grid { grid-template-columns: 1fr; }
  .location-info { padding: 28px; }
}

/* ============================================
   FAQ
============================================ */
.faq {
  background: var(--navy-deep);
}

.faq-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 60px;
  align-items: flex-start;
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.faq-item {
  background: rgba(255,255,255,0.02);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 12px;
  overflow: hidden;
  transition: all 0.3s;
}

.faq-item.open {
  border-color: var(--gold);
  background: rgba(245,197,24,0.04);
}

.faq-question {
  width: 100%;
  padding: 22px 28px;
  text-align: left;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  font-size: 16px;
  font-weight: 600;
  color: var(--white);
  transition: color 0.3s;
}

.faq-item.open .faq-question { color: var(--gold); }
.faq-question:hover { color: var(--gold); }

.faq-icon {
  width: 32px; height: 32px;
  background: var(--gold);
  color: var(--navy-deep);
  border-radius: 50%;
  display: grid; place-items: center;
  font-weight: 700;
  font-size: 18px;
  flex-shrink: 0;
  transition: transform 0.3s;
  font-family: var(--font-impact);
}
.faq-item.open .faq-icon { transform: rotate(45deg); }

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.4s ease;
  padding: 0 28px;
}
.faq-item.open .faq-answer {
  max-height: 280px;
  padding: 0 28px 24px;
}
.faq-answer p {
  font-size: 15px;
  color: rgba(255,255,255,0.75);
  line-height: 1.7;
}

@media (max-width: 880px) {
  .faq-grid { grid-template-columns: 1fr; gap: 40px; }
}

/* ============================================
   CTA FINAL
============================================ */
.cta-final {
  position: relative;
  padding: 120px 32px;
  background:
    radial-gradient(ellipse at 30% 50%, rgba(245,197,24,0.2), transparent 60%),
    linear-gradient(135deg, var(--navy), var(--navy-deep));
  overflow: hidden;
  text-align: center;
}

.cta-final::before {
  content: '';
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    90deg,
    transparent 0 200px,
    rgba(245,197,24,0.4) 200px 240px,
    transparent 240px 440px
  );
  background-size: 440px 100%;
  opacity: 0.15;
  bottom: 0;
  height: 30px;
  top: auto;
}

.cta-final-inner {
  max-width: 800px;
  margin: 0 auto;
  position: relative;
}

.urgency-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 20px;
  background: rgba(245,197,24,0.15);
  border: 1px solid var(--gold);
  border-radius: 999px;
  font-size: 13px;
  font-weight: 600;
  color: var(--gold);
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 28px;
}
.urgency-badge .blink {
  width: 8px; height: 8px;
  background: var(--gold);
  border-radius: 50%;
  animation: blink 1.4s infinite;
}
@keyframes blink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.3; }
}

.cta-final h2 {
  font-family: var(--font-display);
  font-size: clamp(44px, 6.5vw, 84px);
  letter-spacing: 1px;
  line-height: 0.95;
  margin-bottom: 20px;
}
.cta-final h2 .gold { color: var(--gold); }

.cta-final p {
  font-size: 18px;
  color: rgba(255,255,255,0.75);
  max-width: 580px;
  margin: 0 auto 40px;
}

.cta-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ============================================
   FOOTER
============================================ */
.footer {
  background: #050B19;
  padding: 70px 32px 30px;
  border-top: 1px solid rgba(255,255,255,0.08);
}

.footer-grid {
  max-width: var(--max-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 50px;
}

.footer-brand {
  font-family: var(--font-display);
  font-size: 28px;
  letter-spacing: 2px;
  color: var(--gold);
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.footer-logo-img {
  height: 50px;
  width: auto;
  object-fit: contain;
}

.footer p { font-size: 14px; color: rgba(255,255,255,0.6); line-height: 1.7; }

.footer h5 {
  font-family: var(--font-display);
  font-size: 16px;
  letter-spacing: 2px;
  color: var(--gold);
  margin-bottom: 20px;
}

.footer ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }

.footer ul a {
  color: rgba(255,255,255,0.7);
  font-size: 14px;
  transition: color 0.2s;
}
.footer ul a:hover { color: var(--gold); }

.social-links {
  display: flex;
  gap: 10px;
  margin-top: 16px;
}

.social-link {
  width: 40px; height: 40px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 10px;
  display: grid; place-items: center;
  font-size: 18px;
  transition: all 0.3s;
}

.social-link:hover {
  background: var(--gold);
  border-color: var(--gold);
  transform: translateY(-3px);
}

.footer-bottom {
  max-width: var(--max-width);
  margin: 0 auto;
  padding-top: 30px;
  border-top: 1px solid rgba(255,255,255,0.08);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 13px;
  color: rgba(255,255,255,0.4);
}

@media (max-width: 880px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 30px; }
  .footer-grid > div:first-child { grid-column: 1 / -1; }
}

/* ============================================
   WHATSAPP FLOAT BUTTON
============================================ */
.whatsapp-float {
  position: fixed;
  bottom: 24px; right: 24px;
  z-index: 90;
  width: 60px; height: 60px;
  background: #25D366;
  border-radius: 50%;
  display: grid; place-items: center;
  font-size: 32px;
  box-shadow: 0 10px 30px rgba(37, 211, 102, 0.45);
  animation: bounceIn 1s ease 1s both, pulseWa 2.5s ease 2s infinite;
  transition: transform 0.3s;
  text-decoration: none;
  color: white;
}

.whatsapp-float:hover {
  transform: scale(1.12);
}

.whatsapp-float::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 3px solid #25D366;
  animation: pulseRingWa 2s infinite;
}

@keyframes bounceIn {
  0% { transform: scale(0); }
  60% { transform: scale(1.15); }
  100% { transform: scale(1); }
}

@keyframes pulseWa {
  0%, 100% { box-shadow: 0 10px 30px rgba(37, 211, 102, 0.45); }
  50% { box-shadow: 0 10px 30px rgba(37, 211, 102, 0.85); }
}

@keyframes pulseRingWa {
  0% { transform: scale(1); opacity: 0.6; }
  100% { transform: scale(1.6); opacity: 0; }
}

.whatsapp-tooltip {
  position: absolute;
  right: 72px;
  background: var(--navy-deep);
  color: var(--white);
  padding: 10px 16px;
  border-radius: 8px;
  font-size: 13px;
  white-space: nowrap;
  border: 1px solid var(--gold);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s;
}

.whatsapp-tooltip::after {
  content: '';
  position: absolute;
  right: -6px; top: 50%;
  transform: translateY(-50%) rotate(45deg);
  width: 10px; height: 10px;
  background: var(--navy-deep);
  border-right: 1px solid var(--gold);
  border-top: 1px solid var(--gold);
}

.whatsapp-float:hover .whatsapp-tooltip { opacity: 1; }

@media (max-width: 600px) {
  .whatsapp-float { width: 54px; height: 54px; font-size: 28px; bottom: 18px; right: 18px; }
  .whatsapp-tooltip { display: none; }
}

/* ============================================
   MOBILE SMALL (iPhone XR - 375px)
============================================ */
@media (max-width: 420px) {
  .navbar {
    padding: 12px 16px;
  }

  .nav-logo-img {
    height: 40px;
  }

  .nav-inner {
    gap: 12px;
  }

  .menu-toggle {
    width: 32px;
    height: 32px;
  }

  .hero {
    padding: 90px 16px 50px;
    min-height: auto;
  }

  .hero-inner {
    gap: 30px;
  }

  .hero h1 {
    font-size: clamp(32px, 6vw, 48px);
  }

  .hero-sub {
    font-size: 14px;
    margin-bottom: 24px;
  }

  .hero-badge {
    font-size: 11px;
    padding: 6px 12px;
    margin-bottom: 20px;
  }

  .hero-cta-row {
    gap: 12px;
    margin-bottom: 32px;
  }

  .btn-primary,
  .btn-secondary {
    padding: 14px 20px;
    font-size: 13px;
  }

  .hero-stats {
    gap: 20px;
  }

  .stat-num {
    font-size: 28px;
  }

  .stat-label {
    font-size: 11px;
  }

  .hero-visual {
    max-width: 100%;
  }

  .cnh-card {
    padding: 20px;
    max-width: 100%;
    transform: rotate(-1deg);
  }

  .cnh-header {
    gap: 12px;
  }

  .cnh-header-text {
    font-size: 12px;
  }

  .cnh-header-text strong {
    font-size: 16px;
  }

  .cnh-photo {
    gap: 12px;
  }

  .cnh-photo-frame {
    width: 70px;
    height: 90px;
    font-size: 40px;
  }

  .cnh-info-label {
    font-size: 8px;
  }

  .cnh-info-value {
    font-size: 13px;
  }

  .cnh-shield-logo {
    width: 70px;
    height: 40px;
  }

  .cnh-categories {
    gap: 6px;
  }

  .cnh-cat {
    width: 32px;
    height: 32px;
    font-size: 14px;
  }

  .cnh-stamp {
    width: 90px;
    height: 90px;
    font-size: 12px;
    bottom: -15px;
    right: -15px;
  }

  .cnh-stamp strong {
    font-size: 18px;
  }

  .ticker-track {
    font-size: 16px;
    gap: 20px;
  }

  .ticker-track .dot {
    width: 6px;
    height: 6px;
  }

  .ticker {
    padding: 12px 0;
  }

  section {
    padding: 50px 16px;
  }

  .section-eyebrow {
    font-size: 10px;
    gap: 8px;
  }

  .section-eyebrow::before {
    width: 20px;
  }

  .section-title {
    font-size: clamp(24px, 6vw, 40px);
    margin-bottom: 16px;
  }

  .section-desc {
    font-size: 14px;
    margin-bottom: 30px;
  }

  .review-summary {
    padding: 16px 20px;
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }

  .review-score .num {
    font-size: 40px;
  }

  .stars {
    font-size: 18px;
  }

  .review-text small {
    font-size: 12px;
  }

  .testimonials-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .testimonial-card {
    padding: 20px;
  }

  .testimonial-card::before {
    font-size: 60px;
    right: 12px;
  }

  .testimonial-text {
    font-size: 14px;
    margin-bottom: 16px;
  }

  .testimonial-author {
    gap: 8px;
    padding-top: 12px;
  }

  .author-avatar {
    width: 36px;
    height: 36px;
    font-size: 16px;
  }

  .author-info strong {
    font-size: 12px;
  }

  .author-info small {
    font-size: 11px;
  }

  .about-grid {
    gap: 40px;
  }

  .about-image-content {
    font-size: 120px;
  }

  .about-since-badge {
    padding: 8px 12px;
  }

  .about-since-badge .num {
    font-size: 20px;
  }

  .about-since-badge .lbl {
    font-size: 10px;
  }

  .years-counter {
    width: 90px;
    height: 90px;
    top: -15px;
    right: -10px;
  }

  .years-counter .big {
    font-size: 24px;
  }

  .years-counter .small {
    font-size: 9px;
  }

  .differentials {
    gap: 12px;
  }

  .differential {
    gap: 12px;
    padding: 12px 14px;
  }

  .differential-icon {
    font-size: 20px;
  }

  .differential-content strong {
    font-size: 13px;
  }

  .differential-content p {
    font-size: 12px;
  }

  .services-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .service-card {
    padding: 24px 20px;
  }

  .service-icon-wrap {
    width: 48px;
    height: 48px;
    font-size: 24px;
    margin-bottom: 16px;
  }

  .service-card h3 {
    font-size: 18px;
  }

  .service-card p {
    font-size: 13px;
  }

  .cat-pill {
    padding: 3px 8px;
    font-size: 10px;
  }

  .benefits-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .benefit {
    padding: 16px 16px;
  }

  .benefit-icon {
    width: 40px;
    height: 40px;
    font-size: 18px;
    margin-bottom: 12px;
  }

  .benefit h4 {
    font-size: 14px;
  }

  .benefit p {
    font-size: 12px;
  }

  .cta-mid {
    padding: 50px 16px;
  }

  .cta-mid-inner {
    gap: 16px;
  }

  .cta-mid h2 {
    font-size: clamp(24px, 5vw, 32px);
  }

  .cta-mid-btn {
    padding: 14px 20px;
    font-size: 12px;
  }

  .ig-header {
    gap: 12px;
    margin-bottom: 40px;
  }

  .ig-handle {
    padding: 8px 12px;
    font-size: 12px;
  }

  .ig-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }

  .ig-tile-emoji {
    font-size: 50px;
  }

  .ig-tile-text {
    font-size: 12px;
  }

  .ig-tile-text small {
    font-size: 9px;
  }

  .location-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .location-info {
    padding: 20px;
  }

  .location-info h3 {
    font-size: 20px;
  }

  .info-row {
    gap: 10px;
    padding: 12px 0;
  }

  .info-icon {
    width: 32px;
    height: 32px;
    font-size: 16px;
  }

  .info-row strong {
    font-size: 12px;
  }

  .info-row p {
    font-size: 13px;
  }

  .location-map {
    min-height: 280px;
  }

  .map-pin-icon {
    width: 48px;
    height: 48px;
  }

  .map-pin-icon::after {
    font-size: 20px;
  }

  .map-pin-text {
    font-size: 12px;
    padding: 6px 12px;
  }

  .map-overlay-cta {
    padding: 12px;
    font-size: 12px;
    bottom: 12px;
    left: 12px;
    right: 12px;
  }

  .map-overlay-cta p {
    font-size: 12px;
  }

  .map-overlay-cta span {
    padding: 6px 12px;
    font-size: 11px;
  }

  .faq-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .faq-list {
    gap: 10px;
  }

  .faq-question {
    padding: 16px 20px;
    font-size: 14px;
  }

  .faq-icon {
    width: 28px;
    height: 28px;
    font-size: 16px;
  }

  .faq-item.open .faq-answer {
    max-height: 350px;
  }

  .faq-answer p {
    font-size: 13px;
  }

  .cta-final {
    padding: 60px 16px;
  }

  .cta-final h2 {
    font-size: clamp(28px, 6vw, 48px);
    margin-bottom: 16px;
  }

  .cta-final p {
    font-size: 14px;
    margin-bottom: 24px;
  }

  .urgency-badge {
    font-size: 11px;
    padding: 8px 14px;
    margin-bottom: 20px;
  }

  .cta-buttons {
    gap: 12px;
  }

  .footer {
    padding: 40px 16px 20px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 20px;
    margin-bottom: 30px;
  }

  .footer-brand {
    font-size: 18px;
    margin-bottom: 12px;
  }

  .footer-logo-img {
    height: 40px;
  }

  .footer p {
    font-size: 12px;
  }

  .footer h5 {
    font-size: 13px;
    margin-bottom: 12px;
  }

  .footer ul a {
    font-size: 12px;
  }

  .social-link {
    width: 36px;
    height: 36px;
    font-size: 16px;
  }

  .footer-bottom {
    font-size: 11px;
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }

  .mobile-menu {
    top: 58px;
  }

  .mobile-menu a {
    font-size: 18px;
  }

  .mobile-menu .mobile-cta {
    padding: 12px;
    font-size: 12px;
  }
}

/* ============================================
   ORÇAMENTO DINÂMICO
============================================ */
.orcamento {
  background: var(--navy-deep);
  position: relative;
  overflow: hidden;
}

.orcamento::after {
  content: 'R$';
  position: absolute;
  top: 50%; right: -20px;
  transform: translateY(-50%);
  font-family: var(--font-impact);
  font-size: 320px;
  color: rgba(245,197,24,0.04);
  pointer-events: none;
  line-height: 1;
  user-select: none;
}

.orcamento-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 40px;
  align-items: start;
}

/* ── Formulário ─────────────────────── */
.orcamento-form {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.form-label {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: rgba(255,255,255,0.85);
}

.form-step {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 26px; height: 26px;
  background: var(--gold);
  color: var(--navy-deep);
  border-radius: 50%;
  font-size: 13px;
  font-weight: 800;
  font-family: var(--font-impact);
  flex-shrink: 0;
}

.form-input {
  background: rgba(255,255,255,0.04);
  border: 1.5px solid rgba(255,255,255,0.12);
  border-radius: 12px;
  padding: 15px 20px;
  font-family: var(--font-body);
  font-size: 16px;
  color: var(--white);
  width: 100%;
  transition: border-color 0.3s, background 0.3s, box-shadow 0.3s;
  outline: none;
}

.form-input::placeholder { color: rgba(255,255,255,0.3); }

.form-input:focus {
  border-color: var(--gold);
  background: rgba(245,197,24,0.04);
  box-shadow: 0 0 0 3px rgba(245,197,24,0.1);
}

/* Categoria — toggle cards */
.toggle-group {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.toggle-card { cursor: pointer; display: block; }

.toggle-card-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  padding: 22px 16px;
  background: rgba(255,255,255,0.02);
  border: 2px solid rgba(255,255,255,0.08);
  border-radius: 16px;
  transition: all 0.25s;
  text-align: center;
}

.toggle-card:hover .toggle-card-inner {
  border-color: rgba(245,197,24,0.35);
  background: rgba(245,197,24,0.03);
}

.toggle-card input:checked + .toggle-card-inner {
  border-color: var(--gold);
  background: rgba(245,197,24,0.1);
  box-shadow: 0 0 0 1px var(--gold), 0 8px 24px rgba(245,197,24,0.12);
}

.toggle-card input:checked + .toggle-card-inner .toggle-icon {
  transform: scale(1.2);
}

.toggle-icon {
  font-size: 34px;
  display: block;
  transition: transform 0.25s;
}

.toggle-title {
  font-family: var(--font-display);
  font-size: 19px;
  letter-spacing: 1px;
  color: var(--white);
  line-height: 1;
}

.toggle-sub {
  font-size: 10px;
  color: rgba(255,255,255,0.5);
  letter-spacing: 1.5px;
  text-transform: uppercase;
}

/* Quantidade — qty buttons */
.qty-group {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}

.qty-btn { cursor: pointer; display: block; position: relative; }

.qty-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  padding: 16px 10px;
  min-height: 70px;
  background: rgba(255,255,255,0.02);
  border: 2px solid rgba(255,255,255,0.08);
  border-radius: 12px;
  transition: all 0.25s;
}

.qty-label {
  font-weight: 700;
  font-size: 15px;
  color: rgba(255,255,255,0.85);
  display: block;
  transition: color 0.25s;
}

.qty-tag {
  font-size: 9px;
  letter-spacing: 1px;
  text-transform: uppercase;
  font-weight: 700;
  padding: 2px 7px;
  border-radius: 999px;
  display: block;
}

.qty-tag.popular {
  color: var(--gold);
  background: rgba(245,197,24,0.12);
  border: 1px solid rgba(245,197,24,0.25);
}

.qty-tag.best {
  color: var(--navy-deep);
  background: var(--gold);
}

.qty-btn:hover .qty-card {
  border-color: rgba(245,197,24,0.35);
  background: rgba(245,197,24,0.03);
}

.qty-btn input:checked + .qty-card {
  border-color: var(--gold);
  background: rgba(245,197,24,0.1);
  box-shadow: 0 0 0 1px var(--gold);
}

.qty-btn input:checked + .qty-card .qty-label { color: var(--gold); }

/* ── Resultado ─────────────────────── */
.orcamento-result {
  position: sticky;
  top: 110px;
}

.result-placeholder {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  padding: 60px 40px;
  background: rgba(255,255,255,0.02);
  border: 2px dashed rgba(255,255,255,0.12);
  border-radius: 20px;
  text-align: center;
  min-height: 300px;
}

.placeholder-icon { font-size: 56px; opacity: 0.4; }
.result-placeholder p {
  font-size: 15px;
  color: rgba(255,255,255,0.45);
  max-width: 220px;
  line-height: 1.6;
}

.result-card {
  display: flex;
  flex-direction: column;
  gap: 20px;
  background: linear-gradient(160deg, rgba(245,197,24,0.06), rgba(255,255,255,0.01));
  border: 2px solid var(--gold);
  border-radius: 20px;
  padding: 32px;
  box-shadow: 0 20px 50px rgba(0,0,0,0.4), 0 0 0 1px rgba(245,197,24,0.08);
  animation: cardIn 0.35s ease-out;
}

@keyframes cardIn {
  from { opacity: 0; transform: translateY(10px) scale(0.98); }
  to   { opacity: 1; transform: translateY(0)  scale(1);    }
}

.result-category-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 14px;
  background: rgba(245,197,24,0.12);
  border: 1px solid rgba(245,197,24,0.3);
  border-radius: 999px;
  font-size: 13px;
  font-weight: 600;
  color: var(--gold);
  letter-spacing: 0.5px;
  align-self: flex-start;
}

.result-price-wrap {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 20px 0;
  border-top: 1px solid rgba(255,255,255,0.06);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.result-price-label {
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
}

.result-price {
  font-family: var(--font-display);
  font-size: 52px;
  color: var(--gold);
  letter-spacing: 1px;
  line-height: 1;
}

.result-inclusions {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.result-inclusions li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: rgba(255,255,255,0.8);
}

.result-inclusions .check {
  width: 22px; height: 22px;
  background: rgba(245,197,24,0.12);
  border: 1px solid var(--gold);
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 11px;
  color: var(--gold);
  flex-shrink: 0;
  font-weight: 700;
}

.result-loading {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 13px;
  color: rgba(255,255,255,0.5);
}

.spinner {
  width: 18px; height: 18px;
  border: 2px solid rgba(245,197,24,0.25);
  border-top-color: var(--gold);
  border-radius: 50%;
  animation: spin 0.7s linear infinite;
  flex-shrink: 0;
}

@keyframes spin { to { transform: rotate(360deg); } }

/* Botão WhatsApp no card */
.wa-btn {
  display: flex;
  align-items: center;
  gap: 14px;
  width: 100%;
  padding: 18px 20px;
  background: #25D366;
  border: none;
  border-radius: 14px;
  cursor: pointer;
  transition: transform 0.3s, box-shadow 0.3s;
  position: relative;
  overflow: hidden;
  font-family: var(--font-body);
}

.wa-btn::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent 30%, rgba(255,255,255,0.25) 50%, transparent 70%);
  transform: translateX(-100%);
  transition: transform 0.55s;
}

.wa-btn:hover::before { transform: translateX(100%); }
.wa-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(37,211,102,0.45);
}

.wa-btn:disabled {
  opacity: 0.4;
  cursor: not-allowed;
  transform: none !important;
  box-shadow: none !important;
}
.wa-btn:disabled::before { display: none; }

.wa-icon { font-size: 26px; flex-shrink: 0; }

.wa-text { flex: 1; text-align: left; }
.wa-text strong {
  display: block;
  font-size: 14px;
  color: #fff;
  font-weight: 700;
  letter-spacing: 0.2px;
}
.wa-text small {
  display: block;
  font-size: 11px;
  color: rgba(255,255,255,0.72);
  margin-top: 2px;
}

.wa-arrow {
  font-size: 18px;
  color: #fff;
  font-weight: 700;
  flex-shrink: 0;
  transition: transform 0.3s;
}
.wa-btn:hover .wa-arrow { transform: translateX(4px); }

.result-disclaimer {
  font-size: 11px;
  color: rgba(255,255,255,0.3);
  line-height: 1.5;
  text-align: center;
}

/* ── Responsivo ─────────────────────── */
@media (max-width: 880px) {
  .orcamento-grid { grid-template-columns: 1fr; }
  .orcamento-result { position: static; }
}

@media (max-width: 420px) {
  /* A e B na primeira linha, AB spanning full-width na segunda */
  .toggle-group { grid-template-columns: 1fr 1fr; }
  .toggle-group .toggle-card:last-child { grid-column: 1 / -1; }
  .toggle-group .toggle-card:last-child .toggle-card-inner {
    flex-direction: row;
    justify-content: center;
    gap: 12px;
    padding: 14px 16px;
  }
  .toggle-card-inner { padding: 14px 8px; }
  .toggle-icon { font-size: 22px; }
  .toggle-title { font-size: 14px; }
  .qty-group { gap: 8px; }
  .qty-card { padding: 12px 6px; min-height: 60px; }
  .qty-label { font-size: 13px; }
  .result-card { padding: 22px 18px; gap: 16px; }
  .result-price { font-size: 38px; }
}

/* ============================================
   SELECTION
============================================ */
::selection {
  background: var(--gold);
  color: var(--navy-deep);
}

/* Scrollbar */
::-webkit-scrollbar { width: 10px; }
::-webkit-scrollbar-track { background: var(--navy-deep); }
::-webkit-scrollbar-thumb { background: var(--gold-dark); border-radius: 5px; }
::-webkit-scrollbar-thumb:hover { background: var(--gold); }
