/* ============================================
   Design Tokens
   ============================================ */

:root {
  /* Cores */
  --color-bg:        #000000;
  --color-accent:    #ff7e16;
  --color-text:      #fefefe;

  --color-accent-hover:   #e66d00;
  --color-accent-light:   rgba(255, 126, 22, 0.12);
  --color-accent-glow:    rgba(255, 126, 22, 0.25);
  --color-text-muted:     rgba(254, 254, 254, 0.6);
  --color-text-dim:       rgba(254, 254, 254, 0.35);
  --color-bg-elevated:    #0d0d0d;
  --color-bg-card:        #111111;
  --color-surface:        #0a0a0a;
  --color-border:         rgba(255, 255, 255, 0.06);

  /* Cores — seções claras */
  --color-bg-white:       #fefefe;
  --color-text-dark:      #111111;
  --color-text-muted-dark: rgba(0, 0, 0, 0.55);
  --color-border-dark:    rgba(0, 0, 0, 0.08);
  --color-bg-card-light:  #ffffff;
  --color-accent-light-bg: rgba(255, 126, 22, 0.08);

  /* Tipografia */
  --font-primary: 'Inter', system-ui, -apple-system, sans-serif;
  --font-heading: 'Oswald', 'Inter', system-ui, -apple-system, sans-serif;

  /* Espaçamento */
  --container-max: 1200px;
  --container-narrow: 860px;
  --section-gap: clamp(4rem, 8vw, 7.5rem);
  --card-radius: 12px;
  --btn-radius: 8px;

  /* Transições */
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-hover: cubic-bezier(0.85, 0, 0.15, 1);
}

/* ============================================
   Running Border (propriedade customizada)
   ============================================ */

@property --border-angle {
  syntax: '<angle>';
  initial-value: 0deg;
  inherits: false;
}

/* ============================================
   Reset & Base
   ============================================ */

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

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-primary);
  background: var(--color-bg);
  color: var(--color-text);
  line-height: 1.6;
  font-size: clamp(0.95rem, 1.5vw, 1.05rem);
  overflow-x: hidden;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
  transition: transform 0.5s var(--ease-hover);
}

/* SVGs — prevent giant icons */
svg {
  display: block;
  flex-shrink: 0;
}

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

ul { list-style: none; }

::selection {
  background: var(--color-accent);
  color: #000;
}

:focus-visible {
  outline: 2px solid var(--color-accent);
  outline-offset: 3px;
}

/* ============================================
   Utility Classes
   ============================================ */

.container {
  width: 100%;
  max-width: var(--container-max);
  margin-inline: auto;
  padding-inline: clamp(1rem, 4vw, 2rem);
}

.container--narrow {
  max-width: var(--container-narrow);
}

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

.mt-2 {
  margin-top: 2.5rem;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  border: 0;
  clip: rect(0, 0, 0, 0);
  overflow: hidden;
}

/* ============================================
   Buttons
   ============================================ */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-weight: 600;
  font-family: var(--font-primary);
  border: none;
  cursor: pointer;
  text-align: center;
  transition: background 0.3s var(--ease-hover), transform 0.3s var(--ease-hover), box-shadow 0.35s var(--ease-hover);
  border-radius: var(--btn-radius);
  white-space: nowrap;
  line-height: 1;
  padding: 1rem 2rem;
  font-size: 1.05rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  position: relative;
  overflow: hidden;
}

/* Subtle shine on hover */
.btn::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,0.15) 0%, transparent 50%);
  opacity: 0;
  transition: opacity 0.35s var(--ease-hover);
  pointer-events: none;
}

.btn:hover::after {
  opacity: 1;
}

.btn:active {
  transform: scale(0.96);
}

.btn--accent {
  background: #25D366;
  color: #fff;
}

.btn--accent {
  transition: background 0.3s var(--ease-hover), transform 0.35s var(--ease-hover), box-shadow 0.4s var(--ease-hover);
}

.btn--accent:hover {
  background: #1ebe5b;
  box-shadow: 0 14px 44px rgba(37, 211, 102, 0.42), 0 4px 14px rgba(37, 211, 102, 0.25), 0 0 0 6px rgba(37, 211, 102, 0.06);
  transform: translateY(-4px);
}

.btn--whatsapp {
  background: #25D366;
  color: #fff;
  border-radius: 10px;
  font-size: 1.1rem;
  padding: 1.1rem 2.25rem;
  transition: background 0.3s var(--ease-hover), transform 0.35s var(--ease-hover), box-shadow 0.4s var(--ease-hover);
}

.btn--whatsapp:hover {
  background: #1ebe5b;
  box-shadow: 0 14px 44px rgba(37, 211, 102, 0.42), 0 4px 14px rgba(37, 211, 102, 0.25), 0 0 0 6px rgba(37, 211, 102, 0.06);
  transform: translateY(-4px);
}

/* ============================================
   Header
   ============================================ */

.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding-block: 0.5rem;
  transition: background 0.4s var(--ease-out), box-shadow 0.4s var(--ease-out), padding 0.4s var(--ease-out), backdrop-filter 0.4s var(--ease-out);
  background: #ffffff;
  backdrop-filter: blur(0px);
  -webkit-backdrop-filter: blur(0px);
  box-shadow: 0 1px 0 rgba(0,0,0,0.06), 0 2px 8px rgba(0,0,0,0.06);
}

.header.scrolled {
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 1px 0 rgba(0,0,0,0.08), 0 4px 24px rgba(0,0,0,0.1);
  padding-block: 0.4rem;
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

/* Header Logo */
.header__logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  text-decoration: none;
}

.header__logo-img {
  height: 48px;
  width: auto;
  display: block;
  filter: none;
  transition: height 0.4s var(--ease-out), filter 0.4s var(--ease-out);
}

.header.scrolled .header__logo-img {
  filter: none;
}

@media (max-width: 480px) {
  .header__logo-img {
    height: 42px;
  }
}

/* Header Nav */
.header__nav {
  display: flex;
  gap: 0.25rem;
}

.header__nav a {
  padding: 0.5rem 0.85rem;
  font-size: 0.9rem;
  font-weight: 500;
  color: rgba(0, 0, 0, 0.65);
  border-radius: 6px;
  transition: color 0.25s var(--ease-hover), background 0.25s var(--ease-hover), transform 0.2s var(--ease-hover);
  display: inline-block;
}

.header__nav a:hover {
  color: #111111;
  background: rgba(255, 126, 22, 0.1);
  transform: translateY(-1px);
}

.header__nav a.active {
  color: var(--color-accent);
  background: rgba(255, 126, 22, 0.12);
  font-weight: 600;
}

/* Hamburger */
.header__hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  z-index: 1001;
}

.header__hamburger span {
  display: block;
  width: 26px;
  height: 2.5px;
  background: #1a1a1a;
  border-radius: 2px;
  transition: transform 0.3s var(--ease-out), opacity 0.3s;
  transform-origin: center;
}

.header__hamburger.active span:nth-child(1) {
  transform: translateY(7.5px) rotate(45deg);
}

.header__hamburger.active span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}

.header__hamburger.active span:nth-child(3) {
  transform: translateY(-7.5px) rotate(-45deg);
}

/* ============================================
   Hero
   ============================================ */

/* ============================================
   HERO / BANNER
   ============================================ */
.hero {
  position: relative;
  overflow: hidden;
  padding: 0;
  padding-top: 96px; /* espaço para header fixo (logo 80px + padding) */
  margin: 0;
  line-height: 0;
  font-size: 0;
}

@media (max-width: 640px) {
  .hero {
    padding-top: 86px;
  }
}

.hero__banner {
  width: 100%;
}

.hero__banner-link {
  display: block;
  cursor: pointer;
  transition: opacity var(--transition-fast);
}
.hero__banner-link:hover {
  opacity: 0.95;
}

.hero__banner-img {
  width: 100%;
  height: auto;
  display: block;
  animation: hero-reveal 1s var(--ease-out) forwards;
  will-change: transform;
}

@keyframes hero-reveal {
  from {
    opacity: 0;
    transform: scale(1.04);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

/* CTA WhatsApp sobre o banner */
.hero__cta {
  position: absolute;
  bottom: clamp(1.5rem, 4vw, 2.5rem);
  left: 50%;
  transform: translateX(-50%);
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.85rem 1.8rem;
  background: #25D366;
  color: #ffffff;
  font-weight: 700;
  font-size: clamp(0.9rem, 1.8vw, 1.05rem);
  text-decoration: none;
  border-radius: 50px;
  box-shadow:
    0 4px 24px rgba(37, 211, 102, 0.5),
    0 2px 8px rgba(0, 0, 0, 0.25);
  transition:
    transform 0.35s var(--ease-hover),
    box-shadow 0.35s var(--ease-hover),
    background 0.25s;
  white-space: nowrap;
  z-index: 10;
  animation: pulse-whatsapp 2.4s ease-in-out infinite;
}

.hero__cta:hover,
.hero__cta:focus-visible {
  transform: translateX(-50%) scale(1.06);
  background: #1ebe5b;
  box-shadow:
    0 6px 32px rgba(37, 211, 102, 0.65),
    0 3px 12px rgba(0, 0, 0, 0.3);
}

.hero__cta svg {
  flex-shrink: 0;
}

@keyframes pulse-whatsapp {
  0%, 100% { box-shadow: 0 4px 24px rgba(37, 211, 102, 0.5), 0 2px 8px rgba(0,0,0,0.25); }
  50%      { box-shadow: 0 4px 36px rgba(37, 211, 102, 0.75), 0 4px 16px rgba(0,0,0,0.30); }
}

/* ============================================
   Trust Bar (Faixa de Confiança)
   ============================================ */

.trust-bar {
  margin-top: 0;
  padding-top: 2rem;
  border-top: 1px solid var(--color-border);
}

.trust-bar__items {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem;
}

.trust-bar__item {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.9rem;
  color: var(--color-text-muted);
  font-weight: 500;
}

.trust-bar__icon {
  width: 22px;
  height: 22px;
  color: var(--color-accent);
}

.trust-bar__stars {
  color: var(--color-accent);
  font-size: 1rem;
  letter-spacing: 0.1em;
}

/* ============================================
   Sections (Shared)
   ============================================ */

.section {
  padding-block: var(--section-gap);
}

.section__header {
  text-align: center;
  margin-bottom: 3.5rem;
}

.section__label {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 700;
  font-family: var(--font-heading);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--color-accent);
  margin-bottom: 0.75rem;
}

.section__title {
  font-size: clamp(1.6rem, 4vw, 2.5rem);
  font-weight: 700;
  font-family: var(--font-heading);
  line-height: 1.2;
  letter-spacing: -0.015em;
  margin-bottom: 0.75rem;
}

.section__subtitle {
  font-size: 1.05rem;
  color: var(--color-text-muted);
  max-width: 550px;
  margin-inline: auto;
}

.section__cta {
  margin-top: 3rem;
  text-align: center;
}

/* ============================================
   Section Background Variants
   ============================================ */

/* --- White Background --- */
.section--white {
  background: var(--color-bg-white);
  color: var(--color-text-dark);
}

/* Segmentos: fundo limpo */
#segmentos.section--white {
  background: #fefefe;
}

/* Depoimentos: fundo preto, letras brancas, título laranja */
#depoimentos.section--orange {
  position: relative;
  background-color: #0d0d0d;
}

#depoimentos .container {
  position: relative;
  z-index: 1;
}

#depoimentos.section--orange .section__label {
  color: var(--color-accent);
}

#depoimentos.section--orange .section__title {
  color: var(--color-accent);
}

#depoimentos.section--orange .section__subtitle {
  color: var(--color-text-muted);
}

/* ============================================
   Diferenciais — Tema escuro
   ============================================ */

#diferenciais {
  position: relative;
  background-color: #0d0d0d;
}

#diferenciais .container {
  position: relative;
  z-index: 1;
}

#diferenciais .section__title {
  color: var(--color-accent);
}

#diferenciais .section__subtitle {
  color: var(--color-text-muted);
}

/* Cards brancos sobre fundo preto */
#diferenciais .feature-card {
  background: #ffffff;
  border: 1px solid rgba(0, 0, 0, 0.06);
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.08);
}

#diferenciais .feature-card__title {
  color: #111111;
}

#diferenciais .feature-card__desc {
  color: rgba(0, 0, 0, 0.6);
}

/* Hover nos cards brancos */
#diferenciais .feature-card:hover {
  border-color: rgba(255, 126, 22, 0.35);
  transform: translateY(-4px) scale(1.05);
  box-shadow:
    0 12px 40px rgba(0, 0, 0, 0.1),
    0 4px 16px rgba(0, 0, 0, 0.08);
}

#diferenciais .feature-card:hover .feature-card__icon {
  box-shadow: 0 8px 24px rgba(255, 126, 22, 0.25);
}

/* Highlight card com fundo branco */
#diferenciais .feature-card--highlight {
  border-color: rgba(255, 126, 22, 0.4);
  box-shadow: 0 0 0 1px rgba(255, 126, 22, 0.1), 0 6px 28px rgba(0, 0, 0, 0.08);
  background: #ffffff;
}

#diferenciais .feature-card--highlight:hover {
  border-color: rgba(255, 126, 22, 0.6);
  box-shadow:
    0 18px 52px rgba(0, 0, 0, 0.12),
    0 0 0 8px rgba(255, 126, 22, 0.08);
}

/* FAQ: fundo limpo */
/* FAQ: mesmo padrão de #marcas (cinza + textura sutil) */
#faq.section--white {
  position: relative;
  background-color: #f4f4f5;
}

#faq.section--white::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url('images/daf629f3-35ce-496b-9492-d226a09df9d3.png');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 0.10;
  pointer-events: none;
  z-index: 0;
}

#faq .container {
  position: relative;
  z-index: 1;
}

/* Processo: fundo limpo */
#processo.section--white {
  background: #fefefe;
}

/* Marcas: fundo cinza + textura sutil */
#marcas.section--orange {
  position: relative;
  background-color: #f4f4f5;
}

#marcas.section--orange::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url('images/daf629f3-35ce-496b-9492-d226a09df9d3.png');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 0.10;
  pointer-events: none;
  z-index: 0;
}

#marcas .container {
  position: relative;
  z-index: 1;
}

#marcas.section--orange .section__label {
  color: var(--color-accent);
}

#marcas.section--orange .section__title {
  color: #111111;
}

#marcas.section--orange .section__subtitle {
  color: rgba(0, 0, 0, 0.55);
}

.section--white .section__label {
  color: var(--color-accent);
}

.section--white .section__title {
  color: var(--color-text-dark);
}

.section--white .section__subtitle {
  color: var(--color-text-muted-dark);
}

/* Cards inside white sections */
.section--white .segment-card,
.section--white .part-card,
.section--white .feature-card,
.section--white .step-card,
.section--white .brand-card,
.section--white .testimonial-card,
.section--white .faq-item,
.section--white .reviews-badge {
  background: var(--color-bg-card-light);
  border-color: var(--color-border-dark);
}

/* Destaque: segment cards em seção branca com fundo levemente aquecido */
.section--white .segment-card {
  background: linear-gradient(180deg, #ffffff 0%, #fffaf6 100%);
  border-color: rgba(0, 0, 0, 0.07);
}

.section--white .segment-card__name,
.section--white .part-card__name,
.section--white .feature-card__title,
.section--white .step-card__title {
  color: var(--color-text-dark);
}

.section--white .feature-card__desc,
.section--white .step-card__desc,
.section--white .step-card__extra,
.section--white .segment-card__desc,
.section--white .testimonial-card__text {
  color: var(--color-text-muted-dark);
}

.section--white .testimonial-card__author {
  color: var(--color-text-muted-dark);
  border-top-color: var(--color-border-dark);
}

.section--white .testimonial-card__author strong {
  color: var(--color-text-dark);
}

.section--white .testimonial-card__text {
  color: var(--color-text-dark);
}

.section--white .reviews-badge__text {
  color: var(--color-text-muted-dark);
}

.section--white .faq-item__question {
  color: var(--color-text-dark);
}

.section--white .faq-item__answer {
  color: var(--color-text-muted-dark);
}

.section--white .brand-card {
  border-style: dashed;
  border-color: rgba(0, 0, 0, 0.12);
}

.section--white .brand-card__placeholder {
  color: rgba(0, 0, 0, 0.1);
}

.section--white .brand-card:hover {
  border-color: rgba(255, 126, 22, 0.4);
  background: var(--color-accent-light-bg);
}

.section--white .brand-card:hover .brand-card__placeholder {
  color: rgba(255, 126, 22, 0.3);
}

.section--white .testimonial-card__photo {
  border-color: rgba(255, 126, 22, 0.45);
  box-shadow: 0 0 24px rgba(255, 126, 22, 0.2);
}

.section--white .testimonial-card:hover .testimonial-card__photo {
  border-color: var(--color-accent);
  box-shadow: 0 0 32px var(--color-accent-glow);
}

.section--white .step-card__extra strong {
  color: var(--color-text-dark);
}

/* Hover states for white sections */
.section--white .feature-card:hover {
  border-color: rgba(255, 126, 22, 0.35);
  transform: translateY(-4px) scale(1.02);
  box-shadow:
    0 12px 40px rgba(255, 126, 22, 0.10),
    0 4px 16px rgba(0, 0, 0, 0.10);
}
.section--white .part-card:hover,
.section--white .step-card:hover,
.section--white .testimonial-card:hover {
  border-color: rgba(255, 126, 22, 0.3);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
}

/* Segment card hover — white section */
.section--white .segment-card:hover {
  border-color: rgba(255, 126, 22, 0.35);
  box-shadow: 0 24px 64px rgba(255, 126, 22, 0.14), 0 8px 20px rgba(0, 0, 0, 0.08);
  background: linear-gradient(180deg, #ffffff 0%, #fff5ed 100%);
}

.section--white .faq-item.active {
  border-color: rgba(255, 126, 22, 0.35);
}

/* --- Orange Background --- */
.section--orange {
  background: var(--color-accent);
}

.section--orange .section__label {
  color: rgba(0, 0, 0, 0.65);
}

.section--orange .section__title {
  color: #000;
}

.section--orange .section__subtitle {
  color: rgba(0, 0, 0, 0.6);
}

/* Cards inside orange sections */
.section--orange .feature-card,
.section--orange .step-card,
.section--orange .segment-card,
.section--orange .part-card,
.section--orange .testimonial-card,
.section--orange .faq-item,
.section--orange .reviews-badge,
.section--orange .brand-card {
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.08);
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.04);
}

.section--orange .feature-card__title,
.section--orange .step-card__title,
.section--orange .segment-card__name,
.section--orange .part-card__name {
  color: var(--color-text-dark);
}

.section--orange .feature-card__desc,
.section--orange .step-card__desc,
.section--orange .step-card__extra,
.section--orange .segment-card__desc,
.section--orange .testimonial-card__text {
  color: var(--color-text-muted-dark);
}

.section--orange .testimonial-card__author {
  color: var(--color-text-muted-dark);
  border-top-color: var(--color-border-dark);
}

.section--orange .testimonial-card__author strong {
  color: var(--color-text-dark);
}

.section--orange .faq-item__question {
  color: var(--color-text-dark);
}

.section--orange .faq-item__answer {
  color: var(--color-text-muted-dark);
}

.section--orange .reviews-badge__text {
  color: var(--color-text-muted-dark);
}

.section--orange .reviews-badge__google-icon {
  background: var(--color-accent);
  color: #000;
}

.section--orange .brand-card__placeholder {
  color: rgba(0, 0, 0, 0.08);
}

.section--orange .brand-card:hover {
  border-color: rgba(255, 126, 22, 0.5);
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.1);
  background: #fff;
}

.section--orange .step-card__extra strong {
  color: var(--color-text-dark);
}

/* Hover for orange sections */
.section--orange .feature-card:hover {
  border-color: rgba(255, 126, 22, 0.35);
  transform: translateY(-4px) scale(1.05);
  box-shadow:
    0 12px 40px rgba(255, 126, 22, 0.14),
    0 4px 16px rgba(0, 0, 0, 0.12);
}
.section--orange .step-card:hover,
.section--orange .segment-card:hover,
.section--orange .part-card:hover,
.section--orange .testimonial-card:hover {
  border-color: rgba(0, 0, 0, 0.15);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.06);
}

.section--orange .faq-item.active {
  border-color: rgba(0, 0, 0, 0.2);
}

/* Step number remains orange circle */
.section--orange .step-card::before {
  background: var(--color-accent);
  color: #000;
}

/* Na seção laranja, ícones mantêm cores vibrantes; hover com sombra mais suave */
.section--orange .feature-card__icon {
  /* mantém o gradiente original definido pelas classes .icon--* */
}

.section--orange .feature-card:hover .feature-card__icon {
  box-shadow: 0 8px 24px rgba(255, 126, 22, 0.25);
}

/* Highlight card on orange section */
.section--orange .feature-card--highlight {
  border-color: rgba(255, 126, 22, 0.4);
  box-shadow: 0 0 0 1px rgba(255, 126, 22, 0.1), 0 6px 28px rgba(255, 126, 22, 0.1);
}

.section--orange .feature-card--highlight:hover {
  border-color: rgba(255, 126, 22, 0.6);
  box-shadow:
    0 18px 52px rgba(255, 126, 22, 0.2),
    0 0 0 8px rgba(255, 126, 22, 0.05);
}

/* Buttons on orange — green CTAs */
.section--orange .btn--accent {
  background: #1ebe5b;
  color: #fff;
}

.section--orange .btn--accent:hover {
  background: #17a349;
  box-shadow: 0 0 28px rgba(37, 211, 102, 0.25);
}

.section--orange .btn--whatsapp {
  background: #1ebe5b;
  color: #fff;
}

.section--orange .btn--whatsapp:hover {
  background: #17a349;
  box-shadow: 0 0 28px rgba(37, 211, 102, 0.25);
}

/* --- Dark Background (elevated) --- */
.section--dark {
  background: var(--color-surface);
}

/* Peças: fundo cinza limpo + imagem de textura */
#pecas {
  position: relative;
  background-color: #e5e5e5;
}

/* Camada da imagem de fundo com 10% de opacidade */
#pecas::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url('images/daf629f3-35ce-496b-9492-d226a09df9d3.png');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 0.10;
  pointer-events: none;
  z-index: 0;
}

/* Garantir que o conteúdo fique acima da imagem */
#pecas .container {
  position: relative;
  z-index: 1;
}

#pecas .section__title {
  color: var(--color-accent);
}

#pecas .section__subtitle {
  color: #000000;
}

/* Peças: cards com capa branca e título preto */
#pecas .part-card {
  background: #ffffff;
  border-color: rgba(0, 0, 0, 0.08);
}

#pecas .part-card__icon {
  background: #ffffff;
}

#pecas .part-card__name {
  color: #111111;
}

#pecas .part-card::after {
  color: rgba(0, 0, 0, 0.2);
}

#pecas .part-card:hover::after {
  color: rgba(255, 126, 22, 0.6);
}

#pecas .part-card:hover {
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
}

#pecas .part-card__thumb--empty {
  background: rgba(0, 0, 0, 0.04);
}

#pecas .part-card__thumb--empty::after {
  background: rgba(0, 0, 0, 0.1);
}

/* ============================================
   Trust Bar — Orange
   ============================================ */

.trust-bar.trust-bar--orange {
  margin-top: 0;
  padding-block: 1.5rem;
  border-top: none;
  background-color: var(--color-accent);
}

.trust-bar--orange .trust-bar__item {
  color: rgba(0, 0, 0, 0.75);
  font-weight: 600;
}

.trust-bar--orange .trust-bar__icon {
  color: rgba(0, 0, 0, 0.7);
}

.trust-bar--orange .trust-bar__stars {
  color: rgba(0, 0, 0, 0.8);
}

/* ============================================
   Segments Grid (Quem Atendemos)
   ============================================ */

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

.segment-card {
  background: var(--color-bg-card);
  border: 1px solid var(--color-border);
  border-radius: 16px;
  padding: 2.5rem 1.75rem 2.25rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  position: relative;
  overflow: hidden;
  transition: transform 0.4s var(--ease-hover), box-shadow 0.4s var(--ease-hover), border-color 0.4s var(--ease-hover);
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.04), 0 1px 4px rgba(0, 0, 0, 0.02);
}

/* Subtle gradient overlay */
.segment-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 0%, rgba(255, 126, 22, 0.05) 0%, transparent 60%);
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.5s var(--ease-out);
}

/* Top accent bar — hidden by default, reveals on hover */
.segment-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--color-accent);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.5s var(--ease-out);
}

.segment-card:hover {
  border-color: rgba(255, 126, 22, 0.3);
  transform: translateY(-10px);
  box-shadow: 0 24px 64px rgba(255, 126, 22, 0.12), 0 8px 20px rgba(0, 0, 0, 0.08);
}

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

.segment-card:hover::after {
  opacity: 1;
}

.segment-card__icon {
  width: 100%;
  max-width: 260px;
  aspect-ratio: 1 / 1;
  margin: 0 auto 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem;
  position: relative;
  z-index: 1;
  transition: transform 0.4s var(--ease-hover), filter 0.4s var(--ease-hover);
  /* Destaque: sombra suave laranja atrás da imagem */
  filter: drop-shadow(0 8px 20px rgba(255, 126, 22, 0.12));
}

.segment-card:hover .segment-card__icon {
  transform: scale(1.08);
  filter: drop-shadow(0 12px 28px rgba(255, 126, 22, 0.22));
}

.segment-card__icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: transform 0.4s var(--ease-hover);
}

.segment-card:hover .segment-card__icon img {
  transform: scale(1.04);
}

.segment-card__name {
  font-weight: 800;
  font-size: 1.1rem;
  line-height: 1.3;
  position: relative;
  z-index: 1;
}

.segment-card__desc {
  font-size: 0.875rem;
  line-height: 1.5;
  color: rgba(0,0,0,0.55);
  margin-top: 0.25rem;
  max-width: 260px;
  position: relative;
  z-index: 1;
}

/* ============================================
   Parts Grid (Peças)
   ============================================ */

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

.part-card {
  position: relative;
  background: var(--color-bg-card);
  border: 1px solid var(--color-border);
  border-radius: var(--card-radius);
  padding: 2rem 1.25rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.85rem;
  cursor: pointer;
  transition: border-color 0.3s var(--ease-hover), transform 0.3s var(--ease-hover), box-shadow 0.3s var(--ease-hover);
}

/* Dica visual "clicável" */
.part-card::after {
  content: 'Clique para ver as peças';
  position: absolute;
  bottom: 0.5rem;
  font-size: 0.65rem;
  color: rgba(255, 255, 255, 0.2);
  font-weight: 500;
  letter-spacing: 0.03em;
  opacity: 0;
  transform: translateY(4px);
  transition: opacity 0.3s var(--ease-hover), transform 0.3s var(--ease-hover);
}

.part-card:hover::after {
  opacity: 1;
  transform: translateY(0);
  color: rgba(255, 126, 22, 0.5);
}

.part-card:hover {
  border-color: rgba(255, 126, 22, 0.4);
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.4);
}

.part-card__icon {
  width: 100%;
  aspect-ratio: 1 / 1;
  background: transparent;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  transition: transform 0.35s var(--ease-hover), box-shadow 0.35s var(--ease-hover);
}

.part-card:hover .part-card__icon {
  transform: scale(1.03);
  box-shadow: 0 8px 28px rgba(255, 126, 22, 0.3);
}

/* Mini álbum — grid 2×2 de miniaturas */
.part-card__thumbs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 2px;
  width: 100%;
  height: 100%;
}

.part-card__thumb {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s var(--ease-hover), opacity 0.4s var(--ease-hover);
}

.part-card:hover .part-card__thumb {
  opacity: 0.85;
}

/* Slot vazio no mini álbum */
.part-card__thumb--empty {
  background: rgba(255, 255, 255, 0.04);
  display: flex;
  align-items: center;
  justify-content: center;
}

.part-card__thumb--empty::after {
  content: '';
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
}

.part-card__name {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.95rem;
  line-height: 1.3;
}

/* ============================================
   Features Grid (Diferenciais)
   ============================================ */

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

.feature-card {
  position: relative;
  background: var(--color-bg-card);
  border: 1px solid var(--color-border);
  border-radius: var(--card-radius);
  padding: 2rem;
  overflow: hidden;
  transition: border-color 0.35s var(--ease-hover), transform 0.4s var(--ease-hover), box-shadow 0.4s var(--ease-hover);
}

/* Shine sweep — brilho que percorre o card no hover */
.feature-card::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    105deg,
    transparent 40%,
    rgba(255, 255, 255, 0.03) 45%,
    rgba(255, 255, 255, 0.08) 50%,
    rgba(255, 255, 255, 0.03) 55%,
    transparent 60%
  );
  transition: left 0.6s var(--ease-hover);
  pointer-events: none;
  z-index: 2;
}

.feature-card:hover {
  border-color: rgba(255, 126, 22, 0.35);
  transform: translateY(-4px) scale(1.05);
  box-shadow:
    0 12px 40px rgba(255, 126, 22, 0.12),
    0 4px 16px rgba(0, 0, 0, 0.25);
}

.feature-card:hover::after {
  left: 100%;
}

/* Running border — linha circulando ao passar o mouse */
.feature-card::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 2px;
  background: conic-gradient(
    from var(--border-angle),
    transparent 60%,
    rgba(0, 0, 0, 0.7) 80%,
    transparent 100%
  );
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  animation: border-spin 3s linear infinite;
  opacity: 0;
  transition: opacity 0.35s var(--ease-hover);
  pointer-events: none;
  z-index: 1;
}

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

/* ============================================
   Hover individual por card (Diferenciais)
   ============================================ */

/* Card 1 — leve tilt 3D para a direita */
.features-grid .feature-card:nth-child(1):hover {
  transform: translateY(-4px) scale(1.05) perspective(600px) rotateY(1.5deg);
  box-shadow:
    8px 12px 40px rgba(255, 126, 22, 0.14),
    4px 4px 16px rgba(0, 0, 0, 0.25);
}

/* Card 2 — destaque com glow pulsante + scale ampliado */
.features-grid .feature-card:nth-child(2):hover {
  transform: translateY(-6px) scale(1.08);
  border-color: rgba(255, 126, 22, 0.55);
  box-shadow:
    0 0 30px rgba(255, 126, 22, 0.25),
    0 0 60px rgba(255, 126, 22, 0.10),
    0 12px 40px rgba(255, 126, 22, 0.18),
    0 4px 16px rgba(0, 0, 0, 0.28);
  transition: transform 0.35s var(--ease-hover),
              border-color 0.35s var(--ease-hover),
              box-shadow 0.35s var(--ease-hover);
}
.features-grid .feature-card:nth-child(2):hover .feature-card__icon {
  transform: scale(1.12);
  box-shadow: 0 0 24px rgba(255, 126, 22, 0.40);
}

/* Card 3 — glow superior intenso + scale */
.features-grid .feature-card:nth-child(3):hover {
  transform: translateY(-4px) scale(1.05);
  border-top-color: rgba(255, 126, 22, 0.5);
  box-shadow:
    0 -4px 20px rgba(255, 126, 22, 0.18),
    0 12px 40px rgba(255, 126, 22, 0.10),
    0 4px 16px rgba(0, 0, 0, 0.25);
}

/* Card 5 — leve tilt para esquerda */
.features-grid .feature-card:nth-child(5):hover {
  transform: translateY(-4px) scale(1.05) perspective(600px) rotateY(-1.5deg);
  box-shadow:
    -8px 12px 40px rgba(255, 126, 22, 0.14),
    -4px 4px 16px rgba(0, 0, 0, 0.25);
}

.feature-card__icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
  transition: transform 0.3s var(--ease-hover), box-shadow 0.3s var(--ease-hover);
}

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

/* ============================================
   Icon Color Variants (Diferenciais)
   ============================================ */

.icon--gold {
  background: linear-gradient(135deg, #fbbf24, #f59e0b);
  color: #fff;
  box-shadow: 0 6px 20px rgba(245, 158, 11, 0.35);
}

.icon--accent {
  background: var(--color-accent);
  color: #000;
  box-shadow: 0 4px 14px rgba(255, 126, 22, 0.25);
}

.icon--red {
  background: linear-gradient(135deg, #f87171, #ef4444);
  color: #fff;
  box-shadow: 0 6px 20px rgba(239, 68, 68, 0.35);
}

.icon--green {
  background: linear-gradient(135deg, #34d399, #10b981);
  color: #fff;
  box-shadow: 0 6px 20px rgba(16, 185, 129, 0.35);
}

.icon--blue {
  background: linear-gradient(135deg, #60a5fa, #3b82f6);
  color: #fff;
  box-shadow: 0 6px 20px rgba(59, 130, 246, 0.35);
}

.icon--purple {
  background: linear-gradient(135deg, #c084fc, #8b5cf6);
  color: #fff;
  box-shadow: 0 6px 20px rgba(139, 92, 246, 0.35);
}

.icon--indigo {
  background: linear-gradient(135deg, #818cf8, #6366f1);
  color: #fff;
  box-shadow: 0 6px 20px rgba(99, 102, 241, 0.35);
}

/* ============================================
   Icon Animations
   ============================================ */

/* Pulse suave */
.icon--pulse svg {
  animation: icon-pulse 2.5s ease-in-out infinite;
}

@keyframes icon-pulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.18); }
}

/* Bounce */
.icon--bounce svg {
  animation: icon-bounce 1.6s ease-in-out infinite;
}

@keyframes icon-bounce {
  0%, 100% { transform: translateY(0); }
  30% { transform: translateY(-6px); }
  50% { transform: translateY(0); }
  70% { transform: translateY(-3px); }
}

/* Float */
.icon--float svg {
  animation: icon-float 3s ease-in-out infinite;
}

@keyframes icon-float {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  33% { transform: translateY(-5px) rotate(1deg); }
  66% { transform: translateY(2px) rotate(-1deg); }
}

/* Heartbeat */
.icon--heartbeat svg {
  animation: icon-heartbeat 1.4s ease-in-out infinite;
}

@keyframes icon-heartbeat {
  0% { transform: scale(1); }
  14% { transform: scale(1.25); }
  28% { transform: scale(1); }
  42% { transform: scale(1.2); }
  56% { transform: scale(1); }
  100% { transform: scale(1); }
}

/* Shimmer — glow pulsante */
.icon--shimmer {
  animation: icon-shimmer-glow 2s ease-in-out infinite;
}

.icon--shimmer svg {
  animation: icon-shimmer-scale 2s ease-in-out infinite;
}

@keyframes icon-shimmer-glow {
  0%, 100% { box-shadow: 0 6px 20px rgba(99, 102, 241, 0.35); }
  50% { box-shadow: 0 8px 30px rgba(99, 102, 241, 0.6), 0 0 0 8px rgba(99, 102, 241, 0.08); }
}

@keyframes icon-shimmer-scale {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.12); opacity: 0.85; }
}

/* Wiggle */
.icon--wiggle svg {
  animation: icon-wiggle 2.2s ease-in-out infinite;
}

@keyframes icon-wiggle {
  0%, 100% { transform: rotate(0deg) scale(1); }
  20% { transform: rotate(-6deg) scale(1.05); }
  40% { transform: rotate(5deg) scale(1.05); }
  60% { transform: rotate(-4deg) scale(1.02); }
  80% { transform: rotate(3deg) scale(1.02); }
}

/* Hover: animação pausa e ícone "responde" */
.feature-card:hover .feature-card__icon {
  transform: scale(1.08);
  box-shadow: 0 8px 24px rgba(255, 126, 22, 0.25);
}

.feature-card:hover .feature-card__icon svg {
  animation-play-state: paused;
}

/* Reduzir animações se usuário preferir */
@media (prefers-reduced-motion: reduce) {
  .feature-card__icon svg,
  .icon--shimmer {
    animation: none !important;
  }
}

.feature-card__title {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.feature-card__desc {
  font-size: 0.9rem;
  color: var(--color-text-muted);
  line-height: 1.55;
}

/* ============================================
   Feature Card — Highlight (Pronta entrega)
   ============================================ */

.feature-card--highlight {
  position: relative;
  border-color: rgba(255, 126, 22, 0.35);
  box-shadow: 0 0 0 1px rgba(255, 126, 22, 0.08), 0 4px 24px rgba(255, 126, 22, 0.06);
  overflow: hidden;
}

/* Glow pulsante na borda — linha laranja circulando (destaque) */
.feature-card--highlight::before {
  content: '';
  position: absolute;
  inset: -1px;
  border-radius: inherit;
  padding: 2px;
  background: conic-gradient(
    from var(--border-angle),
    transparent 40%,
    rgba(0, 0, 0, 0.85) 65%,
    rgba(0, 0, 0, 0.6) 75%,
    transparent 90%
  );
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  animation: border-spin 2.5s linear infinite;
  z-index: 0;
  pointer-events: none;
  opacity: 1;
}

@keyframes border-glow {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}

@keyframes border-spin {
  to { --border-angle: 360deg; }
}

/* Badge "Destaque" */
.feature-card__badge {
  position: absolute;
  top: 12px;
  right: 12px;
  background: linear-gradient(135deg, #ff7e16, #e06900);
  color: #fff;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 20px;
  box-shadow: 0 4px 16px rgba(255, 126, 22, 0.35);
  animation: badge-float 3s ease-in-out infinite;
  z-index: 1;
}

@keyframes badge-float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-3px); }
}

/* Hover amplificado */
.feature-card--highlight:hover {
  border-color: rgba(255, 126, 22, 0.5);
  transform: translateY(-6px) scale(1.08);
  box-shadow:
    0 16px 48px rgba(255, 126, 22, 0.15),
    0 0 0 6px rgba(255, 126, 22, 0.04);
}

.feature-card--highlight:hover::before {
  animation-duration: 1.2s;
}

/* Garantir que o highlight prevaleça sobre section--orange */
.section--orange .feature-card--highlight:hover {
  border-color: rgba(255, 126, 22, 0.5);
  transform: translateY(-6px) scale(1.08);
  box-shadow:
    0 16px 48px rgba(255, 126, 22, 0.18),
    0 0 0 8px rgba(255, 126, 22, 0.05);
}

.section--orange .feature-card--highlight:hover::before {
  animation-duration: 1.2s;
}

/* Entrada com scale (sobrescreve o fade-up padrão) */
.visible .feature-card--highlight {
  animation: highlight-pop 0.55s var(--ease-out) forwards !important;
}

@keyframes highlight-pop {
  0% {
    opacity: 0;
    transform: scale(0.88) translateY(16px);
  }
  60% {
    opacity: 0.9;
    transform: scale(1.03) translateY(-2px);
  }
  100% {
    opacity: 1;
    transform: scale(1) translateY(0);
  }
}

/* ============================================
   Steps (Processo)
   ============================================ */

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

.step-card {
  background: var(--color-bg-card);
  border: 1px solid var(--color-border);
  border-radius: var(--card-radius);
  padding: 2rem 1.5rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  position: relative;
  transition: border-color 0.3s var(--ease-hover), transform 0.3s var(--ease-hover);
}

.step-card:hover {
  border-color: rgba(255, 126, 22, 0.3);
  transform: translateY(-3px);
}

/* Step number from data-step attribute */
.steps {
  /* container for step cards */
}

.step-card::before {
  content: attr(data-step);
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--color-accent);
  color: #000;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  font-weight: 800;
  flex-shrink: 0;
  transition: transform 0.35s var(--ease-hover), box-shadow 0.35s var(--ease-hover);
}

.step-card:hover::before {
  transform: scale(1.1);
  box-shadow: 0 6px 24px rgba(255, 126, 22, 0.4);
}

.step-card__title {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.4;
}

.step-card__desc {
  font-size: 0.9rem;
  color: var(--color-text-muted);
  line-height: 1.5;
}

.step-card__extra {
  font-size: 0.85rem;
  color: var(--color-text-muted);
  line-height: 1.6;
}

.step-card__extra strong {
  color: var(--color-text);
}
/* ============================================
   Brands Grid (Marcas)
   ============================================ */

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

.brand-card {
  position: relative;
  aspect-ratio: 1 / 1;
  background: var(--color-bg-card);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--card-radius);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: border-color 0.3s var(--ease-hover), box-shadow 0.3s var(--ease-hover), transform 0.3s var(--ease-hover);
}

.brand-card:hover {
  border-color: rgba(255, 126, 22, 0.4);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
  transform: translateY(-3px);
}

.brand-card:hover .brand-card__logo {
  transform: scale(1.08);
}

.brand-card__placeholder {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  color: rgba(255, 255, 255, 0.12);
  transition: color 0.3s;
}

.brand-card:hover .brand-card__placeholder {
  color: rgba(255, 126, 22, 0.25);
}

.brand-card__placeholder svg {
  width: 36px;
  height: 36px;
}

.brand-card__logo {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 1.25rem;
  display: block;
  transition: transform 0.45s var(--ease-hover);
}

/* ============================================
   Testimonials (Depoimentos)
   ============================================ */

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-bottom: 2.5rem;
}

.testimonial-card {
  background: var(--color-bg-card);
  border: 1px solid var(--color-border);
  border-radius: var(--card-radius);
  padding: 2rem;
  display: flex;
  flex-direction: column;
  transition: transform 0.3s var(--ease-hover), border-color 0.3s;
}

.testimonial-card:hover {
  transform: translateY(-4px);
  border-color: rgba(255, 126, 22, 0.3);
}

.testimonial-card__photo {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  object-fit: cover;
  margin: 0 auto 1rem;
  border: 3px solid rgba(255, 126, 22, 0.25);
  box-shadow: 0 0 20px rgba(255, 126, 22, 0.15);
  transition: border-color 0.3s var(--ease-hover), box-shadow 0.3s var(--ease-hover), transform 0.4s var(--ease-hover);
}

.testimonial-card:hover .testimonial-card__photo {
  border-color: var(--color-accent);
  box-shadow: 0 0 28px var(--color-accent-glow);
  transform: scale(1.08);
}

.testimonial-card__stars {
  color: var(--color-accent);
  font-size: 1.25rem;
  letter-spacing: 0.15em;
  margin-bottom: 1rem;
  transition: transform 0.3s var(--ease-hover), text-shadow 0.3s var(--ease-hover);
}

.testimonial-card:hover .testimonial-card__stars {
  transform: scale(1.06);
  text-shadow: 0 0 16px rgba(255, 126, 22, 0.4);
}

.testimonial-card__text {
  color: var(--color-text);
  font-size: 0.95rem;
  line-height: 1.7;
  flex: 1;
  font-style: italic;
  margin-bottom: 1.5rem;
}

.testimonial-card__author {
  color: var(--color-text-muted);
  font-size: 0.9rem;
  border-top: 1px solid var(--color-border);
  padding-top: 1rem;
}

.testimonial-card__author strong {
  color: var(--color-text);
}

/* Depoimentos em vídeo */
.testimonials-grid--video {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.testimonial-video {
  background: var(--color-bg-card);
  border: 1px solid var(--color-border);
  border-radius: var(--card-radius);
  overflow: hidden;
  transition: transform 0.3s var(--ease-hover), border-color 0.3s, box-shadow 0.3s var(--ease-hover);
}

.testimonial-video:hover {
  transform: translateY(-4px);
  border-color: rgba(255, 126, 22, 0.4);
  box-shadow: 0 8px 32px rgba(255, 126, 22, 0.15);
}

.testimonial-video__wrapper {
  position: relative;
  aspect-ratio: 16 / 9;
  width: 100%;
}

.testimonial-video__wrapper iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
}

/* ============================================
   Google Badge
   ============================================ */

.reviews-badge {
  display: flex;
  align-items: center;
  gap: 1rem;
  justify-content: center;
  background: var(--color-bg-card);
  border: 1px solid var(--color-border);
  border-radius: var(--card-radius);
  padding: 1.25rem 2rem;
  margin: 0 auto;
  max-width: 400px;
  transition: border-color 0.3s;
}

.reviews-badge:hover {
  border-color: rgba(255, 126, 22, 0.3);
}

.reviews-badge__google-icon {
  width: 42px;
  height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--color-accent);
  color: #000;
  font-size: 1.4rem;
  font-weight: 800;
  border-radius: 50%;
  flex-shrink: 0;
}

.reviews-badge__content {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.reviews-badge__stars {
  color: var(--color-accent);
  font-size: 1.1rem;
  letter-spacing: 0.1em;
}

.reviews-badge__text {
  color: var(--color-text-muted);
  font-size: 0.875rem;
}

/* ============================================
   FAQ
   ============================================ */

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

.faq-item {
  background: var(--color-bg-card);
  border: 1px solid var(--color-border);
  border-radius: var(--card-radius);
  overflow: hidden;
  transition: border-color 0.3s;
}

.faq-item.active {
  border-color: rgba(255, 126, 22, 0.3);
}

.faq-item__question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  padding: 1.2rem 1.5rem;
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  user-select: none;
  width: 100%;
  background: none;
  border: none;
  color: var(--color-text);
  font-family: var(--font-primary);
  text-align: left;
}

.faq-item__icon {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  transition: transform 0.3s var(--ease-out);
  color: var(--color-accent);
}

.faq-item.active .faq-item__icon {
  transform: rotate(45deg);
}

.faq-item__answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s var(--ease-out), padding 0.35s var(--ease-out);
  padding: 0 1.5rem;
  color: var(--color-text-muted);
  font-size: 0.9rem;
  line-height: 1.6;
}

.faq-item.active .faq-item__answer {
  max-height: 300px;
  padding: 0 1.5rem 1.2rem;
}

/* ============================================
   CTA Final
   ============================================ */

.cta-final {
  padding-block: var(--section-gap);
  background: #fefefe;
}

.cta-final__content {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.25rem;
}

.cta-final__title {
  font-family: var(--font-heading);
  font-size: clamp(1.6rem, 4vw, 2.5rem);
  font-weight: 800;
  letter-spacing: -0.015em;
  color: var(--color-text-dark);
}

.cta-final__subtitle {
  color: var(--color-text-muted-dark);
  font-size: 1.05rem;
}

/* ============================================
   Footer
   ============================================ */

.footer {
  background-color: #0d0d0d;
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-block: 2rem 1.25rem;
  color: #cccccc;
  position: relative;
  z-index: 0;
}



.footer > * {
  position: relative;
  z-index: 1;
}

/* ---- Topo: logo + sociais ---- */
.footer__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

/* Marca */
.footer__brand {
  display: flex;
  align-items: center;
}

.footer__brand-img {
  height: 156px;
  width: auto;
  display: block;
}

/* Redes sociais */
.footer__socials {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.footer__social {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.55rem 1rem;
  border-radius: 8px;
  font-size: 0.82rem;
  font-weight: 600;
  text-decoration: none;
  transition: background 0.25s var(--ease-hover), transform 0.25s var(--ease-hover), box-shadow 0.25s var(--ease-hover);
  color: #ffffff;
}

.footer__social:hover {
  transform: translateY(-2px);
}

.footer__social--whatsapp {
  background: #25D366;
}
.footer__social--whatsapp:hover {
  background: #20bd5a;
  box-shadow: 0 4px 14px rgba(37,211,102,0.35);
}

.footer__social--instagram {
  background: #E4405F;
}
.footer__social--instagram:hover {
  background: #d62d4d;
  box-shadow: 0 4px 14px rgba(228,64,95,0.35);
}

.footer__social--facebook {
  background: #1877F2;
}
.footer__social--facebook:hover {
  background: #166fe5;
  box-shadow: 0 4px 14px rgba(24,119,242,0.35);
}

/* Mapa */
.footer__map {
  margin-bottom: 1.5rem;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.1);
  box-shadow: 0 2px 20px rgba(0,0,0,0.4);
}

.footer__map iframe {
  display: block;
  filter: grayscale(0.3);
}

/* Copyright */
.footer__text {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.35);
  text-align: center;
  margin: 0;
  padding-top: 1rem;
  border-top: 1px solid rgba(255,255,255,0.06);
}

.footer__text span {
  color: var(--color-accent);
  font-weight: 600;
}

/* ---- Responsivo ---- */
@media (max-width: 640px) {
  .footer__top {
    flex-direction: column;
    align-items: flex-start;
  }

  .footer__brand-img {
    height: 126px;
  }

  .footer__socials {
    width: 100%;
  }

  .footer__social {
    flex: 1;
    justify-content: center;
    min-width: 0;
  }

  .footer__map iframe {
    height: 170px;
  }
}

/* ============================================
   Animations
   ============================================ */

@keyframes fade-in {
  from { opacity: 0; }
  to   { opacity: 1; }
}

@keyframes fade-up {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes slide-up {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes slide-left {
  from { opacity: 0; transform: translateX(30px); }
  to   { opacity: 1; transform: translateX(0); }
}

@keyframes slide-right {
  from { opacity: 0; transform: translateX(-30px); }
  to   { opacity: 1; transform: translateX(0); }
}

@keyframes scale-in {
  from { opacity: 0; transform: scale(0.92); }
  to   { opacity: 1; transform: scale(1); }
}

/* ---- Base animation states ---- */

[data-animate] {
  opacity: 0;
  will-change: transform, opacity;
}

[data-animate].visible {
  animation: fade-up 0.75s var(--ease-out) forwards;
}

/* Stagger containers: become visible instantly, children stagger in */
[data-animate="stagger"].visible {
  animation: none;
  opacity: 1;
}

[data-animate="fade-in"].visible {
  animation-name: fade-in;
}

[data-animate="fade-up"].visible {
  animation-name: fade-up;
}

[data-animate="slide-left"].visible {
  animation-name: slide-left;
}

[data-animate="slide-right"].visible {
  animation-name: slide-right;
}

[data-animate="scale-in"].visible {
  animation-name: scale-in;
}

/* ---- Stagger children inside a visible parent ---- */

.visible .trust-bar__item,
.visible .segment-card,
.visible .part-card,
.visible .feature-card,
.visible .step-card,
.visible .testimonial-card,
.visible .testimonial-video,
.visible .faq-item,
.visible .brand-card {
  animation: fade-up 0.55s var(--ease-out) forwards;
  opacity: 0;
}

/* Trust bar items (up to 4) */
.visible .trust-bar__item:nth-child(1) { animation-delay: 0.06s; }
.visible .trust-bar__item:nth-child(2) { animation-delay: 0.14s; }
.visible .trust-bar__item:nth-child(3) { animation-delay: 0.22s; }
.visible .trust-bar__item:nth-child(4) { animation-delay: 0.30s; }

/* Segment cards (up to 6) */
.visible .segment-card:nth-child(1) { animation-delay: 0.04s; }
.visible .segment-card:nth-child(2) { animation-delay: 0.08s; }
.visible .segment-card:nth-child(3) { animation-delay: 0.12s; }
.visible .segment-card:nth-child(4) { animation-delay: 0.16s; }
.visible .segment-card:nth-child(5) { animation-delay: 0.20s; }
.visible .segment-card:nth-child(6) { animation-delay: 0.24s; }

/* Part cards (up to 8) */
.visible .part-card:nth-child(1) { animation-delay: 0.04s; }
.visible .part-card:nth-child(2) { animation-delay: 0.08s; }
.visible .part-card:nth-child(3) { animation-delay: 0.12s; }
.visible .part-card:nth-child(4) { animation-delay: 0.16s; }
.visible .part-card:nth-child(5) { animation-delay: 0.20s; }
.visible .part-card:nth-child(6) { animation-delay: 0.24s; }
.visible .part-card:nth-child(7) { animation-delay: 0.28s; }
.visible .part-card:nth-child(8) { animation-delay: 0.32s; }

/* Feature cards (up to 6) */
.visible .feature-card:nth-child(1) { animation-delay: 0.05s; }
.visible .feature-card:nth-child(2) { animation-delay: 0.10s; }
.visible .feature-card:nth-child(3) { animation-delay: 0.15s; }
.visible .feature-card:nth-child(4) { animation-delay: 0.20s; }
.visible .feature-card:nth-child(5) { animation-delay: 0.25s; }
.visible .feature-card:nth-child(6) { animation-delay: 0.30s; }

/* Step cards (up to 4) */
.visible .step-card:nth-child(1) { animation-delay: 0.06s; }
.visible .step-card:nth-child(2) { animation-delay: 0.12s; }
.visible .step-card:nth-child(3) { animation-delay: 0.18s; }
.visible .step-card:nth-child(4) { animation-delay: 0.24s; }

/* Testimonial cards (up to 3) */
.visible .testimonial-card:nth-child(1),
.visible .testimonial-video:nth-child(1) { animation-delay: 0.06s; }
.visible .testimonial-card:nth-child(2),
.visible .testimonial-video:nth-child(2) { animation-delay: 0.14s; }
.visible .testimonial-card:nth-child(3),
.visible .testimonial-video:nth-child(3) { animation-delay: 0.22s; }

/* FAQ items (up to 5) */
.visible .faq-item:nth-child(1) { animation-delay: 0.04s; }
.visible .faq-item:nth-child(2) { animation-delay: 0.08s; }
.visible .faq-item:nth-child(3) { animation-delay: 0.12s; }
.visible .faq-item:nth-child(4) { animation-delay: 0.16s; }
.visible .faq-item:nth-child(5) { animation-delay: 0.20s; }

/* Brand cards — up to 18 */
.visible .brand-card:nth-child(1)  { animation-delay: 0.025s; }
.visible .brand-card:nth-child(2)  { animation-delay: 0.050s; }
.visible .brand-card:nth-child(3)  { animation-delay: 0.075s; }
.visible .brand-card:nth-child(4)  { animation-delay: 0.100s; }
.visible .brand-card:nth-child(5)  { animation-delay: 0.125s; }
.visible .brand-card:nth-child(6)  { animation-delay: 0.150s; }
.visible .brand-card:nth-child(7)  { animation-delay: 0.175s; }
.visible .brand-card:nth-child(8)  { animation-delay: 0.200s; }
.visible .brand-card:nth-child(9)  { animation-delay: 0.225s; }
.visible .brand-card:nth-child(10) { animation-delay: 0.250s; }
.visible .brand-card:nth-child(11) { animation-delay: 0.275s; }
.visible .brand-card:nth-child(12) { animation-delay: 0.300s; }
.visible .brand-card:nth-child(13) { animation-delay: 0.325s; }
.visible .brand-card:nth-child(14) { animation-delay: 0.350s; }
.visible .brand-card:nth-child(15) { animation-delay: 0.375s; }
.visible .brand-card:nth-child(16) { animation-delay: 0.400s; }
.visible .brand-card:nth-child(17) { animation-delay: 0.425s; }
.visible .brand-card:nth-child(18) { animation-delay: 0.450s; }

/* ============================================
   Reduced Motion
   ============================================ */

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }

  [data-animate] {
    opacity: 1;
    animation: none !important;
  }

  .feature-card__icon svg,
  .icon--shimmer {
    animation: none !important;
  }

  img {
    transition: none !important;
  }

  .hero__banner-img {
    animation: none !important;
  }

  .cta-final {
    animation: none !important;
  }
}

/* ============================================
   Album Modal (Galeria de Peças)
   ============================================ */

.album-modal {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s var(--ease-out);
}

.album-modal.active {
  opacity: 1;
  pointer-events: auto;
}

/* Overlay escuro */
.album-modal__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.85);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}

/* Dialog central */
.album-modal__dialog {
  position: relative;
  width: 100%;
  max-width: 900px;
  max-height: 90vh;
  max-height: 90dvh;
  overflow-y: auto;
  background: #111111;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  padding: 2.5rem 2rem 2rem;
  margin: 1rem;
  transform: translateY(30px) scale(0.95);
  transition: transform 0.4s var(--ease-out);
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.6);
}

.album-modal.active .album-modal__dialog {
  transform: translateY(0) scale(1);
}

/* Botão fechar */
.album-modal__close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 50%;
  color: #fff;
  cursor: pointer;
  transition: background 0.25s var(--ease-hover), transform 0.25s var(--ease-hover), border-color 0.25s;
  z-index: 10;
}

.album-modal__close:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 126, 22, 0.5);
  transform: rotate(90deg);
}

.album-modal__close svg {
  width: 20px;
  height: 20px;
}

/* Título */
.album-modal__title {
  font-family: var(--font-heading);
  font-size: clamp(1.3rem, 3vw, 1.7rem);
  font-weight: 700;
  color: #fff;
  text-align: center;
  margin-bottom: 2rem;
  padding-right: 2rem; /* espaço para o botão fechar */
}

.album-modal__title span {
  color: var(--color-accent);
}

/* Grid da galeria */
.album-modal__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.85rem;
}

/* Slot de imagem */
.album-slot {
  aspect-ratio: 1 / 1;
  background: #1a1a1a;
  border: 2px dashed rgba(255, 255, 255, 0.12);
  border-radius: 10px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  color: rgba(255, 255, 255, 0.2);
  transition: border-color 0.3s var(--ease-hover), background 0.3s var(--ease-hover), color 0.3s var(--ease-hover), transform 0.3s var(--ease-hover);
  cursor: default;
  position: relative;
  overflow: hidden;
}

.album-slot:hover {
  border-color: rgba(255, 126, 22, 0.4);
  background: #1f1f1f;
  color: rgba(255, 126, 22, 0.5);
  transform: translateY(-2px);
}

/* Slot que já tem imagem */
.album-slot--filled {
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: #0d0d0d;
  cursor: pointer;
}

.album-slot--filled:hover {
  border-color: rgba(255, 126, 22, 0.5);
  transform: scale(1.03);
}

.album-slot--filled .album-slot__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s var(--ease-hover);
}

.album-slot--filled:hover .album-slot__img {
  transform: scale(1.08);
}

/* Ícone placeholder */
.album-slot__icon {
  width: 36px;
  height: 36px;
  opacity: 0.5;
  transition: opacity 0.3s var(--ease-hover), transform 0.3s var(--ease-hover);
}

.album-slot:hover .album-slot__icon {
  opacity: 0.8;
  transform: scale(1.1);
}

/* Texto placeholder */
.album-slot__label {
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

/* Numeração */
.album-slot__num {
  position: absolute;
  top: 8px;
  left: 10px;
  font-size: 0.68rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.15);
  pointer-events: none;
}

/* ---- Responsivo do Modal ---- */
@media (max-width: 768px) {
  .album-modal__dialog {
    padding: 2rem 1rem 1.5rem;
    margin: 0.5rem;
    border-radius: 14px;
    max-height: 95vh;
    max-height: 95dvh;
  }

  .album-modal__grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 0.6rem;
  }

  .album-modal__title {
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    padding-right: 2.5rem;
  }

  .album-slot__icon {
    width: 28px;
    height: 28px;
  }

  .album-slot__label {
    font-size: 0.65rem;
  }
}

@media (max-width: 480px) {
  .album-modal__dialog {
    padding: 1.5rem 0.75rem 1rem;
    border-radius: 12px;
  }

  .album-modal__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.5rem;
  }

  .album-modal__title {
    font-size: 1.1rem;
    margin-bottom: 1.25rem;
  }

  .album-modal__close {
    top: 0.6rem;
    right: 0.6rem;
    width: 36px;
    height: 36px;
  }

  .album-slot__icon {
    width: 24px;
    height: 24px;
  }

  .album-slot__label {
    font-size: 0.6rem;
  }
}

/* ============================================
   Lightbox (Ampliar foto)
   ============================================ */

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s var(--ease-out);
}

.lightbox.active {
  opacity: 1;
  pointer-events: auto;
}

.lightbox__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.92);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  cursor: pointer;
}

.lightbox__close {
  position: absolute;
  top: 1.25rem;
  right: 1.25rem;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 50%;
  color: #fff;
  cursor: pointer;
  z-index: 10;
  transition: background 0.25s var(--ease-hover), transform 0.25s var(--ease-hover), border-color 0.25s;
}

.lightbox__close:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: rgba(255, 126, 22, 0.5);
  transform: rotate(90deg);
}

.lightbox__close svg {
  width: 22px;
  height: 22px;
}

.lightbox__img {
  position: relative;
  z-index: 1;
  max-width: 90vw;
  max-height: 85vh;
  max-height: 85dvh;
  object-fit: contain;
  border-radius: 10px;
  box-shadow: 0 16px 64px rgba(0, 0, 0, 0.5);
  transform: scale(0.9);
  transition: transform 0.4s var(--ease-out);
  cursor: default;
}

.lightbox.active .lightbox__img {
  transform: scale(1);
}

@media (max-width: 640px) {
  .lightbox__close {
    top: 0.75rem;
    right: 0.75rem;
    width: 40px;
    height: 40px;
  }

  .lightbox__close svg {
    width: 18px;
    height: 18px;
  }

  .lightbox__img {
    max-width: 95vw;
    max-height: 80vh;
    max-height: 80dvh;
    border-radius: 8px;
  }
}

/* ============================================
   Responsive
   ============================================ */

/* Tablet (≤1024px) */
@media (max-width: 1024px) {
  .segments-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .parts-grid {
    grid-template-columns: repeat(2, 1fr);
    max-width: 500px;
    margin-inline: auto;
  }

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

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

  .brands-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .testimonials-grid,
  .testimonials-grid--video {
    grid-template-columns: 1fr;
    max-width: 550px;
    margin-inline: auto;
  }

  .trust-bar__items {
    gap: 1.25rem;
  }

  .trust-bar__item {
    font-size: 0.82rem;
  }

  /* Header mobile nav */
  .header__nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    height: 100dvh;
    background: rgba(0, 0, 0, 0.96);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    padding: 6rem 2rem 2rem;
    transition: right 0.4s var(--ease-out);
    border-left: 1px solid var(--color-border);
    flex-direction: column;
  }

  .header__nav.active {
    right: 0;
  }

  .header__nav a {
    font-size: 1.05rem;
    padding: 0.75rem 1rem;
    display: block;
    color: rgba(254, 254, 254, 0.7);
  }

  .header__nav a:hover {
    color: #fff;
    background: rgba(255, 255, 255, 0.08);
  }

  .header__hamburger {
    display: flex;
  }
}

/* Mobile (≤640px) */
@media (max-width: 640px) {
  /* ---- Seções: padding reduzido ---- */
  .section {
    padding-block: clamp(2.5rem, 6vw, 4rem);
  }

  .section__header {
    margin-bottom: 2rem;
  }

  .section__title {
    font-size: clamp(1.35rem, 4.5vw, 1.8rem);
  }

  .section__subtitle {
    font-size: 0.95rem;
    padding-inline: 0.5rem;
  }

  .section__cta {
    margin-top: 2rem;
  }

  /* ---- Trust Bar ---- */
  .trust-bar {
    padding-block: 1rem;
  }

  .trust-bar.trust-bar--orange {
    padding-block: 1rem;
  }

  .trust-bar__items {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 0.6rem;
    padding-inline: 0.25rem;
  }

  .trust-bar__item {
    font-size: 0.85rem;
    width: 100%;
    justify-content: center;
  }

  .trust-bar__icon {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
  }

  /* ---- Segmentos ---- */
  .segments-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.85rem;
    max-width: 480px;
    margin-inline: auto;
  }

  .segment-card {
    padding: 1.25rem 0.85rem 1.1rem;
    border-radius: 12px;
  }

  .segment-card__icon {
    max-width: 130px;
  }

  .segment-card__name {
    font-size: 0.92rem;
  }

  .segment-card__desc {
    font-size: 0.78rem;
    max-width: 100%;
  }

  /* ---- Peças ---- */
  .parts-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.75rem;
    max-width: 480px;
    margin-inline: auto;
  }

  .part-card {
    padding: 1.25rem 0.75rem;
    gap: 0.5rem;
  }

  .part-card__icon {
    border-radius: 6px;
  }

  .part-card__name {
    font-size: 0.82rem;
  }

  /* ---- Diferenciais ---- */
  .features-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
    max-width: 500px;
    margin-inline: auto;
  }

  .feature-card {
    padding: 1.5rem 1.25rem;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .feature-card__icon {
    width: 40px;
    height: 40px;
    margin-bottom: 1rem;
  }

  .feature-card__icon svg {
    width: 18px;
    height: 18px;
  }

  .feature-card__title {
    font-size: 1rem;
  }

  .feature-card__desc {
    font-size: 0.85rem;
  }

  /* ---- Processo ---- */
  .steps {
    grid-template-columns: 1fr;
    max-width: 400px;
    margin-inline: auto;
    gap: 0.75rem;
  }

  .step-card {
    padding: 1.5rem 1.25rem;
    text-align: center;
  }

  /* ---- Marcas ---- */
  .brands-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 0.65rem;
    max-width: 500px;
    margin-inline: auto;
  }

  .brand-card {
    border-radius: 10px;
  }

  .brand-card__logo {
    padding: 0.75rem;
  }

  /* ---- Depoimentos ---- */
  .testimonials-grid,
  .testimonials-grid--video {
    grid-template-columns: 1fr;
    gap: 1rem;
    max-width: 450px;
    margin-inline: auto;
  }

  .testimonial-card {
    padding: 1.5rem 1.25rem;
    text-align: center;
  }

  .testimonial-card__photo {
    width: 64px;
    height: 64px;
  }

  .testimonial-card__text {
    font-size: 0.88rem;
  }

  .testimonial-card__stars {
    font-size: 1.1rem;
  }

  /* ---- FAQ ---- */
  .faq-list {
    gap: 0.5rem;
  }

  .faq-item__question {
    padding: 1rem 1.1rem;
    font-size: 0.88rem;
  }

  .faq-item.active .faq-item__answer {
    padding: 0 1.1rem 1rem;
  }

  .faq-item__answer {
    font-size: 0.84rem;
  }

  /* ---- CTA Final ---- */
  .cta-final {
    padding-block: clamp(2.5rem, 6vw, 4rem);
  }

  .cta-final__title {
    font-size: clamp(1.35rem, 4.5vw, 1.8rem);
    padding-inline: 0.5rem;
  }

  .cta-final__subtitle {
    font-size: 0.95rem;
    padding-inline: 0.5rem;
  }

  .cta-final .btn {
    width: 100%;
    max-width: 380px;
    margin-inline: auto;
    justify-content: center;
  }

  /* ---- Footer ---- */
  .footer {
    padding-block: 1.5rem 1rem;
  }

  .footer__top {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.75rem;
    margin-bottom: 1rem;
  }

  .footer__brand-img {
    height: 100px;
  }

  .footer__socials {
    width: 100%;
    gap: 0.5rem;
  }

  .footer__social {
    flex: 1;
    justify-content: center;
    min-width: 0;
    padding: 0.5rem 0.65rem;
    font-size: 0.78rem;
    border-radius: 8px;
  }

  .footer__social svg {
    width: 18px;
    height: 18px;
  }

  .footer__map {
    margin-bottom: 1rem;
    border-radius: 10px;
  }

  .footer__map iframe {
    height: 160px;
  }

  .footer__text {
    font-size: 0.75rem;
    padding-top: 0.75rem;
  }

  /* ---- Botões full-width ---- */
  .btn--whatsapp,
  .btn--accent {
    width: 100%;
    max-width: 400px;
    margin-inline: auto;
    justify-content: center;
    text-align: center;
    padding: 0.9rem 1.5rem;
    font-size: 0.95rem;
  }

  .section__cta .btn,
  .text-center .btn {
    width: 100%;
    max-width: 400px;
    margin-inline: auto;
    display: flex;
  }
}

/* Small Phones (≤400px) */
@media (max-width: 400px) {
  /* ---- Hero: compensar header menor ---- */
  .hero {
    padding-top: 82px;
  }

  /* ---- Segmentos: 1 coluna ---- */
  .segments-grid {
    grid-template-columns: 1fr;
    max-width: 320px;
    margin-inline: auto;
  }

  .segment-card__icon {
    max-width: 169px;
  }

  /* ---- Peças: 1 coluna ---- */
  .parts-grid {
    grid-template-columns: 1fr;
    max-width: 320px;
    margin-inline: auto;
  }

  /* ---- Marcas: 2 colunas ---- */
  .brands-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.5rem;
    max-width: 340px;
    margin-inline: auto;
  }

  /* ---- Processo ---- */
  .steps {
    max-width: 300px;
  }

  /* ---- Header logo menor ---- */
  .header__logo-img {
    height: 42px;
  }

  /* ---- Trust bar ---- */
  .trust-bar__items {
    gap: 0.5rem;
  }

  .trust-bar__item {
    font-size: 0.8rem;
  }

  /* ---- Seção headers ---- */
  .section__title {
    font-size: 1.25rem;
  }

  .section__label {
    font-size: 0.72rem;
  }

  /* ---- Footer ---- */
  .footer__social {
    font-size: 0.72rem;
    padding: 0.45rem 0.5rem;
  }

  .footer__social svg {
    width: 16px;
    height: 16px;
  }

  .footer__brand-img {
    height: 80px;
  }
}


/* ============================================
   WHATSAPP FLOATING BUTTON
   ============================================ */

.whatsapp-float {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 9999;

  display: flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: #25D366;
  color: #ffffff;
  box-shadow: 0 4px 24px rgba(37, 211, 102, 0.4), 0 2px 8px rgba(0, 0, 0, 0.15);
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.3s ease;
  animation: whatsapp-pulse 2s ease-in-out infinite;
}

.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 8px 32px rgba(37, 211, 102, 0.55), 0 4px 12px rgba(0, 0, 0, 0.2);
  animation: none;
}

.whatsapp-float:active {
  transform: scale(0.95);
}

.whatsapp-float__icon {
  width: 32px;
  height: 32px;
  pointer-events: none;
}

@keyframes whatsapp-pulse {
  0%, 100% {
    box-shadow: 0 4px 24px rgba(37, 211, 102, 0.4), 0 2px 8px rgba(0, 0, 0, 0.15);
  }
  50% {
    box-shadow: 0 4px 36px rgba(37, 211, 102, 0.65), 0 2px 16px rgba(37, 211, 102, 0.3), 0 2px 8px rgba(0, 0, 0, 0.1);
  }
}

@media (max-width: 768px) {
  .whatsapp-float {
    bottom: 1.5rem;
    right: 1.5rem;
    width: 52px;
    height: 52px;
  }

  .whatsapp-float__icon {
    width: 28px;
    height: 28px;
  }
}
