/* ==========================================================================
   Design System Ultra-Premium — Sucatinha Peças Novas & Usadas
   Tipografia Idêntica ao Auto Peças & Desmanche São Jorge (Outfit & Inter)
   Colorimetria Harmonizada com a Logo e Hero 2 (Amber Gold & Deep Facade)
   ========================================================================== */

@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 {
  /* Colorimetria Amber Gold Harmonizada com a Logo e Hero 2 */
  --amber-gold: #f59e0b;
  --amber-gold-hover: #d97706;
  --amber-gold-light: #fbbf24;
  --amber-gold-bright: #fef08a;
  --amber-glow: rgba(245, 158, 11, 0.35);

  --electric-orange: #ea580c;

  /* Palette Dark Facade (São Jorge Style) */
  --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(245, 158, 11, 0.3);
  --border-accent-strong: rgba(245, 158, 11, 0.6);

  /* Texto */
  --text-heading: #ffffff;
  --text-main: #e2e8f0;
  --text-muted: #a0aec0;
  --text-dim: #718096;
  
  /* WhatsApp */
  --whatsapp: #25d366;
  --whatsapp-hover: #1da851;

  /* TIPOGRAFIA EXATA DO SÃO JORGE */
  --font-heading: 'Outfit', sans-serif;
  --font-body: 'Inter', sans-serif;

  /* Geometria */
  --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.3rem 0.9rem;
  background: rgba(245, 158, 11, 0.12);
  border: 1px solid var(--border-accent);
  border-radius: var(--radius-full);
  color: var(--amber-gold-light);
  font-family: var(--font-heading);
  font-size: 0.70rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 0.85rem;
}

.section-title {
  font-family: var(--font-heading);
  font-size: 2.75rem;
  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);
  color: var(--text-muted);
  font-size: 1.1rem;
  font-weight: 400;
  max-width: 680px;
  margin-bottom: 3rem;
  line-height: 1.6;
}

/* Botões Harmonizados Dourados */
.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  padding: 1.05rem 2.25rem;
  background: linear-gradient(135deg, var(--amber-gold) 0%, var(--amber-gold-hover) 100%);
  color: #0d0e12 !important;
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.05rem;
  border-radius: var(--radius-full);
  box-shadow: 0 6px 25px var(--amber-glow);
  cursor: pointer;
  border: none;
  transition: var(--transition-normal);
}

.btn-primary:hover {
  transform: translateY(-3px) scale(1.02);
  background: linear-gradient(135deg, var(--amber-gold-light) 0%, var(--amber-gold-hover) 100%);
  box-shadow: 0 10px 35px rgba(245, 158, 11, 0.55);
  color: #000000 !important;
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  padding: 1.05rem 2.25rem;
  background: rgba(22, 26, 41, 0.7);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: var(--text-heading);
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1rem;
  border-radius: var(--radius-full);
  cursor: pointer;
  transition: var(--transition-normal);
}

.btn-secondary:hover {
  background: rgba(33, 39, 58, 0.9);
  border-color: var(--amber-gold);
  color: #ffffff;
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.5);
}

/* Header Premium Translúcido Estilo São Jorge */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: rgba(8, 10, 17, 0.88);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(245, 158, 11, 0.2);
  transition: 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.85rem;
}

.header-logo img {
  height: 52px;
  width: 52px;
  border-radius: 50%;
  border: 2px solid var(--amber-gold);
  box-shadow: 0 0 15px var(--amber-glow);
}

.header-logo-text {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 900;
  color: var(--amber-gold-light);
  letter-spacing: -0.02em;
}

.header-logo-text span {
  color: #ffffff;
  display: block;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-top: -4px;
}

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

.nav-links a {
  font-family: var(--font-body);
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--navy-200);
  transition: var(--transition-fast);
  position: relative;
  padding: 0.35rem 0;
}

.nav-links a:hover {
  color: #ffffff;
}

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

.nav-links a:not(.nav-cta):hover::after {
  width: 100%;
}

.nav-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.7rem 2.2rem;
  background: linear-gradient(135deg, var(--amber-gold) 0%, var(--amber-gold-hover) 100%);
  color: #0d0e12 !important;
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 0.95rem;
  border-radius: var(--radius-full);
  box-shadow: 0 4px 15px var(--amber-glow);
  white-space: nowrap;
  min-width: 140px;
  text-align: center;
}

.nav-cta svg {
  flex-shrink: 0;
  width: 18px;
  height: 18px;
  display: block;
}

.nav-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(245, 158, 11, 0.5);
  color: #000000 !important;
}

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

.mobile-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: #fff;
  margin: 5px 0;
  transition: var(--transition-fast);
}

/* HERO SECTION COM HERO BACKGROUND */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 160px 0 50px;
  overflow: hidden;
  background: var(--navy-950);
}

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

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 85% center;
  transform: scale(0.75);
  transform-origin: right center;
  transition: transform 0.4s ease;
}

.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.72) 45%, rgba(8, 10, 17, 0.18) 100%);
}

.hero-glow-1 {
  position: absolute;
  top: 10%;
  left: 5%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(245, 158, 11, 0.22) 0%, transparent 70%);
  filter: blur(100px);
  z-index: 3;
  pointer-events: none;
}

.hero-glow-2 {
  position: absolute;
  bottom: 10%;
  right: 5%;
  width: 550px;
  height: 550px;
  background: radial-gradient(circle, rgba(234, 88, 12, 0.18) 0%, transparent 70%);
  filter: blur(120px);
  z-index: 3;
  pointer-events: none;
}

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

.hero-content {
  max-width: 780px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.35rem 1.05rem;
  background: rgba(245, 158, 11, 0.15);
  border: 1px solid var(--border-accent-strong);
  border-radius: var(--radius-full);
  color: var(--amber-gold-light);
  font-family: var(--font-heading);
  font-size: 0.78rem;
  font-weight: 800;
  margin-bottom: 1.5rem;
  box-shadow: 0 0 20px var(--amber-glow);
}

.hero h1 {
  font-family: var(--font-heading);
  font-size: 2.65rem;
  font-weight: 800;
  line-height: 1.18;
  color: #ffffff;
  margin-bottom: 1.25rem;
  letter-spacing: -0.03em;
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.7);
}

.hero h1 .highlight {
  display: inline-block;
  color: var(--amber-gold-light);
  background: linear-gradient(135deg, #fef08a 0%, #fbbf24 50%, #f59e0b 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-description {
  font-family: var(--font-body);
  font-size: 1.05rem;
  color: var(--navy-200);
  margin-bottom: 2.25rem;
  max-width: 650px;
  line-height: 1.65;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.7);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1.25rem;
  margin-bottom: 1.75rem;
}

/* HERO STATS 4 COLUNAS CENTRALIZADO E COMPACTO */
.hero-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  padding-top: 1.75rem;
  border-top: 1px solid var(--border-subtle);
  width: 100%;
  max-width: 680px;
  margin: 4.5rem auto 0;
  justify-items: center;
}

.hero-stat {
  text-align: center;
}

.hero-stat h3 {
  font-family: var(--font-heading);
  font-size: 1.65rem;
  font-weight: 800;
  color: var(--amber-gold-light);
  margin-bottom: 0.2rem;
  line-height: 1.1;
  letter-spacing: -0.02em;
}

.hero-stat p {
  font-family: var(--font-body);
  font-size: 0.88rem;
  color: var(--navy-300);
  margin: 0;
  line-height: 1.35;
  font-weight: 400;
}

/* TRUST BAR CENTRALIZADA */
.trust-bar {
  background: var(--navy-900);
  border-top: 1px solid var(--border-subtle);
  border-bottom: 1px solid var(--border-subtle);
  padding: 1.1rem 0;
}

.trust-items {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 2.5rem;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: var(--navy-100);
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.98rem;
}

.trust-item svg {
  color: var(--amber-gold-light);
  flex-shrink: 0;
}

/* SOBRE NÓS */
.about {
  padding: 120px 0;
  background: var(--navy-950);
}

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

.about-image {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.7);
  border: 1px solid var(--border-accent);
}

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

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

.about-image-badge {
  position: absolute;
  bottom: 1.5rem;
  left: 1.5rem;
  right: 1.5rem;
  background: rgba(8, 10, 17, 0.92);
  backdrop-filter: blur(12px);
  border: 1px solid var(--border-accent);
  padding: 1.1rem;
  border-radius: var(--radius-md);
  text-align: center;
}

.about-image-badge a {
  color: var(--amber-gold-light);
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.05rem;
}

.about-content h2 {
  font-family: var(--font-heading);
  font-size: 2.75rem;
  font-weight: 900;
  margin-bottom: 1.5rem;
  line-height: 1.15;
}

.about-content p {
  font-family: var(--font-body);
  color: var(--navy-200);
  margin-bottom: 1.35rem;
  font-size: 1.08rem;
}

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

.about-feature {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  background: var(--bg-card);
  padding: 1.1rem 1.35rem;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-subtle);
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 0.98rem;
}

.about-feature svg {
  color: var(--amber-gold-light);
  width: 22px;
  height: 22px;
}

/* DIFERENCIAIS HARMONIZADOS */
.features {
  padding: 70px 0;
  background: var(--navy-900);
  position: relative;
}

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

.feature-card {
  background: var(--bg-card);
  border: 1px solid var(--border-accent);
  border-radius: var(--radius-lg);
  padding: 1.5rem 1.75rem;
  transition: var(--transition-normal);
}

.feature-card:hover {
  transform: translateY(-5px);
  border-color: var(--amber-gold-light);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.5), 0 0 20px var(--amber-glow);
  background: var(--bg-card-hover);
}

.feature-icon {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-md);
  background: rgba(245, 158, 11, 0.12);
  border: 1px solid var(--border-accent);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--amber-gold-light);
  margin-bottom: 1rem;
}

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

.feature-card h3 {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 800;
  margin-bottom: 0.4rem;
}

.feature-card p {
  font-family: var(--font-body);
  color: var(--navy-300);
  font-size: 0.9rem;
  line-height: 1.5;
}

/* PEÇAS SECTION (CATÁLOGO COM FOTOS REAIS) */
.categories {
  padding: 120px 0;
  background: var(--navy-950);
}

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

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

.category-card:hover {
  transform: translateY(-10px);
  border-color: var(--border-accent);
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.7);
  background: var(--bg-card-hover);
}

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

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

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

.category-card h3 {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  font-weight: 800;
  padding: 1.35rem 1.35rem 0.5rem;
  color: #fff;
}

.category-card p {
  font-family: var(--font-body);
  color: var(--navy-300);
  font-size: 0.92rem;
  padding: 0 1.35rem 1.35rem;
  flex-grow: 1;
}

.category-btn {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.1rem 1.35rem;
  border-top: 1px solid var(--border-subtle);
  color: var(--amber-gold-light);
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 0.92rem;
  transition: var(--transition-fast);
}

.category-card:hover .category-btn {
  background: rgba(245, 158, 11, 0.12);
  color: #ffffff;
}

/* COMO COMPRAR */
.how-it-works {
  padding: 120px 0;
  background: var(--navy-950);
  text-align: center;
}

.how-it-works-header {
  margin-bottom: 4rem;
}

.how-it-works-header .section-title {
  font-size: 2.6rem;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 0.75rem;
  letter-spacing: -0.02em;
}

.how-it-works-header .section-subtitle {
  font-size: 1.1rem;
  color: #a0aec0;
  max-width: 650px;
  margin: 0 auto;
  line-height: 1.6;
}

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

.steps-grid::before {
  content: '';
  position: absolute;
  top: 25px;
  left: 12%;
  right: 12%;
  height: 2px;
  background: rgba(245, 158, 11, 0.45);
  z-index: 1;
}

.step-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  background: transparent;
  border: none;
  padding: 0;
  position: relative;
  z-index: 2;
  transition: transform var(--transition-normal);
  cursor: pointer;
}

.step-card:hover {
  transform: translateY(-6px);
}

.step-number {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--amber-gold) 0%, var(--amber-gold-hover) 100%);
  color: #0d0e12;
  font-family: var(--font-heading);
  font-weight: 900;
  font-size: 1.3rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  box-shadow: 0 0 20px rgba(245, 158, 11, 0.4);
  border: 1px solid rgba(254, 240, 138, 0.5);
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.step-card:hover .step-number {
  transform: scale(1.15);
  background: linear-gradient(135deg, #fef08a 0%, var(--amber-gold) 100%);
  box-shadow: 0 0 35px rgba(245, 158, 11, 0.95), 0 0 60px rgba(251, 191, 36, 0.7);
  border-color: #ffffff;
}

.step-card h3 {
  font-family: var(--font-heading);
  font-size: 1.02rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 0.65rem;
  line-height: 1.3;
  letter-spacing: -0.01em;
}

.step-card p {
  font-family: var(--font-body);
  color: #94a3b8;
  font-size: 0.82rem;
  line-height: 1.55;
  max-width: 250px;
  margin: 0 auto;
}

/* FAQ */
.faq {
  padding: 120px 0;
  background: var(--navy-950);
}

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

.faq-item {
  background: rgba(15, 18, 29, 0.75);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: var(--transition-fast);
}

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

.faq-question {
  width: 100%;
  padding: 1.25rem 1.6rem;
  background: none;
  border: none;
  color: #ffffff;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.05rem;
  letter-spacing: -0.01em;
  text-align: left;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
}

.faq-question svg {
  color: var(--amber-gold);
  transition: transform var(--transition-fast);
  flex-shrink: 0;
}

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

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s cubic-bezier(0, 1, 0, 1);
  background: rgba(8, 10, 17, 0.4);
}

.faq-item.active .faq-answer {
  max-height: 500px;
  transition: max-height 0.3s ease-in-out;
}

.faq-answer-content {
  padding: 1.25rem 1.6rem;
  font-family: var(--font-body);
  color: #cbd5e0;
  font-size: 0.95rem;
  line-height: 1.65;
  border-top: 1px solid var(--border-subtle);
}

/* LOCALIZAÇÃO E CONTATO */
.location {
  padding: 120px 0;
  background: var(--navy-900);
}

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

.location-map {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border-accent);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.7);
  height: 460px;
}

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

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

.location-item {
  display: flex;
  gap: 1.35rem;
}

.location-item-icon {
  width: 56px;
  height: 56px;
  border-radius: var(--radius-md);
  background: rgba(245, 158, 11, 0.12);
  border: 1px solid var(--border-accent);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--amber-gold-light);
  flex-shrink: 0;
}

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

.location-item h4 {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 800;
  margin-bottom: 0.35rem;
}

.location-item p {
  font-family: var(--font-body);
  color: var(--navy-200);
  font-size: 1rem;
}

/* PRE-FOOTER CTA */
.cta {
  padding: 100px 0;
  background: var(--navy-950);
}

.cta-box {
  background: linear-gradient(135deg, var(--navy-800) 0%, var(--navy-900) 100%);
  border: 1px solid var(--border-accent);
  border-radius: var(--radius-lg);
  padding: 5rem 2.5rem;
  text-align: center;
  position: relative;
  overflow: hidden;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.6);
}

.cta-subtitle {
  display: inline-block;
  color: var(--amber-gold-light);
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 0.92rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 0.85rem;
}

.cta-box h2 {
  font-family: var(--font-heading);
  font-size: 3rem;
  font-weight: 900;
  margin-bottom: 1.1rem;
}

.cta-box p {
  font-family: var(--font-body);
  color: var(--navy-200);
  font-size: 1.2rem;
  max-width: 660px;
  margin: 0 auto 2.75rem;
}

/* FOOTER */
.footer {
  background: #04050a;
  border-top: 1px solid var(--border-subtle);
  padding: 100px 0 35px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2.5fr 1fr 1fr 1.5fr;
  gap: 3.75rem;
  margin-bottom: 70px;
}

.footer-brand img {
  height: 64px;
  width: 64px;
  border-radius: 50%;
  border: 2px solid var(--amber-gold);
  margin-bottom: 1.35rem;
}

.footer-brand p {
  font-family: var(--font-body);
  color: var(--navy-300);
  font-size: 0.98rem;
  line-height: 1.65;
  margin-bottom: 1.75rem;
}

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

.footer-social a {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--navy-300);
  transition: var(--transition-fast);
}

.footer-social a.social-instagram:hover {
  background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
  color: #ffffff;
  border-color: #e1306c;
  box-shadow: 0 0 20px rgba(225, 48, 108, 0.6);
  transform: translateY(-3px);
}

.footer-social a.social-whatsapp:hover {
  background: #25d366;
  color: #ffffff;
  border-color: #25d366;
  box-shadow: 0 0 20px rgba(37, 211, 102, 0.6);
  transform: translateY(-3px);
}

.footer-col h4 {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 800;
  color: #fff;
  margin-bottom: 1.6rem;
}

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

.footer-col a:hover {
  color: var(--amber-gold-light);
}

.footer-bottom {
  padding-top: 35px;
  border-top: 1px solid var(--border-subtle);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1.2rem;
  font-family: var(--font-body);
  color: var(--navy-300);
  font-size: 0.88rem;
}

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

.footer-legal-links a {
  color: var(--navy-300);
  font-size: 0.85rem;
  transition: var(--transition-fast);
}

.footer-legal-links a:hover {
  color: var(--amber-gold-light);
  text-decoration: underline;
}

.legal-divider {
  color: var(--navy-600);
  font-size: 0.75rem;
}

.legal-modal-container {
  max-width: 650px;
  width: 90%;
}

.legal-modal-body {
  color: #e2e8f0;
  line-height: 1.65;
  font-family: var(--font-body);
}

.legal-modal-body h2 {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--amber-gold-light);
  margin-bottom: 1rem;
}

/* BOTÃO FLUTUANTE WHATSAPP */
.whatsapp-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 999;
  width: 66px;
  height: 66px;
  background: var(--whatsapp);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 35px rgba(37, 211, 102, 0.55);
  transition: var(--transition-normal);
  animation: pulse-whatsapp 2s infinite;
}

.whatsapp-float:hover {
  transform: scale(1.1);
  background: var(--whatsapp-hover);
}

@keyframes pulse-whatsapp {
  0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7); }
  70% { box-shadow: 0 0 0 20px rgba(37, 211, 102, 0); }
  100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}

/* COMPONENTE LOCAL REQUEST™ — ESTILO RD STATION (MINIMALISTA À DIREITA) */
.lr-modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.35);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  z-index: 2000;
  display: flex;
  align-items: flex-end;
  justify-content: flex-end;
  padding: 1.5rem;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.lr-modal-overlay.active {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.lr-modal-container {
  background: var(--navy-900);
  color: var(--text-main);
  width: 100%;
  max-width: 275px;
  border-radius: 12px;
  box-shadow: -8px 15px 35px rgba(0, 0, 0, 0.85), 0 0 15px var(--amber-glow);
  padding: 0.75rem 0.85rem;
  border: 1px solid var(--border-accent);
  position: relative;
  transform: translateX(120%);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.lr-modal-overlay.active .lr-modal-container {
  transform: translateX(0);
}

.lr-modal-close {
  position: absolute;
  top: 0.5rem;
  right: 0.5rem;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  width: 24px;
  height: 24px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #cbd5e0;
  cursor: pointer;
  transition: all 0.2s ease;
}

.lr-modal-close svg {
  width: 12px;
  height: 12px;
}

.lr-modal-close:hover {
  background: rgba(255, 255, 255, 0.18);
  color: #ffffff;
}

.lr-header {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.45rem;
  padding-bottom: 0.35rem;
  border-bottom: 1px solid var(--border-subtle);
}

.lr-logo-wrapper {
  position: relative;
}

.lr-logo-wrapper img {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: 1.5px solid var(--amber-gold);
}

.lr-status-dot {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 8px;
  height: 8px;
  background: #22c55e;
  border: 1.5px solid var(--navy-900);
  border-radius: 50%;
}

.lr-header-title h3 {
  font-family: var(--font-heading);
  font-size: 0.88rem;
  font-weight: 800;
  color: #ffffff;
  line-height: 1.1;
}

.lr-header-title span {
  font-size: 0.65rem;
  color: var(--navy-300);
  font-weight: 500;
}

.lr-progress-container {
  margin-bottom: 0.45rem;
}

.lr-progress-info {
  display: flex;
  justify-content: space-between;
  font-size: 0.65rem;
  font-weight: 700;
  color: var(--amber-gold-light);
  margin-bottom: 0.15rem;
}

.lr-progress-bar {
  width: 100%;
  height: 3px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 999px;
  overflow: hidden;
}

.lr-progress-fill {
  height: 100%;
  width: 25%;
  background: linear-gradient(90deg, var(--amber-gold), var(--whatsapp));
  border-radius: 999px;
  transition: width 0.3s ease;
}

.lr-title-block {
  margin-bottom: 0.45rem;
}

.lr-title-block h2 {
  font-family: var(--font-heading);
  font-size: 0.98rem;
  font-weight: 800;
  color: #ffffff;
  line-height: 1.2;
}

.lr-title-block p {
  font-size: 0.68rem;
  color: var(--navy-300);
}

.lr-form-group {
  margin-bottom: 0.35rem;
}

.lr-form-group label {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.68rem;
  font-weight: 700;
  color: var(--navy-200);
  margin-bottom: 0.15rem;
}

.lr-form-group label svg {
  color: var(--amber-gold-light);
  flex-shrink: 0;
}

.lr-input {
  width: 100%;
  padding: 0.35rem 0.6rem;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 6px;
  font-family: var(--font-body);
  font-size: 0.78rem;
  color: #ffffff;
  background: rgba(255, 255, 255, 0.05);
  outline: none;
  transition: border-color 0.2s ease, background-color 0.2s ease, box-shadow 0.2s ease;
}

.lr-input::placeholder {
  color: rgba(255, 255, 255, 0.35);
}

.lr-input:focus {
  border-color: var(--amber-gold);
  background: rgba(255, 255, 255, 0.08);
  box-shadow: 0 0 10px var(--amber-glow);
}

.lr-submit-btn {
  width: 100%;
  padding: 0.5rem;
  background: linear-gradient(135deg, #25d366 0%, #1da851 100%);
  color: #ffffff;
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 0.8rem;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  box-shadow: 0 3px 12px rgba(37, 211, 102, 0.4);
  margin-top: 0.3rem;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.lr-submit-btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 5px 15px rgba(37, 211, 102, 0.55);
}

.lr-note-box {
  background: rgba(37, 211, 102, 0.1);
  border: 1px solid rgba(37, 211, 102, 0.25);
  border-radius: 6px;
  padding: 0.35rem 0.5rem;
  margin-top: 0.35rem;
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.65rem;
  color: #e2e8f0;
  line-height: 1.25;
}

.lr-note-box svg {
  color: #25d366;
  flex-shrink: 0;
}

/* RESPONSIVIDADE */
@media (max-width: 1200px) {
  .categories-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .features-grid, .steps-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 900px) {
  .steps-grid::before {
    display: none;
  }
  .hero h1 {
    font-size: 1.85rem;
  }
  .about-grid, .location-grid {
    grid-template-columns: 1fr;
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
  .hero-stats {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .nav-links {
    display: none;
  }
  .mobile-toggle {
    display: block;
  }
  .categories-grid, .features-grid, .steps-grid {
    grid-template-columns: 1fr;
  }
  .hero-stats {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    max-width: 100%;
  }
  .hero-stat h3 {
    font-size: 1.25rem;
  }
  .footer-grid {
    grid-template-columns: 1fr;
  }
}
