/* ==========================================================================
   Design System Ultra-Premium — Top Usadão Auto Peças (Itajaí - SC)
   Tipografia: Outfit (Headings) & Inter (Body)
   Paleta: Red Racing (#dc2626), Silver Chrome (#e2e8f0) e Dark Facade (#080a11)
   Moldes: Grupo Sucatinha (gruposucatinha.com.br)
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Outfit:wght@400;500;600;700;800;900&display=swap');

:root {
  /* Paleta Red Racing da Logo Top Usadão */
  --red-primary: #dc2626;
  --red-hover: #b91c1c;
  --red-light: #ef4444;
  --red-bright: #f87171;
  --red-glow: rgba(220, 38, 38, 0.35);

  /* Detalhes em Prata Metálico */
  --silver-chrome: #e2e8f0;
  --silver-light: #f8fafc;

  /* Palette Dark Facade (#080a11 base) */
  --navy-950: #080a11;
  --navy-900: #0f121d;
  --navy-800: #161a29;
  --navy-700: #21273a;
  --navy-600: #323b54;
  --navy-500: #4a5677;
  --navy-300: #a0aec0;
  --navy-200: #cbd5e0;
  --navy-100: #e2e8f0;

  /* Card Backgrounds */
  --bg-card: rgba(22, 26, 41, 0.65);
  --bg-card-hover: rgba(33, 39, 58, 0.85);

  /* Bordas Refletivas */
  --border-subtle: rgba(255, 255, 255, 0.08);
  --border-accent: rgba(220, 38, 38, 0.3);
  --border-accent-strong: rgba(220, 38, 38, 0.6);

  /* Texto */
  --text-heading: #ffffff;
  --text-main: #e2e8f0;
  --text-muted: #a0aec0;
  --text-dim: #718096;

  /* WhatsApp */
  --whatsapp: #25d366;
  --whatsapp-hover: #1da851;

  /* Tipografia */
  --font-heading: 'Outfit', sans-serif;
  --font-body: 'Inter', sans-serif;

  /* Geometria & Efeitos */
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 18px;
  --radius-full: 9999px;

  --transition-fast: 0.2s ease;
  --transition-normal: 0.3s ease;
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

section[id] {
  scroll-margin-top: 84px;
}

body {
  background-color: var(--navy-950);
  color: var(--text-main);
  font-family: var(--font-body);
  font-weight: 400;
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  color: var(--text-heading);
  line-height: 1.2;
  letter-spacing: -0.02em;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

.container {
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* Tags de Seção */
.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.35rem 0.95rem;
  background: rgba(220, 38, 38, 0.12);
  border: 1px solid var(--border-accent);
  border-radius: var(--radius-full);
  color: var(--red-bright);
  font-family: var(--font-heading);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 0.85rem;
}

.section-title {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--text-heading);
  line-height: 1.15;
  margin-bottom: 0.85rem;
  letter-spacing: -0.03em;
}

.section-subtitle {
  font-family: var(--font-body);
  font-size: 1.05rem;
  color: var(--text-muted);
  max-width: 680px;
}

/* Botões Globais */
.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  background: linear-gradient(135deg, var(--red-primary) 0%, var(--red-hover) 100%);
  color: #ffffff;
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 700;
  padding: 0.9rem 1.8rem;
  border-radius: var(--radius-md);
  box-shadow: 0 4px 20px var(--red-glow);
  transition: all var(--transition-normal);
  border: 1px solid rgba(255, 255, 255, 0.15);
  cursor: pointer;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(220, 38, 38, 0.5);
  background: linear-gradient(135deg, var(--red-light) 0%, var(--red-primary) 100%);
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  background: rgba(255, 255, 255, 0.05);
  color: var(--text-heading);
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 600;
  padding: 0.9rem 1.8rem;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-subtle);
  transition: all var(--transition-normal);
  cursor: pointer;
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.2);
  transform: translateY(-2px);
}

/* ==========================================================================
   HEADER / NAVIGATION
   ========================================================================== */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: rgba(8, 10, 17, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border-subtle);
  transition: all var(--transition-normal);
}

.header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 84px;
}

.header-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
}

.header-logo img {
  height: 48px;
  width: auto;
  object-fit: contain;
}

.header-logo-text {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  font-weight: 900;
  color: var(--text-heading);
  text-transform: uppercase;
  letter-spacing: -0.02em;
}

.header-logo-text span {
  color: var(--red-light);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 1.75rem;
}

.nav-links a {
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text-muted);
  transition: color var(--transition-fast);
}

.nav-links a:hover {
  color: var(--text-heading);
}

.nav-cta {
  background: linear-gradient(135deg, var(--whatsapp) 0%, var(--whatsapp-hover) 100%) !important;
  color: #ffffff !important;
  padding: 0.65rem 1.3rem;
  border-radius: var(--radius-full);
  box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
  transition: all var(--transition-normal) !important;
}

.nav-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
}

.mobile-toggle {
  display: none;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
}

.mobile-toggle span {
  display: block;
  width: 26px;
  height: 2px;
  background-color: var(--text-heading);
  margin: 6px 0;
  transition: all var(--transition-normal);
}

/* ==========================================================================
   HERO SECTION
   ========================================================================== */
.hero {
  position: relative;
  min-height: 100vh;
  padding-top: 140px;
  padding-bottom: 80px;
  display: flex;
  align-items: center;
  overflow: hidden;
  background-color: var(--navy-950);
}

.hero-bg {
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center right;
}

.hero-bg-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
  background: linear-gradient(90deg, 
    rgba(8, 10, 17, 0.96) 0%, 
    rgba(8, 10, 17, 0.88) 45%, 
    rgba(8, 10, 17, 0.5) 100%
  );
}

.hero-glow-1 {
  position: absolute;
  top: 20%;
  left: -10%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, var(--red-glow) 0%, rgba(0,0,0,0) 70%);
  z-index: 2;
  pointer-events: none;
}

.hero-glow-2 {
  position: absolute;
  bottom: 10%;
  right: 5%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(220, 38, 38, 0.15) 0%, rgba(0,0,0,0) 70%);
  z-index: 2;
  pointer-events: none;
}

.hero .container {
  position: relative;
  z-index: 3;
}

.hero-content {
  max-width: 680px;
  text-align: left;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.4rem 1rem;
  background: rgba(220, 38, 38, 0.15);
  border: 1px solid var(--border-accent-strong);
  border-radius: var(--radius-full);
  color: var(--red-bright);
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  box-shadow: 0 0 15px rgba(220, 38, 38, 0.2);
}

.hero h1 {
  font-size: 3.5rem;
  font-weight: 900;
  color: var(--text-heading);
  line-height: 1.1;
  margin-bottom: 1.25rem;
  letter-spacing: -0.03em;
}

.hero h1 .highlight {
  color: var(--red-light);
  background: linear-gradient(135deg, #ffffff 0%, var(--red-bright) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-description {
  font-size: 1.15rem;
  color: var(--text-main);
  margin-bottom: 2rem;
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 1rem;
  margin-bottom: 3rem;
  flex-wrap: wrap;
}

/* Estatísticas Hero (Centralizado em 4 colunas) */
.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  padding-top: 2rem;
  margin: 1.5rem auto 0 auto;
  max-width: 800px;
}

.hero-stat {
  background: transparent;
  border: none;
  padding: 0;
  text-align: center;
}

.hero-stat h3 {
  font-family: var(--font-heading);
  font-size: 1.85rem;
  font-weight: 800;
  color: #ef4444;
  margin-bottom: 0.2rem;
  letter-spacing: -0.01em;
}

.hero-stat p {
  font-size: 0.88rem;
  color: #94a3b8;
  font-weight: 500;
}

/* ==========================================================================
   TRUST BAR
   ========================================================================== */
.trust-bar {
  background-color: #060810;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  padding: 1.1rem 0;
}

.trust-items {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}

.trust-item {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  color: #cbd5e1;
  font-family: var(--font-heading);
  font-size: 0.88rem;
  font-weight: 600;
  white-space: nowrap;
}

.trust-item svg {
  color: #ef4444;
  flex-shrink: 0;
}

/* ==========================================================================
   SOBRE NÓS SECTION
   ========================================================================== */
.about {
  padding: 6rem 0;
  background-color: var(--navy-950);
}

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

.about-image {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border-subtle);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
}

.about-image img {
  width: 100%;
  height: 480px;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.about-image:hover img {
  transform: scale(1.03);
}

.about-image-badge {
  position: absolute;
  bottom: 1rem;
  right: 1rem;
  left: auto;
  width: auto;
  background: rgba(15, 18, 29, 0.85);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(220, 38, 38, 0.4);
  border-radius: var(--radius-full);
  padding: 0.45rem 0.9rem;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  cursor: pointer;
  z-index: 10;
}

.about-image-badge a {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  color: #f87171;
  font-family: var(--font-heading);
  font-size: 0.78rem;
  font-weight: 700;
  text-decoration: none;
  transition: color 0.3s ease;
}

.about-image-badge:hover {
  background: linear-gradient(135deg, var(--red-primary) 0%, #ef4444 100%);
  border-color: #f87171;
  box-shadow: 0 0 20px rgba(220, 38, 38, 0.85), 0 4px 15px rgba(0, 0, 0, 0.5);
  transform: translateY(-2px);
}

.about-image-badge:hover a {
  color: #ffffff;
}

.about-content h2 {
  font-size: 2.5rem;
  font-weight: 800;
  margin-bottom: 1.25rem;
}

.about-content p {
  color: var(--text-muted);
  font-size: 1.05rem;
  margin-bottom: 1.25rem;
  line-height: 1.7;
}

.about-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-top: 2rem;
}

.about-feature {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text-heading);
}

.about-feature svg {
  width: 20px;
  height: 20px;
  color: var(--red-light);
  flex-shrink: 0;
}

/* ==========================================================================
   DIFERENCIAIS SECTION
   ========================================================================== */
.features {
  padding: 3.5rem 0;
  background-color: var(--navy-900);
  border-top: 1px solid var(--border-subtle);
  border-bottom: 1px solid var(--border-subtle);
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-top: 1.75rem;
}

.feature-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  padding: 1.1rem 1.25rem;
  transition: all var(--transition-normal);
  position: relative;
  overflow: hidden;
}

.feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, var(--red-primary), transparent);
  opacity: 0;
  transition: opacity var(--transition-normal);
}

.feature-card:hover {
  background: var(--bg-card-hover);
  border-color: var(--border-accent);
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.4);
}

.feature-card:hover::before {
  opacity: 1;
}

.feature-icon {
  width: 38px;
  height: 38px;
  background: rgba(220, 38, 38, 0.12);
  border: 1px solid var(--border-accent);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0.75rem;
  color: var(--red-light);
}

.feature-icon svg {
  width: 20px;
  height: 20px;
}

.feature-card h3 {
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 0.35rem;
}

.feature-card p {
  color: var(--text-muted);
  font-size: 0.85rem;
  line-height: 1.45;
}

/* ==========================================================================
   PEÇAS / CATEGORIAS SECTION
   ========================================================================== */
.categories {
  padding: 6rem 0;
  background-color: var(--navy-950);
}

.categories-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.75rem;
  margin-top: 3rem;
}

.category-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  overflow: hidden;
  cursor: pointer;
  transition: all var(--transition-normal);
  display: flex;
  flex-direction: column;
}

.category-card:hover {
  border-color: var(--border-accent-strong);
  transform: translateY(-8px);
  box-shadow: 0 18px 40px rgba(220, 38, 38, 0.2);
}

.category-img {
  width: 100%;
  height: 200px;
  overflow: hidden;
  position: relative;
}

.category-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.category-card:hover .category-img img {
  transform: scale(1.08);
}

.category-card h3 {
  font-size: 1.2rem;
  font-weight: 700;
  padding: 1.25rem 1.25rem 0.5rem 1.25rem;
}

.category-card p {
  color: var(--text-muted);
  font-size: 0.88rem;
  padding: 0 1.25rem 1.25rem 1.25rem;
  flex-grow: 1;
  line-height: 1.5;
}

.category-btn {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.9rem 1.25rem;
  background: rgba(220, 38, 38, 0.08);
  border-top: 1px solid var(--border-subtle);
  color: var(--red-bright);
  font-family: var(--font-heading);
  font-size: 0.9rem;
  font-weight: 700;
  transition: all var(--transition-fast);
}

.category-card:hover .category-btn {
  background: var(--red-primary);
  color: #ffffff;
}

/* ==========================================================================
   COMO COMPRAR SECTION
   ========================================================================== */
.how-it-works {
  padding: 4.5rem 0;
  background-color: var(--navy-900);
  border-top: 1px solid var(--border-subtle);
  border-bottom: 1px solid var(--border-subtle);
}

.how-it-works-header {
  text-align: center;
  margin-bottom: 3.5rem;
}

.how-it-works-header .section-subtitle {
  margin: 0 auto;
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  position: relative;
}

.steps-grid::before {
  content: '';
  position: absolute;
  top: 24px;
  left: 12%;
  right: 12%;
  height: 2px;
  background: rgba(220, 38, 38, 0.3);
  z-index: 1;
}

.step-card {
  background: transparent;
  border: none;
  padding: 0;
  position: relative;
  z-index: 2;
  text-align: center;
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  cursor: pointer;
}

.step-number {
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, #ef4444 0%, #dc2626 100%);
  color: #ffffff;
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 800;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.25rem auto;
  box-shadow: 0 0 18px rgba(239, 68, 68, 0.45);
  position: relative;
  z-index: 2;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.step-card h3 {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 0.5rem;
  text-align: center;
  transition: all 0.3s ease;
}

.step-card p {
  color: #94a3b8;
  font-size: 0.88rem;
  line-height: 1.5;
  text-align: center;
  transition: color 0.3s ease;
}

/* Hover Effect — Acende a luz e dá ênfase */
.step-card:hover {
  transform: translateY(-5px);
}

.step-card:hover .step-number {
  transform: scale(1.15);
  background: linear-gradient(135deg, #ff4d4d 0%, #ef4444 100%);
  box-shadow: 0 0 28px rgba(255, 77, 77, 0.95), 0 0 45px rgba(220, 38, 38, 0.6);
}

.step-card:hover h3 {
  color: #ffffff;
  text-shadow: 0 0 14px rgba(255, 255, 255, 0.5);
}

.step-card:hover p {
  color: #cbd5e1;
}

/* ==========================================================================
   FAQ SECTION
   ========================================================================== */
.faq {
  padding: 6rem 0;
  background-color: var(--navy-950);
}

.faq-list {
  max-width: 800px;
  margin: 3rem auto 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.faq-item {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: all var(--transition-fast);
}

.faq-item.active {
  border-color: var(--border-accent);
}

.faq-question {
  width: 100%;
  padding: 1.35rem 1.5rem;
  background: transparent;
  border: none;
  color: var(--text-heading);
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 700;
  text-align: left;
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
}

.faq-question svg {
  color: var(--red-light);
  transition: transform var(--transition-normal);
  flex-shrink: 0;
}

.faq-item.active .faq-question svg {
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease-out;
}

.faq-answer-content {
  padding: 0 1.5rem 1.35rem 1.5rem;
  color: var(--text-muted);
  font-size: 0.98rem;
  line-height: 1.65;
  border-top: 1px solid rgba(255, 255, 255, 0.04);
  padding-top: 1rem;
}

/* ==========================================================================
   LOCALIZAÇÃO / CONTATO SECTION
   ========================================================================== */
.location {
  padding: 6rem 0;
  background-color: var(--navy-900);
  border-top: 1px solid var(--border-subtle);
}

.location-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  margin-top: 3rem;
  align-items: center;
}

.location-map {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border-subtle);
  height: 420px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4);
}

.location-map iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

.location-info {
  display: flex;
  flex-direction: column;
  gap: 1.75rem;
}

.location-item {
  display: flex;
  align-items: flex-start;
  gap: 1.25rem;
}

.location-item-icon {
  width: 48px;
  height: 48px;
  background: rgba(220, 38, 38, 0.12);
  border: 1px solid var(--border-accent);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--red-light);
  flex-shrink: 0;
}

.location-item-icon svg {
  width: 24px;
  height: 24px;
}

.location-item h4 {
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 0.3rem;
}

.location-item p {
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.5;
}

/* ==========================================================================
   PRE-FOOTER CTA SECTION
   ========================================================================== */
.cta {
  padding: 5rem 0;
  background-color: var(--navy-950);
}

.cta-box {
  background: linear-gradient(135deg, rgba(22, 26, 41, 0.9) 0%, rgba(33, 39, 58, 0.9) 100%);
  border: 1px solid var(--border-accent);
  border-radius: var(--radius-lg);
  padding: 4rem 2rem;
  text-align: center;
  position: relative;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(220, 38, 38, 0.15);
}

.cta-subtitle {
  color: #94a3b8;
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  display: block;
  margin-top: 1.5rem;
  margin-bottom: 2rem;
}

.cta-box h2 {
  font-size: 2.75rem;
  font-weight: 900;
  margin-bottom: 1rem;
}

.cta-box p {
  color: #cbd5e1;
  font-size: 1.1rem;
  max-width: 680px;
  margin: 0 auto;
  line-height: 1.6;
}

.cta-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.25rem;
  flex-wrap: wrap;
  margin-top: 0.5rem;
}

.btn-whatsapp-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  padding: 0.85rem 2.2rem;
  background: #25d366;
  color: #ffffff;
  border-radius: var(--radius-full);
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 800;
  text-decoration: none;
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.btn-whatsapp-pill:hover {
  background: #20bd5a;
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(37, 211, 102, 0.55);
  color: #ffffff;
}

.btn-phone-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  padding: 0.85rem 2.2rem;
  background: rgba(15, 18, 29, 0.9);
  color: #ffffff;
  border: 1.5px solid rgba(220, 38, 38, 0.4);
  border-radius: var(--radius-full);
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 800;
  text-decoration: none;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.btn-phone-pill:hover {
  background: rgba(220, 38, 38, 0.15);
  border-color: #ef4444;
  box-shadow: 0 0 20px rgba(220, 38, 38, 0.4);
  transform: translateY(-2px);
  color: #ffffff;
}

/* ==========================================================================
   FOOTER
   ========================================================================== */
.footer {
  background-color: #05060b;
  border-top: 1px solid var(--border-subtle);
  padding: 5rem 0 2rem 0;
  color: var(--navy-300);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 3rem;
  margin-bottom: 4rem;
}

.footer-brand img {
  height: 52px;
  width: auto;
  margin-bottom: 1.25rem;
}

.footer-brand p {
  color: var(--navy-300);
  font-size: 0.92rem;
  line-height: 1.65;
  margin-bottom: 1.5rem;
}

.footer-social {
  display: flex;
  gap: 0.75rem;
}

.footer-social a {
  width: 40px;
  height: 40px;
  background: var(--navy-800);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-heading);
  transition: all var(--transition-fast);
}

.footer-social a:hover {
  background: var(--red-primary);
  border-color: var(--red-primary);
  transform: translateY(-3px);
}

.footer-col h4 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text-heading);
  margin-bottom: 1.25rem;
}

.footer-col a {
  display: block;
  color: var(--navy-300);
  font-size: 0.92rem;
  margin-bottom: 0.75rem;
  transition: color var(--transition-fast);
}

.footer-col a:hover {
  color: var(--red-bright);
}

.footer-bottom {
  border-top: 1px solid var(--border-subtle);
  padding-top: 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.85rem;
  color: var(--text-dim);
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-legal-links {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.footer-legal-links a {
  color: #94a3b8;
  text-decoration: none;
  font-size: 0.85rem;
  transition: color 0.2s ease;
}

.footer-legal-links a:hover {
  color: #ef4444;
}

.footer-legal-links .separator {
  color: #475569;
}

/* Legal Modals (Termos & Privacidade) */
.legal-modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(5, 6, 11, 0.75);
  backdrop-filter: blur(8px);
  z-index: 3000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.legal-modal-overlay.active {
  opacity: 1;
  visibility: visible;
}

.legal-modal-content {
  background: #0f172a;
  color: #e2e8f0;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-lg);
  max-width: 620px;
  width: 100%;
  max-height: 80vh;
  overflow-y: auto;
  padding: 2.25rem 2rem;
  position: relative;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.6);
}

.legal-modal-content h3 {
  color: #ffffff;
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 800;
  margin-bottom: 1.25rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  padding-bottom: 0.75rem;
}

.legal-modal-content p {
  color: #94a3b8;
  font-size: 0.9rem;
  line-height: 1.6;
  margin-bottom: 1rem;
}

/* Banner de Permissão de Coleta de Dados (LGPD - Sim / Não) */
.cookie-banner {
  position: fixed;
  bottom: 1.5rem;
  left: 1.5rem;
  max-width: 440px;
  background: rgba(15, 23, 42, 0.95);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(239, 68, 68, 0.4);
  border-radius: var(--radius-lg);
  padding: 1.25rem;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.6);
  z-index: 2500;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  transform: translateY(180%);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.cookie-banner.show {
  transform: translateY(0);
}

.cookie-banner p {
  font-size: 0.82rem;
  color: #cbd5e1;
  line-height: 1.45;
  margin: 0;
}

.cookie-banner-buttons {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.btn-cookie-accept {
  flex: 1;
  padding: 0.55rem 0.75rem;
  background: #ef4444;
  color: #ffffff;
  border: none;
  border-radius: var(--radius-sm);
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 0.82rem;
  cursor: pointer;
  transition: background 0.2s ease;
}

.btn-cookie-accept:hover {
  background: #dc2626;
}

.btn-cookie-deny {
  flex: 1;
  padding: 0.55rem 0.75rem;
  background: transparent;
  color: #94a3b8;
  border: 1px solid #334155;
  border-radius: var(--radius-sm);
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.82rem;
  cursor: pointer;
  transition: all 0.2s ease;
}

.btn-cookie-deny:hover {
  border-color: #64748b;
  color: #f1f5f9;
}

/* ==========================================================================
   LOCAL REQUEST™ MODAL COMPONENT (Local Map Official)
   ========================================================================== */
.local-request-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(5, 6, 11, 0.4);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  z-index: 2000;
  display: flex;
  align-items: flex-end;
  justify-content: flex-end;
  padding: 1.25rem;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.local-request-overlay.active {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.local-request-modal {
  width: 100%;
  max-width: 310px;
  background: #ffffff;
  color: #1e293b;
  border-radius: var(--radius-lg);
  box-shadow: 0 15px 45px rgba(0, 0, 0, 0.35);
  padding: 0.9rem 1rem;
  position: relative;
  transform: translateX(30px) scale(0.95);
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  border: 1px solid rgba(0, 0, 0, 0.08);
}

.local-request-overlay.active .local-request-modal {
  transform: translateX(0) scale(1);
}

.modal-close-btn {
  position: absolute;
  top: 0.65rem;
  right: 0.65rem;
  background: #f1f5f9;
  border: none;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #64748b;
  cursor: pointer;
  transition: all var(--transition-fast);
}

.modal-close-btn:hover {
  background: #e2e8f0;
  color: #0f172a;
}

.modal-header-brand {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  margin-bottom: 0.4rem;
  padding-right: 1.5rem;
}

.modal-header-brand img {
  height: 22px;
  width: auto;
}

.modal-brand-info h4 {
  font-family: var(--font-heading);
  font-size: 0.82rem;
  font-weight: 800;
  color: #0f172a;
  line-height: 1.1;
}

.modal-brand-info span {
  font-size: 0.62rem;
  color: var(--red-primary);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.modal-progress-bar-container {
  margin-bottom: 0.4rem;
}

.modal-progress-text {
  display: flex;
  justify-content: space-between;
  font-size: 0.65rem;
  font-weight: 700;
  color: #64748b;
  margin-bottom: 0.2rem;
}

.modal-progress-track {
  width: 100%;
  height: 4px;
  background: #e2e8f0;
  border-radius: var(--radius-full);
  overflow: hidden;
}

.modal-progress-fill {
  height: 100%;
  width: 33.33%;
  background: linear-gradient(90deg, var(--red-primary), var(--red-light));
  border-radius: var(--radius-full);
  transition: width 0.4s ease;
}

.modal-titles {
  margin-bottom: 0.45rem;
}

.modal-titles h3 {
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 800;
  color: #0f172a;
  margin-bottom: 0.1rem;
}

.modal-titles p {
  font-size: 0.7rem;
  color: #64748b;
}

.modal-form {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
}

.form-group label {
  font-family: var(--font-heading);
  font-size: 0.7rem;
  font-weight: 700;
  color: #334155;
  display: flex;
  align-items: center;
  gap: 0.2rem;
}

.form-control {
  width: 100%;
  padding: 0.38rem 0.6rem;
  border: 1.5px solid #cbd5e0;
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 0.78rem;
  color: #0f172a;
  background: #f8fafc;
  transition: all var(--transition-fast);
}

.form-control:focus {
  outline: none;
  border-color: var(--red-primary);
  background: #ffffff;
  box-shadow: 0 0 0 2px rgba(220, 38, 38, 0.15);
}

.form-control.error {
  border-color: #ef4444;
  background: #fff5f5;
}

.btn-modal-submit {
  width: 100%;
  padding: 0.5rem 0.75rem;
  background: linear-gradient(135deg, var(--whatsapp) 0%, var(--whatsapp-hover) 100%);
  color: #ffffff;
  border: none;
  border-radius: var(--radius-sm);
  font-family: var(--font-heading);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
  cursor: pointer;
  box-shadow: 0 3px 12px rgba(37, 211, 102, 0.3);
  transition: all var(--transition-normal);
  margin-top: 0.2rem;
}

.btn-modal-submit:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 18px rgba(37, 211, 102, 0.4);
}

.modal-value-prop {
  font-size: 0.65rem;
  color: #64748b;
  text-align: center;
  margin-top: 0.4rem;
  line-height: 1.3;
}

/* Floating WhatsApp Button */
.floating-whatsapp-btn {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  z-index: 1900;
  width: 52px;
  height: 52px;
  background: linear-gradient(135deg, var(--whatsapp) 0%, var(--whatsapp-hover) 100%);
  color: #ffffff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.45);
  transition: all var(--transition-normal);
  text-decoration: none;
}

.floating-whatsapp-btn:hover {
  transform: scale(1.08) translateY(-2px);
  box-shadow: 0 10px 28px rgba(37, 211, 102, 0.55);
}

/* ==========================================================================
   RESPONSIVIDADE (MOBILE & TABLET)
   ========================================================================== */
@media (max-width: 1024px) {
  .hero h1 { font-size: 2.8rem; }
  .trust-items, .features-grid, .steps-grid { grid-template-columns: repeat(2, 1fr); }
  .categories-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .nav-links {
    position: fixed;
    top: 84px;
    left: 0;
    width: 100%;
    background: rgba(8, 10, 17, 0.98);
    backdrop-filter: blur(15px);
    flex-direction: column;
    padding: 2rem 1.5rem;
    gap: 1.5rem;
    border-bottom: 1px solid var(--border-subtle);
    transform: translateY(-150%);
    transition: transform var(--transition-normal);
  }

  .nav-links.active {
    transform: translateY(0);
  }

  .mobile-toggle {
    display: block;
  }

  .hero h1 { font-size: 2.25rem; }
  .hero-stats { grid-template-columns: repeat(2, 1fr); }
  .about-grid, .location-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .trust-items, .features-grid, .steps-grid, .categories-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; gap: 1rem; text-align: center; }
  .cta-box h2 { font-size: 2rem; }
}
