/* ==========================================================================
   Power Auto Peças - Design System & Stylesheet (Ferro Velho Mundial Layout Line)
   Color Palette: Deep Metallic Navy (#071224) & Premium Gold (#D4A344 / #F5C756)
   Typography: Outfit (Headings) & Inter (Body text)
   ========================================================================== */

:root {
  /* Color Tokens */
  --bg-dark: #071224;
  --bg-card: #0D1B30;
  --bg-card-hover: #132747;
  --bg-glass: rgba(13, 27, 48, 0.85);
  
  --primary: #D4A344;
  --primary-light: #F5C756;
  --primary-dark: #A87D25;
  --primary-gradient: linear-gradient(135deg, #F5C756 0%, #D4A344 50%, #9E7420 100%);
  --gold-glow: 0 0 25px rgba(212, 163, 68, 0.3);

  --text-main: #FFFFFF;
  --text-body: #E2E8F0;
  --text-muted: #94A3B8;

  --wsp-green: #25D366;
  --wsp-hover: #20BA5A;

  --border-subtle: rgba(226, 232, 240, 0.1);
  --border-gold: rgba(212, 163, 68, 0.3);
  --border-gold-hover: rgba(245, 199, 86, 0.6);

  /* Typography */
  --font-heading: 'Outfit', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;

  /* Spacing & Layout */
  --container-max: 1240px;
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --radius-pill: 50px;

  /* Transitions & Shadows */
  --transition-fast: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-normal: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --shadow-card: 0 10px 30px -10px rgba(0, 0, 0, 0.6);
  --shadow-gold: 0 8px 25px -5px rgba(212, 163, 68, 0.35);
}

/* Reset & Base Setup */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

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

body {
  background-color: var(--bg-dark);
  color: var(--text-body);
  font-family: var(--font-body);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

a {
  color: inherit;
  text-decoration: none;
  transition: var(--transition-fast);
}

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

ul {
  list-style: none;
}

/* Typography Helpers */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  color: var(--text-main);
  font-weight: 700;
  line-height: 1.25;
}

.highlight {
  color: #F5C756;
  background: none !important;
  -webkit-background-clip: unset !important;
  -webkit-text-fill-color: #F5C756 !important;
  display: inline;
  font-weight: 800;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.8);
}

/* Container */
.container {
  width: 90%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 15px;
}

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

.header.scrolled {
  background: rgba(7, 18, 36, 0.98);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
}

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

.header-logo {
  display: flex;
  align-items: center;
  gap: 12px;
}

.header-logo img {
  width: 44px;
  height: 44px;
  border-radius: 8px;
  object-fit: cover;
  border: 1px solid var(--border-gold);
}

.header-logo-text {
  font-family: var(--font-heading);
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--text-main);
  letter-spacing: -0.5px;
}

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

.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
}

.nav-links a {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--text-body);
}

.nav-links a:hover {
  color: var(--primary-light);
}

.nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 22px;
  background: var(--wsp-green);
  color: #FFFFFF !important;
  border-radius: var(--radius-pill);
  font-weight: 700;
  font-size: 0.95rem;
  box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
  transition: var(--transition-normal);
}

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

.mobile-toggle {
  display: none;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 8px;
  flex-direction: column;
  gap: 6px;
}

.mobile-toggle span {
  width: 26px;
  height: 2.5px;
  background: var(--text-main);
  border-radius: 2px;
  transition: var(--transition-fast);
}

/* ==========================================================================
   HERO SECTION
   ========================================================================== */
.hero {
  position: relative;
  min-height: 100vh;
  padding-top: 140px;
  padding-bottom: 90px;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.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: center;
}

.hero-bg-overlay {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
  background: linear-gradient(
    90deg,
    rgba(5, 12, 24, 0.96) 0%,
    rgba(5, 12, 24, 0.88) 50%,
    rgba(5, 12, 24, 0.65) 100%
  );
  pointer-events: none;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 120px;
  background: linear-gradient(to bottom, rgba(7, 18, 36, 0) 0%, var(--bg-dark) 100%);
  z-index: 2;
  pointer-events: none;
}

.hero-glow-1 {
  display: block;
  position: absolute;
  top: -10%;
  left: -5%;
  width: 50vw;
  height: 50vw;
  max-width: 600px;
  max-height: 600px;
  background: radial-gradient(circle, rgba(212, 163, 68, 0.22) 0%, rgba(7, 18, 36, 0) 70%);
  z-index: 2;
  pointer-events: none;
  filter: blur(50px);
}

.hero-glow-2 {
  display: block;
  position: absolute;
  bottom: 0%;
  right: -5%;
  width: 45vw;
  height: 45vw;
  max-width: 550px;
  max-height: 550px;
  background: radial-gradient(circle, rgba(37, 211, 102, 0.15) 0%, rgba(7, 18, 36, 0) 70%);
  z-index: 2;
  pointer-events: none;
  filter: blur(60px);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 36px;
  align-items: center;
  position: relative;
  z-index: 3;
}

@media (max-width: 991px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .hero-request-box {
    max-width: 380px;
    margin: 0 auto;
    width: 100%;
  }
}

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

/* Local Request Card - Compact White Card Style */
.local-request-card {
  background: #FFFFFF;
  border-radius: 16px;
  padding: 16px 16px 12px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.45);
  color: #111827;
  font-family: var(--font-body);
}

.lr-header {
  margin-bottom: 8px;
}

.lr-header-info {
  display: flex;
  align-items: center;
  gap: 8px;
}

.lr-logo {
  width: 32px;
  height: 32px;
  border-radius: 6px;
  object-fit: cover;
  border: 1px solid var(--border-gold);
}

.lr-brand-name {
  font-family: var(--font-heading);
  font-size: 0.88rem;
  font-weight: 800;
  color: #0F172A;
  margin: 0;
  line-height: 1.2;
}

.lr-brand-subtitle {
  display: block;
  font-family: var(--font-heading);
  font-size: 0.62rem;
  font-weight: 800;
  color: #D4A344;
  letter-spacing: 0.5px;
  margin-top: 1px;
}

.lr-progress-container {
  margin-bottom: 8px;
}

.lr-progress-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.75rem;
  margin-bottom: 3px;
}

.lr-progress-title {
  color: #64748B;
  font-weight: 500;
}

.lr-progress-step {
  color: #0F172A;
  font-weight: 700;
}

.lr-progress-bar {
  width: 100%;
  height: 3px;
  background: #E2E8F0;
  border-radius: 2px;
  overflow: hidden;
}

.lr-progress-fill {
  height: 100%;
  background: #D4A344;
  border-radius: 2px;
  transition: width 0.3s ease;
}

.lr-title-block {
  margin-bottom: 8px;
}

.lr-main-title {
  font-size: 1.05rem;
  font-weight: 800;
  color: #0F172A;
  margin: 0 0 2px 0;
  line-height: 1.2;
}

.lr-subtitle {
  font-size: 0.74rem;
  color: #64748B;
  margin: 0;
}

.lr-form {
  display: flex;
  flex-direction: column;
  gap: 7px;
}

.lr-field {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.lr-label {
  font-size: 0.78rem;
  font-weight: 700;
  color: #1E293B;
  display: flex;
  align-items: center;
  gap: 4px;
}

.lr-icon {
  font-size: 0.82rem;
}

.lr-input {
  width: 100%;
  padding: 7px 10px;
  background: #F8FAFC;
  border: 1px solid #E2E8F0;
  border-radius: 8px;
  font-size: 0.82rem;
  color: #0F172A;
  transition: border-color 0.2s, box-shadow 0.2s;
  outline: none;
}

.lr-input:focus {
  border-color: #25D366;
  background: #FFFFFF;
  box-shadow: 0 0 0 2px rgba(37, 211, 102, 0.15);
}

.lr-input::placeholder {
  color: #94A3B8;
}

.lr-submit-btn {
  width: 100%;
  padding: 10px;
  margin-top: 4px;
  background: #25D366;
  color: #FFFFFF;
  border: none;
  border-radius: 10px;
  font-family: var(--font-heading);
  font-size: 0.84rem;
  font-weight: 800;
  letter-spacing: 0.3px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  cursor: pointer;
  box-shadow: 0 4px 15px rgba(37, 211, 102, 0.35);
  transition: transform 0.2s, background 0.2s, box-shadow 0.2s;
}

.lr-submit-btn:hover {
  background: #20BD5A;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.45);
}

.lr-disclaimer {
  font-size: 0.68rem;
  color: #64748B;
  text-align: center;
  margin: 6px 0 0 0;
  line-height: 1.3;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 18px;
  background: rgba(7, 18, 36, 0.75);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid var(--border-gold);
  border-radius: var(--radius-pill);
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--primary-light);
  margin-bottom: 24px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
}

.hero-badge svg {
  color: var(--primary-light);
}

.hero h1 {
  font-size: clamp(2.2rem, 4.5vw, 3.4rem);
  margin-bottom: 20px;
  letter-spacing: -0.5px;
  text-shadow: 0 3px 12px rgba(0, 0, 0, 0.85), 0 1px 3px rgba(0, 0, 0, 0.9);
}

.hero-description {
  font-size: 0.98rem;
  line-height: 1.55;
  color: #FFFFFF;
  margin-bottom: 32px;
  max-width: 600px;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.85), 0 1px 3px rgba(0, 0, 0, 0.9);
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 16px 32px;
  background: linear-gradient(135deg, #F5C756 0%, #E5A200 100%);
  color: #0B0E14;
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 800;
  border-radius: var(--radius-md);
  box-shadow: 0 8px 25px rgba(245, 199, 86, 0.35);
  transition: var(--transition-normal);
  border: none;
  cursor: pointer;
}

.btn-primary:hover {
  background: linear-gradient(135deg, #FFD56B 0%, #F5B000 100%);
  color: #000000;
  transform: translateY(-3px);
  box-shadow: 0 12px 30px rgba(245, 199, 86, 0.5);
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 16px 28px;
  background: rgba(255, 255, 255, 0.06);
  color: var(--text-main);
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 600;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-subtle);
  transition: var(--transition-normal);
}

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

/* Quick Search Card in Hero */
.search-card {
  background: var(--bg-card);
  border: 1px solid var(--border-gold);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  box-shadow: var(--shadow-card), var(--gold-glow);
  position: relative;
}

.search-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--primary-gradient);
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
}

.search-card-header {
  margin-bottom: 22px;
}

.search-card-title {
  font-size: 1.4rem;
  margin-bottom: 6px;
}

.search-card-subtitle {
  font-size: 0.9rem;
  color: var(--text-muted);
}

.quick-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

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

.form-label {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-body);
  display: flex;
  align-items: center;
  gap: 6px;
}

.form-input {
  width: 100%;
  padding: 12px 16px;
  background: rgba(7, 18, 36, 0.8);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-sm);
  color: var(--text-main);
  font-family: var(--font-body);
  font-size: 0.95rem;
  outline: none;
  transition: var(--transition-fast);
}

.form-input:focus {
  border-color: var(--primary-light);
  box-shadow: 0 0 0 3px rgba(212, 163, 68, 0.15);
}

.form-input::placeholder {
  color: var(--text-muted);
}

/* ==========================================================================
   SECTIONS COMMON STYLES
   ========================================================================== */
section {
  padding: 95px 0;
  position: relative;
}

.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 16px;
  background: rgba(212, 163, 68, 0.1);
  border: 1px solid var(--border-gold);
  border-radius: var(--radius-pill);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--primary-light);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 14px;
}

.section-title {
  font-size: clamp(2rem, 3.5vw, 2.75rem);
  margin-bottom: 16px;
  letter-spacing: -0.5px;
}

.section-subtitle {
  color: var(--text-muted);
  font-size: 1.1rem;
  max-width: 680px;
  margin: 0 auto 48px auto;
}

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

/* ==========================================================================
   SOBRE NÓS SECTION
   ========================================================================== */
.about {
  background: rgba(13, 27, 48, 0.3);
}

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

.about-image {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  border: 1px solid var(--border-gold);
}

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

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

.about-content p {
  font-size: 1.05rem;
  color: var(--text-body);
  margin-bottom: 18px;
}

.about-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 28px;
}

.about-feature {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 16px;
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-sm);
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--text-main);
}

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

/* ==========================================================================
   DIFERENCIAIS SECTION
   ========================================================================== */
.features {
  padding: 65px 0;
}

.features .section-subtitle {
  margin-bottom: 32px;
}

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

.feature-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  padding: 22px 20px;
  transition: var(--transition-normal);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
}

.feature-card:hover {
  background: var(--bg-card-hover);
  border-color: var(--border-gold);
  transform: translateY(-4px);
  box-shadow: var(--shadow-card);
}

.feature-icon {
  width: 44px;
  height: 44px;
  background: rgba(212, 163, 68, 0.12);
  border: 1px solid var(--border-gold);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-light);
  margin-bottom: 14px;
  flex-shrink: 0;
}

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

.feature-card h3 {
  font-size: 1.08rem;
  font-weight: 700;
  margin-bottom: 8px;
  line-height: 1.3;
}

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

/* ==========================================================================
   PEÇAS / CATEGORIAS SECTION
   ========================================================================== */
.categories {
  background: rgba(13, 27, 48, 0.2);
}

.categories-header {
  text-align: center;
  margin-bottom: 48px;
}

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

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

.category-card:target {
  border-color: var(--primary-light);
  box-shadow: 0 0 30px rgba(245, 199, 86, 0.45);
  transform: translateY(-6px);
}

.category-card:hover {
  border-color: var(--border-gold-hover);
  transform: translateY(-6px);
  box-shadow: var(--shadow-card), 0 0 20px rgba(212, 163, 68, 0.15);
}

.category-img {
  width: 100%;
  height: 190px;
  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;
  padding: 20px 20px 8px 20px;
}

.category-card p {
  color: var(--text-muted);
  font-size: 0.9rem;
  padding: 0 20px 20px 20px;
  flex-grow: 1;
}

.category-btn {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 20px;
  background: rgba(7, 18, 36, 0.7);
  border-top: 1px solid var(--border-subtle);
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--primary-light);
  transition: var(--transition-fast);
}

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

/* ==========================================================================
   COMO COMPRAR SECTION
   ========================================================================== */
.how-it-works-header {
  text-align: center;
  margin-bottom: 50px;
}

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

/* Linha conectora da timeline */
.steps-timeline::before {
  content: '';
  position: absolute;
  top: 25px;
  left: 12%;
  right: 12%;
  height: 2px;
  background: linear-gradient(90deg, rgba(245, 199, 86, 0.2) 0%, rgba(245, 199, 86, 0.85) 50%, rgba(245, 199, 86, 0.2) 100%);
  z-index: 1;
}

.step-node {
  background: transparent;
  border: none;
  padding: 12px 8px;
  position: relative;
  z-index: 2;
  transition: var(--transition-normal);
  text-align: center;
  cursor: pointer;
}

.step-number {
  width: 50px;
  height: 50px;
  background: #F5C756;
  color: #071224;
  font-family: var(--font-heading);
  font-weight: 900;
  font-size: 1.4rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px auto;
  box-shadow: 0 0 15px rgba(245, 199, 86, 0.4);
  position: relative;
  z-index: 2;
  transition: all 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
}

/* Efeito de luz intensa (Lâmpada / Glow) ao passar o mouse */
.step-node:hover .step-number {
  background: #FFE600;
  color: #000000;
  transform: scale(1.28);
  box-shadow: 
    0 0 20px #FFE600,
    0 0 40px rgba(255, 230, 0, 0.9),
    0 0 65px rgba(245, 199, 86, 0.75),
    0 0 95px rgba(245, 199, 86, 0.4);
}

.step-node:hover h3 {
  color: #F5C756;
}

.step-node h3 {
  font-size: 1.15rem;
  margin-bottom: 10px;
  transition: color 0.3s ease;
}

.step-node p {
  font-size: 0.9rem;
  color: var(--text-muted);
}

/* ==========================================================================
   FAQ SECTION
   ========================================================================== */
.faq {
  background: rgba(13, 27, 48, 0.2);
}

.faq-header {
  text-align: center;
  margin-bottom: 48px;
}

.faq-list {
  max-width: 860px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

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

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

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

.faq-question svg {
  color: var(--primary-light);
  transition: transform 0.3s ease;
  flex-shrink: 0;
}

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

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

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

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

/* ==========================================================================
   LOCALIZAÇÃO E CONTATO SECTION
   ========================================================================== */
.location-header {
  text-align: center;
  margin-bottom: 48px;
}

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

.location-map {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border-gold);
  box-shadow: var(--shadow-card);
  min-height: 380px;
}

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

.location-info {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 40px 36px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 24px;
}

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

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

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

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

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

/* ==========================================================================
   PRE-FOOTER CTA SECTION
   ========================================================================== */
.cta {
  padding: 60px 0 90px 0;
}

.cta-box {
  background: linear-gradient(135deg, #0D1B30 0%, #132747 100%);
  border: 1px solid var(--border-gold);
  border-radius: var(--radius-lg);
  padding: 56px 40px;
  text-align: center;
  box-shadow: var(--shadow-card), var(--gold-glow);
  position: relative;
  overflow: hidden;
}

.cta-box h2 {
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  margin-bottom: 14px;
}

.cta-box p {
  color: var(--text-body);
  font-size: 1.1rem;
  max-width: 680px;
  margin: 0 auto 20px auto;
}

.cta-subtitle {
  display: inline-block;
  font-size: 0.85rem;
  font-weight: 800;
  letter-spacing: 1.5px;
  color: var(--primary-light);
  margin-bottom: 32px;
}

.cta-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.btn-whatsapp-pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 36px;
  background: var(--wsp-green);
  color: #FFFFFF;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.05rem;
  border-radius: var(--radius-pill);
  box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4);
  transition: var(--transition-normal);
}

.btn-whatsapp-pill:hover {
  background: var(--wsp-hover);
  transform: translateY(-3px);
  box-shadow: 0 12px 30px rgba(37, 211, 102, 0.55);
}

.btn-phone-pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 32px;
  background: rgba(255, 255, 255, 0.08);
  color: var(--text-main);
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.05rem;
  border-radius: var(--radius-pill);
  border: 1px solid var(--border-subtle);
  transition: var(--transition-normal);
}

.btn-phone-pill:hover {
  border-color: var(--border-gold);
  background: rgba(255, 255, 255, 0.15);
  transform: translateY(-2px);
}

/* ==========================================================================
   FOOTER
   ========================================================================== */
.footer {
  background: #040A14;
  border-top: 1px solid var(--border-subtle);
  padding: 70px 0 30px 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 0.8fr 0.8fr 1fr;
  gap: 40px;
  margin-bottom: 50px;
}

.footer-brand img {
  width: 50px;
  height: 50px;
  border-radius: 8px;
  border: 1px solid var(--border-gold);
  margin-bottom: 16px;
}

.footer-brand p {
  color: var(--text-muted);
  font-size: 0.92rem;
  line-height: 1.6;
  margin-bottom: 20px;
}

.footer-social {
  display: flex;
  gap: 12px;
}

.footer-social a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid var(--border-subtle);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-main);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.footer-social a.social-ig:hover,
.footer-social a[aria-label="Instagram"]:hover,
.footer-social a[href*="instagram"]:hover {
  background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%) !important;
  border-color: #E1306C !important;
  color: #FFFFFF !important;
  transform: translateY(-4px) !important;
  box-shadow: 0 6px 20px rgba(225, 48, 108, 0.45) !important;
}

.footer-social a.social-fb:hover,
.footer-social a[aria-label="Facebook"]:hover,
.footer-social a[href*="facebook"]:hover {
  background: #1877F2 !important;
  border-color: #1877F2 !important;
  color: #FFFFFF !important;
  transform: translateY(-4px) !important;
  box-shadow: 0 6px 20px rgba(24, 119, 242, 0.45) !important;
}

.footer-social a.social-wsp:hover,
.footer-social a[aria-label="WhatsApp"]:hover,
.footer-social a[href*="wa.me"]:hover,
.footer-social a[href*="whatsapp"]:hover {
  background: #25D366 !important;
  border-color: #25D366 !important;
  color: #FFFFFF !important;
  transform: translateY(-4px) !important;
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.45) !important;
}

.footer-col h4 {
  font-size: 1.1rem;
  margin-bottom: 20px;
  color: var(--text-main);
}

.footer-col a {
  display: block;
  color: var(--text-muted);
  font-size: 0.92rem;
  margin-bottom: 10px;
}

.footer-col a:hover {
  color: var(--primary-light);
  transform: translateX(4px);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 28px;
  padding-bottom: 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
  padding-right: 90px;
}

.footer-copy {
  font-size: 0.88rem;
  color: #94A3B8;
  line-height: 1.5;
  max-width: 580px;
}

.footer-legal {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}

.footer-legal .legal-link,
.footer-legal a {
  color: #94A3B8 !important;
  font-size: 0.88rem;
  font-weight: 500;
  text-decoration: none;
  transition: all 0.25s ease;
  position: relative;
  padding: 4px 0;
}

.footer-legal .legal-link:hover,
.footer-legal a:hover {
  color: var(--primary-light) !important;
  text-shadow: 0 0 12px rgba(212, 163, 68, 0.4);
  transform: translateY(-1px);
}

.footer-legal .legal-divider {
  color: rgba(212, 163, 68, 0.35);
  font-size: 0.9rem;
  user-select: none;
}

/* ==========================================================================
   COOKIE CONSENT BANNER (LGPD COMPLIANT)
   ========================================================================== */
.cookie-banner {
  position: fixed;
  bottom: 24px;
  left: 24px;
  z-index: 1800;
  max-width: 420px;
  width: calc(100% - 48px);
  pointer-events: none;
  display: none;
}

.cookie-banner.active {
  display: block;
  pointer-events: auto;
}

.cookie-card {
  pointer-events: auto;
  background: rgba(6, 14, 28, 0.94);
  border: 1px solid rgba(212, 163, 68, 0.35);
  border-radius: 16px;
  padding: 24px 22px 20px 22px;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.75), 0 0 24px rgba(212, 163, 68, 0.12);
  animation: cookieSlideUp 0.5s cubic-bezier(0.16, 1, 0.3, 1) forwards;
  transition: transform 0.35s ease, opacity 0.35s ease;
}

.cookie-card.closing {
  transform: translateY(20px);
  opacity: 0;
}

@keyframes cookieSlideUp {
  from {
    transform: translateY(40px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

.cookie-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
}

.cookie-icon-wrapper {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: rgba(212, 163, 68, 0.12);
  border: 1px solid rgba(212, 163, 68, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-light);
  flex-shrink: 0;
}

.cookie-title {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 700;
  color: #FFFFFF;
  line-height: 1.2;
}

.cookie-badge {
  display: inline-block;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  color: #10B981;
  background: rgba(16, 185, 129, 0.12);
  border: 1px solid rgba(16, 185, 129, 0.3);
  padding: 1px 7px;
  border-radius: 20px;
  margin-top: 2px;
}

.cookie-desc {
  font-size: 0.88rem;
  color: #CBD5E1;
  line-height: 1.55;
  margin-bottom: 18px;
}

.cookie-actions {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 12px;
}

.cookie-btn {
  padding: 10px 18px;
  border-radius: 8px;
  font-family: var(--font-heading);
  font-size: 0.88rem;
  font-weight: 700;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  transition: all 0.25s ease;
  border: none;
  flex: 1 1 auto;
}

.cookie-btn-accept {
  background: linear-gradient(135deg, #D4A344 0%, #E8B958 100%);
  color: #071224;
  box-shadow: 0 4px 14px rgba(212, 163, 68, 0.35);
}

.cookie-btn-accept:hover {
  background: linear-gradient(135deg, #E0B050 0%, #F5C768 100%);
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(212, 163, 68, 0.5);
}

.cookie-btn-reject {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: #E2E8F0;
}

.cookie-btn-reject:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.3);
  color: #FFFFFF;
  transform: translateY(-2px);
}

.cookie-footer-link {
  text-align: center;
}

.cookie-footer-link a {
  font-size: 0.78rem;
  color: #94A3B8;
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: color 0.2s ease;
}

.cookie-footer-link a:hover {
  color: var(--primary-light);
}

@media (max-width: 640px) {
  .cookie-banner {
    bottom: 16px;
    left: 14px;
    right: 14px;
    width: auto;
    max-width: none;
  }
  
  .cookie-card {
    padding: 18px 16px 16px 16px;
  }
  
  .cookie-actions {
    flex-direction: column;
  }
  
  .cookie-btn {
    width: 100%;
  }
}

/* ==========================================================================
   FLOATING WHATSAPP BUTTON
   ========================================================================== */
.floating-wsp {
  position: fixed;
  bottom: 28px;
  right: 28px;
  width: 60px;
  height: 60px;
  background: var(--wsp-green);
  color: #FFFFFF;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 25px rgba(37, 211, 102, 0.5);
  z-index: 999;
  transition: var(--transition-normal);
}

.floating-wsp:hover {
  background: var(--wsp-hover);
  transform: scale(1.1);
  box-shadow: 0 12px 30px rgba(37, 211, 102, 0.7);
}

.floating-wsp svg {
  width: 32px;
  height: 32px;
}

/* ==========================================================================
   MODAL COMPONENT (LOCAL REQUEST™)
   ========================================================================== */
.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(4, 10, 20, 0.75);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding: 24px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

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

.modal-overlay .local-request-card, .modal-card {
  position: relative;
  max-width: 340px;
  width: 100%;
  max-height: 95vh;
  overflow-y: auto;
  transform: translateX(60px);
  transition: transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
}

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

.modal-close {
  position: absolute;
  top: 10px;
  right: 12px;
  width: 26px;
  height: 26px;
  background: #F1F5F9;
  border-radius: 50%;
  border: none;
  font-size: 1.15rem;
  color: #64748B;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--transition-fast);
  line-height: 1;
  z-index: 10;
}

.modal-close:hover {
  background: #E2E8F0;
  color: #0F172A;
}

.modal-header-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
}

.modal-header-brand img {
  width: 42px;
  height: 42px;
  border-radius: 8px;
  border: 1px solid var(--border-gold);
}

.modal-header-title h3 {
  font-size: 1.15rem;
  line-height: 1.2;
}

.modal-header-title span {
  font-size: 0.8rem;
  color: var(--text-muted);
}

.modal-progress-bar {
  width: 100%;
  height: 4px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 2px;
  margin-bottom: 20px;
  overflow: hidden;
}

.modal-progress-fill {
  width: 75%;
  height: 100%;
  background: var(--primary-gradient);
}

.modal-body-title {
  font-size: 1.35rem;
  margin-bottom: 4px;
}

.modal-body-sub {
  font-size: 0.88rem;
  color: var(--text-muted);
  margin-bottom: 20px;
}

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

.modal-field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.modal-field label {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-body);
}

.modal-field input {
  width: 100%;
  padding: 12px 14px;
  background: rgba(7, 18, 36, 0.8);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-sm);
  color: var(--text-main);
  font-family: var(--font-body);
  font-size: 0.92rem;
  outline: none;
}

.modal-field input:focus {
  border-color: var(--primary-light);
}

.modal-submit-btn {
  width: 100%;
  padding: 15px;
  background: var(--wsp-green);
  color: #FFFFFF;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1rem;
  border-radius: var(--radius-md);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 10px;
  transition: var(--transition-normal);
}

.modal-submit-btn:hover {
  background: var(--wsp-hover);
}

.modal-value-prop {
  font-size: 0.8rem;
  color: var(--text-muted);
  text-align: center;
  margin-top: 16px;
}

/* ==========================================================================
   RESPONSIVE DESIGN (MEDIA QUERIES)
   ========================================================================== */
@media (max-width: 1024px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .about-grid, .location-grid {
    grid-template-columns: 1fr;
  }

  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .categories-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .steps-timeline {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .nav-links {
    position: fixed;
    top: 80px;
    left: 0;
    width: 100%;
    background: #071224;
    flex-direction: column;
    padding: 30px;
    gap: 20px;
    border-bottom: 1px solid var(--border-gold);
    transform: translateY(-150%);
    opacity: 0;
    transition: var(--transition-normal);
  }

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

  .mobile-toggle {
    display: flex;
  }

  .features-grid, .categories-grid, .steps-timeline, .footer-grid {
    grid-template-columns: 1fr;
  }

  .about-features {
    grid-template-columns: 1fr;
  }

  .cta-box {
    padding: 40px 20px;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
}
