/* ==========================================================================
   Design System Ultra-Premium — A Casa do Latoeiro (São Jorge / Sucatinha Style)
   Tipografia Idêntica ao Auto Peças & Desmanche São Jorge (Outfit & Inter)
   Colorimetria Oficial Harmonizada com a Logo (Azul Real #024794 & Branco #ffffff)
   ========================================================================== */

@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 Azul Real Harmonizada com a Logo A Casa do Latoeiro */
  --blue-royal: #024794;
  --blue-royal-hover: #003775;
  --blue-royal-light: #38bdf8;
  --blue-royal-bright: #7dd3fc;
  --blue-glow: rgba(2, 71, 148, 0.45);

  --electric-blue: #2563eb;

  /* 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(56, 189, 248, 0.3);
  --border-accent-strong: rgba(56, 189, 248, 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 */
/* Tags e Títulos de Seção Centralizados */
.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.3rem 0.9rem;
  background: rgba(2, 71, 148, 0.2);
  border: 1px solid var(--border-accent);
  border-radius: var(--radius-full);
  color: var(--blue-royal-light);
  font-family: var(--font-heading);
  font-size: 0.70rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin: 0 auto 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: 0 auto 0.85rem;
  letter-spacing: -0.03em;
  text-align: center;
}

.section-subtitle {
  font-family: var(--font-body);
  color: var(--text-muted);
  font-size: 1.1rem;
  font-weight: 400;
  max-width: 820px;
  margin: 0 auto 3rem;
  line-height: 1.6;
  text-align: center;
}

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

.btn-primary:hover {
  transform: translateY(-3px) scale(1.02);
  background: linear-gradient(135deg, var(--electric-blue) 0%, var(--blue-royal) 100%);
  box-shadow: 0 10px 35px rgba(37, 99, 235, 0.55);
  color: #ffffff !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(--blue-royal-light);
  color: #ffffff;
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.5);
}

/* Header Transparente sem separação (Integrado ao Hero) */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: transparent;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  border-bottom: none;
  transition: var(--transition-normal);
}

.header.scrolled {
  background: rgba(8, 10, 17, 0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.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(--blue-royal-light);
  box-shadow: 0 0 15px var(--blue-glow);
}

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

.header-logo-text span {
  color: var(--blue-royal-light);
  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(--blue-royal-light);
  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(--blue-royal) 0%, var(--electric-blue) 100%);
  color: #ffffff !important;
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 0.95rem;
  border-radius: var(--radius-full);
  box-shadow: 0 4px 15px var(--blue-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(37, 99, 235, 0.5);
  color: #ffffff !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(1.05);
  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.78) 50%, rgba(8, 10, 17, 0.4) 100%);
}

.hero-glow-1 {
  position: absolute;
  top: 10%;
  left: 5%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(2, 71, 148, 0.35) 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(56, 189, 248, 0.2) 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(2, 71, 148, 0.25);
  border: 1px solid var(--border-accent-strong);
  border-radius: var(--radius-full);
  color: var(--blue-royal-light);
  font-family: var(--font-heading);
  font-size: 0.78rem;
  font-weight: 800;
  margin-bottom: 1.5rem;
  box-shadow: 0 0 20px var(--blue-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(--blue-royal-light);
  background: linear-gradient(135deg, #7dd3fc 0%, #38bdf8 50%, #2563eb 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 HARMONIOSO */
.hero-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  padding-top: 2rem;
  border-top: 1px solid var(--border-subtle);
  width: 100%;
  max-width: 1000px;
  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(--blue-royal-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(--blue-royal-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: 1rem;
  right: 1rem;
  background: rgba(8, 10, 17, 0.82);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(56, 189, 248, 0.3);
  padding: 0.5rem 1rem;
  border-radius: 50px;
  text-align: center;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
  transition: all 0.25s ease;
}

.about-image-badge:hover {
  background: rgba(2, 71, 148, 0.9);
  border-color: rgba(56, 189, 248, 0.6);
  transform: translateY(-2px);
}

.about-image-badge a {
  color: #ffffff;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.82rem;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.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(--blue-royal-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(--blue-royal-light);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.5), 0 0 20px var(--blue-glow);
  background: var(--bg-card-hover);
}

.feature-icon {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-md);
  background: rgba(2, 71, 148, 0.2);
  border: 1px solid var(--border-accent);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--blue-royal-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 IDÊNTICO AO SÃO JORGE) */
.categories {
  padding: 80px 0;
  background: var(--navy-950);
}

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

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

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

.category-img {
  width: 100%;
  height: 160px;
  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.1rem;
  font-weight: 800;
  padding: 1rem 1rem 0.35rem;
  color: #fff;
}

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

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

.category-card:hover .category-btn {
  background: rgba(2, 71, 148, 0.3);
  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: 820px;
  margin: 0 auto;
  line-height: 1.6;
}

.steps-grid {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  max-width: 1150px;
  margin: 0 auto;
}

/* Linha conectora horizontal entre as etapas */
.steps-grid::before {
  content: '';
  position: absolute;
  top: 28px;
  left: 12%;
  right: 12%;
  height: 2px;
  background: rgba(56, 189, 248, 0.25);
  box-shadow: 0 0 8px rgba(56, 189, 248, 0.4);
  z-index: 0;
}

.step-card {
  position: relative;
  z-index: 1;
  text-align: center;
  background: transparent;
  border: none;
  padding: 0 10px;
  cursor: pointer;
  transition: transform 0.3s ease;
}

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

.step-number {
  width: 56px;
  height: 56px;
  background: linear-gradient(135deg, var(--blue-royal), var(--electric-blue));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.35rem;
  color: #ffffff;
  box-shadow: 0 0 20px rgba(37, 99, 235, 0.6);
  border: 4px solid var(--navy-950);
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.step-card:hover .step-number {
  transform: scale(1.15);
  background: linear-gradient(135deg, #38bdf8 0%, #2563eb 100%);
  border-color: #38bdf8;
  box-shadow: 0 0 35px rgba(56, 189, 248, 0.95), 0 0 60px rgba(37, 99, 235, 0.7);
}

.step-card h3 {
  font-family: var(--font-heading);
  font-size: 1.12rem;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 0.6rem;
  line-height: 1.25;
  transition: color 0.3s ease, text-shadow 0.3s ease;
}

.step-card:hover h3 {
  color: var(--blue-royal-light);
  text-shadow: 0 0 12px rgba(56, 189, 248, 0.5);
}

.step-card p {
  font-family: var(--font-body);
  font-size: 0.88rem;
  color: var(--navy-200);
  line-height: 1.5;
  margin: 0;
  transition: color 0.3s ease;
}

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

/* FAQ ACCORDION */
.faq {
  padding: 120px 0;
  background: var(--navy-900);
  text-align: center;
}

.faq-list {
  max-width: 760px;
  margin: 48px auto 0;
  text-align: left;
}

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

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

.faq-question {
  width: 100%;
  padding: 20px 24px;
  background: transparent;
  border: none;
  color: #ffffff;
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 600;
  text-align: left;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}

.faq-question svg {
  width: 18px;
  height: 18px;
  transition: transform var(--transition-normal);
  color: var(--blue-royal-light);
  flex-shrink: 0;
}

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

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
  background: rgba(4, 8, 30, 0.7);
}

.faq-answer-content {
  padding: 20px 24px;
  border-top: 1px solid var(--border-subtle);
  color: var(--navy-200);
  font-size: 0.95rem;
  line-height: 1.6;
}

.faq-item.active .faq-answer {
  max-height: 500px;
}

/* LOCATION SECTION */
.location {
  padding: 120px 0;
  background: var(--navy-950);
  text-align: center;
}

.location-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 40px;
  margin-top: 48px;
  text-align: left;
}

.location-map {
  border-radius: var(--radius-xl);
  overflow: hidden;
  border: 1px solid var(--border-subtle);
  height: 420px;
}

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

.location-info {
  display: flex;
  flex-direction: column;
  gap: 24px;
  justify-content: center;
}

.location-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.location-item-icon {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-md);
  background: rgba(2, 71, 148, 0.2);
  border: 1px solid var(--border-accent);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--blue-royal-light);
  flex-shrink: 0;
}

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

.location-item h4 {
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 4px;
}

.location-item p {
  font-size: 0.9rem;
  color: var(--navy-300);
}

/* CTA BOX */
.cta-box {
  background: linear-gradient(135deg, rgba(8, 18, 40, 0.95), rgba(4, 8, 30, 0.98));
  border: 1px solid var(--border-accent-strong);
  border-radius: var(--radius-xl);
  padding: 60px 40px;
  text-align: center;
  box-shadow: var(--shadow-lg), var(--shadow-glow);
  margin-bottom: 60px;
}

.cta-box h2 {
  font-size: 2.25rem;
  font-weight: 800;
  margin-bottom: 16px;
}

.cta-box p {
  color: var(--navy-200);
  font-size: 1.1rem;
  max-width: 580px;
  margin: 0 auto 30px;
}

/* LOCAL REQUEST MODAL (Widget Flutuante à Direita - Estilo localmap.com.br / RD Station) */
.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: transparent;
  z-index: 2000;
  pointer-events: none;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.25s ease, visibility 0.25s ease;
}

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

#localRequestModal .local-request-modal {
  position: fixed;
  top: 75px;
  right: 20px;
  width: 290px;
  max-width: calc(100vw - 24px);
  height: auto;
  max-height: calc(100vh - 90px);
  background: #ffffff;
  color: #0f172a;
  border-radius: 14px;
  border: 1px solid #e2e8f0;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
  padding: 0.9rem 0.85rem;
  overflow-y: auto;
  transform: translateY(12px) scale(0.96);
  opacity: 0;
  transition: transform 0.25s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.25s ease;
}

#localRequestModal.active .local-request-modal {
  transform: translateY(0) scale(1);
  opacity: 1;
}

/* Modal Legal centralizado na mesma página */
#legalModal {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 1.5rem;
}

#legalModal.active {
  background: rgba(8, 10, 17, 0.82);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

#legalModal .legal-modal-box {
  position: relative;
  width: 100%;
  max-width: 580px;
  background: #111523;
  color: #f8fafc;
  padding: 1.75rem 1.75rem 1.25rem;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 25px 70px rgba(0, 0, 0, 0.7);
  max-height: 85vh;
  display: flex;
  flex-direction: column;
  transform: translateY(20px) scale(0.95);
  opacity: 0;
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.3s ease;
}

#legalModal.active .legal-modal-box {
  transform: translateY(0) scale(1);
  opacity: 1;
}

#legalModalBody {
  overflow-y: auto;
  padding-right: 6px;
  flex: 1;
  margin-bottom: 0.75rem;
}

#legalModalBody h2 {
  font-family: var(--font-heading);
  font-size: 1.45rem;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 0.75rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  padding-bottom: 0.75rem;
}

#legalModalBody p {
  font-size: 0.92rem;
  color: #cbd5e1;
  line-height: 1.6;
  margin-bottom: 0.75rem;
}

#legalModalBody h4 {
  color: #ffffff !important;
}

#legalModalBody ul {
  margin-left: 1.25rem;
  margin-bottom: 1rem;
}

#legalModalBody li {
  font-size: 0.9rem;
  color: #cbd5e1;
  line-height: 1.65;
  margin-bottom: 0.5rem;
}

#legalModalBody strong {
  color: #ffffff;
}

.legal-modal-footer {
  display: flex;
  justify-content: flex-end;
  padding-top: 0.85rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.btn-legal-understand {
  background: #22c55e;
  color: #052e16;
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 0.92rem;
  padding: 0.6rem 1.75rem;
  border-radius: 50px;
  border: none;
  cursor: pointer;
  box-shadow: 0 4px 20px rgba(34, 197, 94, 0.4);
  transition: all 0.2s ease;
}

.btn-legal-understand:hover {
  background: #16a34a;
  transform: translateY(-2px);
  box-shadow: 0 6px 25px rgba(34, 197, 94, 0.6);
}

.modal-close-btn {
  position: absolute;
  top: 0.65rem;
  right: 0.65rem;
  background: #f1f5f9;
  color: #64748b;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  transition: background 0.2s ease, color 0.2s ease;
}

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

.modal-header-brand {
  display: flex;
  align-items: center;
  gap: 7px;
  margin-bottom: 0.45rem;
  padding-bottom: 0.4rem;
  border-bottom: 1px solid #f1f5f9;
}

.modal-avatar-wrap {
  position: relative;
  width: 28px;
  height: 28px;
  flex-shrink: 0;
}

.modal-avatar-wrap img {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  object-fit: cover;
  border: 1.5px solid #e2e8f0;
}

.modal-avatar-wrap .online-dot {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 7px;
  height: 7px;
  background: #22c55e;
  border: 1px solid #ffffff;
  border-radius: 50%;
}

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

.modal-brand-info p {
  font-size: 0.65rem;
  color: #64748b;
  font-weight: 500;
}

.modal-progress-wrap {
  display: none;
}

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

.modal-titles h3 {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 800;
  color: #0f172a;
  margin-bottom: 1px;
  letter-spacing: -0.02em;
}

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

.form-group {
  margin-bottom: 0.4rem;
}

.form-group label {
  display: block;
  font-size: 0.7rem;
  font-weight: 700;
  color: #334155;
  margin-bottom: 2px;
}

.form-control {
  width: 100%;
  padding: 5px 8px;
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 6px;
  color: #0f172a;
  font-size: 0.78rem;
  outline: none;
  transition: all 0.2s ease;
}

.form-control::placeholder {
  color: #94a3b8;
}

.form-control:focus {
  border-color: #2563eb;
  background: #ffffff;
  box-shadow: 0 0 0 2px rgba(37, 99, 235, 0.12);
}

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

.btn-submit-req {
  width: 100%;
  padding: 0.55rem 0.75rem;
  background: linear-gradient(135deg, #65b32e 0%, #4ea221 100%);
  color: #ffffff;
  font-family: var(--font-heading);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.02em;
  border-radius: 30px;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  box-shadow: 0 3px 10px rgba(101, 179, 46, 0.3);
  margin-top: 0.5rem;
  transition: all 0.2s ease;
}

.btn-submit-req:hover {
  background: linear-gradient(135deg, #74c535 0%, #56b225 100%);
  transform: translateY(-1px);
  box-shadow: 0 5px 14px rgba(101, 179, 46, 0.4);
}

.pulse-dot-white {
  width: 6px;
  height: 6px;
  background: #ffffff;
  border-radius: 50%;
  box-shadow: 0 0 5px rgba(255, 255, 255, 0.8);
  animation: pulse-dot-white 1.8s infinite;
}

@keyframes pulse-dot-white {
  0% { transform: scale(0.95); opacity: 0.8; }
  50% { transform: scale(1.15); opacity: 1; }
  100% { transform: scale(0.95); opacity: 0.8; }
}

.modal-value-prop-box {
  margin-top: 0.5rem;
  background: #f0f7ff;
  border: 1px solid #dbeafe;
  border-radius: 7px;
  padding: 0.4rem 0.6rem;
  display: flex;
  align-items: center;
  gap: 5px;
}

.modal-value-prop-box .icon {
  font-size: 0.78rem;
  flex-shrink: 0;
}

.modal-value-prop-box p {
  font-size: 0.68rem;
  color: #1e40af;
  line-height: 1.3;
  margin: 0;
  font-weight: 500;
}

/* FLOATING WHATSAPP BUTTON */
.whatsapp-float {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: var(--whatsapp);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4), 0 0 20px rgba(37, 211, 102, 0.4);
  z-index: 999;
  transition: transform var(--transition-fast);
  animation: pulse-wa 2s infinite;
}

.whatsapp-float:hover {
  transform: scale(1.08) translateY(-3px);
  background: var(--whatsapp-hover);
}

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

/* FOOTER */
.footer {
  background: #020512;
  border-top: 1px solid var(--border-subtle);
  padding: 80px 0 30px;
  color: var(--navy-300);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
  gap: 48px;
  margin-bottom: 60px;
}

.footer-logo img {
  height: 64px;
  width: 64px;
  border-radius: 14px;
  border: 1px solid var(--border-accent);
  box-shadow: 0 0 20px var(--blue-glow);
  margin-bottom: 1.25rem;
  object-fit: cover;
}

.footer-social {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 1.5rem;
}

.social-btn {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: rgba(22, 26, 41, 0.8);
  border: 1px solid var(--border-subtle);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--navy-200);
  transition: var(--transition-normal);
}

.social-btn.social-instagram:hover {
  background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285aeb 90%);
  border-color: #e1306c;
  color: #ffffff;
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(225, 48, 108, 0.55);
}

.social-btn.social-whatsapp:hover {
  background: linear-gradient(135deg, #25d366 0%, #1da851 100%);
  border-color: #25d366;
  color: #ffffff;
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.55);
}

.social-btn.social-location:hover {
  background: linear-gradient(135deg, #ea4335 0%, #c5221f 100%);
  border-color: #ea4335;
  color: #ffffff;
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(234, 67, 53, 0.55);
}

.footer-col h4 {
  font-size: 1.1rem;
  font-weight: 700;
  color: #ffffff;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 16px;
}

.footer-links li {
  margin-bottom: 10px;
}

.footer-links a:hover {
  color: var(--blue-royal-light);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.85rem;
  color: var(--navy-300);
  gap: 15px;
  flex-wrap: wrap;
}

/* RESPONSIVO */
@media (max-width: 992px) {
  .hero-grid, .about-grid, .location-grid {
    grid-template-columns: 1fr;
  }
  .features-grid, .categories-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .mobile-toggle {
    display: block;
  }
  .nav-links {
    display: none;
  }
  .features-grid, .categories-grid, .steps-grid, .footer-grid {
    grid-template-columns: 1fr;
  }
  .steps-grid::before {
    display: none;
  }
  .hero-stats {
    grid-template-columns: repeat(2, 1fr);
  }
  .trust-items {
    gap: 20px;
  }
}

@media (max-width: 480px) {
  #localRequestModal .local-request-modal {
    top: auto;
    bottom: 16px;
    right: 12px;
    left: 12px;
    width: auto;
    max-width: none;
    max-height: calc(100vh - 32px);
  }

  .cookie-banner {
    left: 12px;
    right: 12px;
    bottom: 12px;
    max-width: none;
  }
}

/* BANNER DE COOKIES NA ENTRADA DO SITE */
.cookie-banner {
  position: fixed;
  bottom: 24px;
  left: 24px;
  z-index: 1900;
  max-width: 420px;
  background: rgba(8, 18, 40, 0.95);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid var(--border-accent);
  border-radius: 16px;
  padding: 1.1rem 1.25rem;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: opacity 0.4s ease, transform 0.4s ease, visibility 0.4s ease;
}

.cookie-banner.active {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.cookie-banner-content {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.cookie-banner-text strong {
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 800;
  color: #ffffff;
  display: block;
  margin-bottom: 3px;
}

.cookie-banner-text p {
  font-family: var(--font-body);
  font-size: 0.82rem;
  color: var(--navy-200);
  line-height: 1.45;
  margin: 0;
}

.cookie-banner-actions {
  display: flex;
  gap: 10px;
}

.btn-cookie-yes {
  flex: 1;
  padding: 0.6rem 0.85rem;
  background: #22c55e;
  color: #ffffff;
  border: none;
  border-radius: 8px;
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 0.82rem;
  cursor: pointer;
  transition: all 0.2s ease;
}

.btn-cookie-yes:hover {
  background: #16a34a;
  box-shadow: 0 4px 12px rgba(34, 197, 94, 0.4);
}

.btn-cookie-no {
  flex: 1;
  padding: 0.6rem 0.85rem;
  background: rgba(255, 255, 255, 0.1);
  color: var(--navy-200);
  border: 1px solid var(--border-subtle);
  border-radius: 8px;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.82rem;
  cursor: pointer;
  transition: all 0.2s ease;
}

.btn-cookie-no:hover {
  background: rgba(239, 68, 68, 0.2);
  color: #ffffff;
  border-color: #ef4444;
}
