/* =========================================================
   SELVANO DISTRIBUIDORA AUTOMOTIVA — CSS v2
   Refinamento visual: Industrial Equilibrado
   ========================================================= */

/* ===== RESET & CUSTOM PROPERTIES ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  /* Cores */
  --red:          #C41E2A;
  --red-dark:     #A01823;
  --red-glow:     rgba(196,30,42,0.18);
  --black:        #111111;
  --grafite:      #1C1C1C;
  --grafite-2:    #242424;
  --white:        #FFFFFF;
  --off-white:    #F6F6F4;
  --warm-gray:    #EEEDE9;
  --gray-dark:    #2E2E2E;
  --gray-body:    #484848;
  --gray-mid:     #666666;
  --gray-light:   #999999;
  --border:       #E4E3DF;
  --border-dark:  rgba(255,255,255,0.08);

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

  /* Sombras */
  --sh-xs:    0 1px 4px rgba(0,0,0,0.06);
  --sh-sm:    0 2px 10px rgba(0,0,0,0.08);
  --sh-md:    0 6px 24px rgba(0,0,0,0.10);
  --sh-lg:    0 12px 40px rgba(0,0,0,0.14);
  --sh-xl:    0 20px 60px rgba(0,0,0,0.18);
  --sh-red:   0 6px 20px rgba(196,30,42,0.36);
  --sh-red-h: 0 10px 32px rgba(196,30,42,0.48);

  /* Animação */
  --ease:      cubic-bezier(0.4, 0, 0.2, 1);
  --ease-out:  cubic-bezier(0, 0, 0.2, 1);
  --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
  --t-fast:   0.18s;
  --t-base:   0.28s;
  --t-slow:   0.5s;
}

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

body {
  font-family: var(--font);
  background: var(--off-white);
  color: var(--gray-body);
  line-height: 1.65;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img { display: block; max-width: 100%; }
a   { text-decoration: none; color: inherit; transition: color var(--t-base) var(--ease); }
ul  { list-style: none; }
em  { font-style: italic; }

.text-red { color: var(--red); }

/* ===== CONTAINERS ===== */
.container {
  width: 100%;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 28px;
}

/* ===== PROGRESS BAR ===== */
.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 3px;
  width: 0%;
  background: linear-gradient(90deg, var(--red), #E8404F);
  z-index: 2000;
  transition: width 0.08s linear;
  transform-origin: left;
}

/* ===== SECTIONS ===== */
.section          { position: relative; padding: 104px 0; }
.section-light    { background: var(--off-white); }

.section-header {
  text-align: center;
  margin-bottom: 68px;
  max-width: 680px;
  margin-left: auto;
  margin-right: auto;
}

.section-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--red);
  background: var(--red-glow);
  border: 1px solid rgba(196,30,42,0.2);
  border-radius: 100px;
  padding: 5px 14px;
  margin-bottom: 18px;
}
.section-eyebrow::before {
  content: '';
  display: inline-block;
  width: 5px; height: 5px;
  border-radius: 50%;
  background: var(--red);
  flex-shrink: 0;
}
.section-eyebrow-light {
  color: rgba(255,255,255,0.9);
  background: rgba(196,30,42,0.2);
  border-color: rgba(196,30,42,0.35);
}
.section-eyebrow-light::before { background: #E8404F; }

.section-title {
  font-size: clamp(26px, 3.6vw, 42px);
  font-weight: 900;
  color: var(--black);
  line-height: 1.18;
  letter-spacing: -0.025em;
}
.section-title-light { color: var(--white); }

.section-desc {
  margin-top: 18px;
  font-size: 17px;
  color: var(--gray-mid);
  line-height: 1.65;
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 13px 26px;
  font-family: var(--font);
  font-size: 15px;
  font-weight: 700;
  letter-spacing: -0.01em;
  border-radius: 8px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: all var(--t-base) var(--ease);
  white-space: nowrap;
  line-height: 1;
}
.btn-primary {
  background: var(--red);
  color: var(--white);
  border-color: var(--red);
  box-shadow: var(--sh-red);
}
.btn-primary:hover {
  background: var(--red-dark);
  border-color: var(--red-dark);
  transform: translateY(-2px);
  box-shadow: var(--sh-red-h);
}
.btn-primary:active { transform: translateY(0); }

.btn-ghost-white {
  background: rgba(255,255,255,0.08);
  color: var(--white);
  border-color: rgba(255,255,255,0.3);
  backdrop-filter: blur(4px);
}
.btn-ghost-white:hover {
  background: rgba(255,255,255,0.15);
  border-color: rgba(255,255,255,0.65);
  transform: translateY(-2px);
}

.btn-hero   { padding: 15px 30px; font-size: 16px; }
.btn-large  { padding: 16px 32px; font-size: 15px; }
.btn-xlarge { padding: 18px 38px; font-size: 17px; }

/* ===== REVEAL ANIMATIONS ===== */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition:
    opacity  0.65s var(--ease-out),
    transform 0.65s var(--ease-out);
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Hero animations */
@keyframes heroFadeUp {
  from { opacity: 0; transform: translateY(36px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes heroFadeRight {
  from { opacity: 0; transform: translateX(36px); }
  to   { opacity: 1; transform: translateX(0); }
}
@keyframes floatUp {
  from { opacity: 0; transform: translateY(20px) scale(0.95); }
  to   { opacity: 1; transform: translateY(0) scale(1); }
}
@keyframes gentleFloat {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-8px); }
}
@keyframes scrollBlink {
  0%, 100% { opacity: 1; transform: translateY(0); }
  50%       { opacity: 0; transform: translateY(6px); }
}

.animate-hero        { animation: heroFadeUp    0.9s var(--ease-out) 0.1s both; }
.animate-hero-visual { animation: heroFadeRight 0.9s var(--ease-out) 0.3s both; }

/* =============================
   NAVBAR
   ============================= */
.navbar {
  position: fixed;
  inset: 0 0 auto;
  z-index: 1000;
  padding: 22px 0;
  transition:
    background var(--t-slow) var(--ease),
    padding    var(--t-slow) var(--ease),
    box-shadow var(--t-slow) var(--ease);
}
.navbar.scrolled {
  background: rgba(17,17,17,0.96);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  padding: 14px 0;
  box-shadow: 0 1px 0 rgba(255,255,255,0.04), 0 4px 24px rgba(0,0,0,0.35);
}
.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 28px;
  gap: 24px;
}
.nav-logo img {
  height: 40px;
  width: auto;
  filter: brightness(0) invert(1);
  transition: opacity var(--t-base) var(--ease);
}
.nav-logo:hover img { opacity: 0.8; }

.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
}
.nav-link {
  font-size: 13.5px;
  font-weight: 500;
  color: rgba(255,255,255,0.75);
  letter-spacing: 0.01em;
  position: relative;
  padding-bottom: 2px;
}
.nav-link::after {
  content: '';
  position: absolute;
  bottom: -1px; left: 0;
  width: 0; height: 2px;
  background: var(--red);
  border-radius: 2px;
  transition: width var(--t-base) var(--ease);
}
.nav-link:hover        { color: var(--white); }
.nav-link.active       { color: var(--white); }
.nav-link:hover::after,
.nav-link.active::after { width: 100%; }

.nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 9px 20px;
  background: var(--red);
  color: var(--white) !important;
  font-size: 13.5px;
  font-weight: 700;
  border-radius: 7px;
  box-shadow: var(--sh-red);
  transition: all var(--t-base) var(--ease);
}
.nav-cta:hover {
  background: var(--red-dark);
  transform: translateY(-2px);
  box-shadow: var(--sh-red-h);
}
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 38px; height: 38px;
  background: none; border: none;
  cursor: pointer; padding: 7px;
}
.nav-toggle span {
  display: block;
  width: 100%; height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: all var(--t-base) var(--ease);
}
.nav-toggle.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.nav-toggle.open span:nth-child(2) { opacity: 0; width: 0; }
.nav-toggle.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* =============================
   HERO — Split Layout
   ============================= */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--black);
}
.hero-bg { position: absolute; inset: 0; z-index: 0; }
.hero-bg-img {
  width: 100%; height: 100%;
  object-fit: cover; object-position: 60% center;
  filter: saturate(0.35) contrast(1.1);
}
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(
    100deg,
    rgba(11,11,11,0.97) 0%,
    rgba(11,11,11,0.90) 45%,
    rgba(11,11,11,0.55) 70%,
    rgba(11,11,11,0.25) 100%
  );
}

/* Textura de malha sutil */
.hero-texture {
  position: absolute; inset: 0;
  background-image:
    radial-gradient(circle, rgba(255,255,255,0.035) 1px, transparent 1px);
  background-size: 28px 28px;
  pointer-events: none;
}

/* Linha de acento vermelha vertical */
.hero-accent-line {
  position: absolute;
  left: 0; top: 20%; bottom: 20%;
  width: 3px;
  background: linear-gradient(to bottom, transparent, var(--red), transparent);
  opacity: 0.7;
}

/* Layout inner */
.hero-inner {
  position: relative; z-index: 1;
  width: 100%;
  max-width: 1180px;
  margin: 0 auto;
  padding: 140px 28px 80px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 72px;
}

/* Conteúdo textual */
.hero-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 14px;
  background: rgba(196,30,42,0.12);
  border: 1px solid rgba(196,30,42,0.35);
  border-radius: 100px;
  font-size: 12px;
  font-weight: 600;
  color: rgba(255,255,255,0.88);
  letter-spacing: 0.04em;
  margin-bottom: 28px;
}
.hero-badge-dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--red);
  box-shadow: 0 0 0 0 rgba(196,30,42,0.5);
  animation: dotPulse 2.4s ease-in-out infinite;
  flex-shrink: 0;
}
@keyframes dotPulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(196,30,42,0.5); }
  50%       { box-shadow: 0 0 0 6px rgba(196,30,42,0); }
}

.hero-headline {
  font-size: clamp(38px, 5vw, 64px);
  font-weight: 900;
  color: var(--white);
  line-height: 1.06;
  letter-spacing: -0.035em;
  margin-bottom: 22px;
}
.hero-headline em {
  font-style: normal;
  color: var(--red);
  display: block;
}

.hero-sub {
  font-size: clamp(15px, 1.6vw, 17.5px);
  color: rgba(255,255,255,0.65);
  line-height: 1.72;
  max-width: 480px;
  margin-bottom: 38px;
}

.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 36px;
}

/* Prova social */
.hero-social-proof {
  display: flex;
  align-items: center;
  gap: 12px;
}
.proof-avatars {
  display: flex;
  margin-right: 4px;
}
.proof-av {
  width: 32px; height: 32px;
  border-radius: 50%;
  border: 2px solid rgba(17,17,17,0.8);
  display: flex; align-items: center; justify-content: center;
  font-size: 12px; font-weight: 800;
  color: var(--white);
  margin-left: -8px;
}
.proof-av:first-child { margin-left: 0; }
.proof-text {
  font-size: 13px;
  color: rgba(255,255,255,0.52);
  line-height: 1.4;
}
.proof-text strong { color: rgba(255,255,255,0.82); }

/* Coluna visual do hero */
.hero-visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-photo-frame {
  position: relative;
  width: 100%;
  aspect-ratio: 4/5;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--sh-xl), 0 0 0 1px rgba(255,255,255,0.06);
}
.hero-photo {
  width: 100%; height: 100%;
  object-fit: cover; object-position: center;
  filter: saturate(0.7) contrast(1.05);
  transition: transform 8s ease;
}
.hero-photo:hover { transform: scale(1.03); }
.hero-photo-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(
    to top,
    rgba(11,11,11,0.5) 0%,
    transparent 50%
  );
}

/* Cards flutuantes */
.hero-float-card {
  position: absolute;
  background: rgba(255,255,255,0.96);
  backdrop-filter: blur(12px);
  border-radius: 12px;
  padding: 14px 18px;
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow: var(--sh-lg);
  border: 1px solid rgba(255,255,255,0.8);
  z-index: 2;
}
.hero-float-top    { top: -20px; right: -24px; animation: floatUp 0.8s 0.7s var(--ease-spring) both; }
.hero-float-bottom { bottom: 28px; left: -24px; animation: floatUp 0.8s 0.95s var(--ease-spring) both; }

.float-icon {
  width: 38px; height: 38px;
  background: var(--red-glow);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.float-value {
  font-size: 16px;
  font-weight: 900;
  color: var(--black);
  letter-spacing: -0.02em;
  line-height: 1.2;
}
.float-label {
  font-size: 11px;
  color: var(--gray-mid);
  font-weight: 500;
  margin-top: 1px;
}

/* Scroll hint mouse */
.hero-scroll-hint {
  position: absolute;
  bottom: 32px; left: 50%;
  transform: translateX(-50%);
  z-index: 2;
}
.scroll-mouse {
  width: 22px; height: 34px;
  border: 2px solid rgba(255,255,255,0.25);
  border-radius: 12px;
  display: flex;
  justify-content: center;
  padding-top: 6px;
}
.scroll-wheel {
  width: 3px; height: 7px;
  background: rgba(255,255,255,0.5);
  border-radius: 3px;
  animation: scrollBlink 1.8s ease-in-out infinite;
}

/* =============================
   BENEFÍCIOS
   ============================= */
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.benefit-card {
  background: var(--white);
  border-radius: 14px;
  padding: 32px 26px 28px;
  border: 1px solid var(--border);
  position: relative;
  overflow: hidden;
  transition: transform var(--t-base) var(--ease), box-shadow var(--t-base) var(--ease);
}
.benefit-card::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  border: 1px solid transparent;
  transition: border-color var(--t-base) var(--ease);
  pointer-events: none;
}
.benefit-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--sh-lg);
}
.benefit-card:hover::after {
  border-color: rgba(196,30,42,0.2);
}

.benefit-num {
  position: absolute;
  top: 20px; right: 22px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.04em;
  color: var(--border);
}
.benefit-icon-wrap {
  width: 52px; height: 52px;
  background: var(--red-glow);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 20px;
  color: var(--red);
  transition: background var(--t-base) var(--ease);
}
.benefit-card:hover .benefit-icon-wrap {
  background: rgba(196,30,42,0.14);
}
.benefit-title {
  font-size: 16.5px;
  font-weight: 800;
  color: var(--black);
  line-height: 1.3;
  letter-spacing: -0.01em;
  margin-bottom: 10px;
}
.benefit-text {
  font-size: 14px;
  color: var(--gray-mid);
  line-height: 1.68;
  margin-bottom: 18px;
}
.benefit-tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.05em;
  color: var(--red);
  background: var(--red-glow);
  padding: 4px 10px;
  border-radius: 4px;
}

/* =============================
   COMO FUNCIONA — Dark section
   ============================= */
.section-como {
  background: var(--grafite);
  padding: 96px 0;
  overflow: hidden;
  position: relative;
}
.section-como::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(255,255,255,0.03) 1px, transparent 1px);
  background-size: 28px 28px;
  pointer-events: none;
}

.como-grid {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 0;
  margin-bottom: 56px;
}
.como-step {
  flex: 1;
  max-width: 280px;
  text-align: center;
  position: relative;
  padding: 0 16px;
}
.como-step-line {
  position: absolute;
  top: 36px;
  left: calc(50% + 36px);
  right: calc(-50% + 36px);
  height: 1px;
  background: linear-gradient(90deg, rgba(196,30,42,0.5), rgba(196,30,42,0.1));
}
.como-num {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.1em;
  color: var(--red);
  margin-bottom: 14px;
  display: block;
}
.como-icon {
  width: 72px; height: 72px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 16px;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 20px;
  position: relative;
  z-index: 1;
  transition: background var(--t-base) var(--ease), border-color var(--t-base) var(--ease);
}
.como-step:hover .como-icon {
  background: rgba(196,30,42,0.12);
  border-color: rgba(196,30,42,0.3);
}
.como-title {
  font-size: 17px;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 10px;
  letter-spacing: -0.01em;
}
.como-text {
  font-size: 14px;
  color: rgba(255,255,255,0.52);
  line-height: 1.65;
}
.como-arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: 36px;
  flex-shrink: 0;
  opacity: 0.5;
}
.como-cta {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}
.como-disclaimer {
  font-size: 13px;
  color: rgba(255,255,255,0.35);
}

/* =============================
   MARCAS — CARROSSEL
   ============================= */
.section-marcas {
  overflow: hidden;
  padding-bottom: 96px;
}
.section-marcas .section-desc {
  color: var(--gray-mid);
}
.marcas-carousel-wrapper {
  position: relative;
  width: 100%;
  overflow: hidden;
}
.marcas-carousel-wrapper::before,
.marcas-carousel-wrapper::after {
  content: '';
  position: absolute;
  top: 0; bottom: 0;
  width: 140px;
  z-index: 2;
  pointer-events: none;
}
.marcas-carousel-wrapper::before {
  left: 0;
  background: linear-gradient(to right, var(--off-white) 0%, transparent 100%);
}
.marcas-carousel-wrapper::after {
  right: 0;
  background: linear-gradient(to left, var(--off-white) 0%, transparent 100%);
}
.marcas-carousel { overflow: hidden; padding: 12px 0 20px; }
.marcas-track {
  display: flex;
  gap: 18px;
  width: max-content;
  animation: scrollMarque 38s linear infinite;
}
.marcas-track:hover { animation-play-state: paused; }
@keyframes scrollMarque {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
.marca-item {
  flex-shrink: 0;
  width: 136px; height: 84px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  padding: 12px;
  cursor: pointer;
  transition: transform var(--t-base) var(--ease),
              box-shadow var(--t-base) var(--ease),
              border-color var(--t-base) var(--ease);
}
.marca-item:hover {
  transform: translateY(-5px) scale(1.04);
  box-shadow: var(--sh-md);
  border-color: rgba(196,30,42,0.22);
}
.marca-item img {
  max-width: 100%; max-height: 54px;
  object-fit: contain;
  filter: grayscale(100%) opacity(0.65);
  transition: filter var(--t-base) var(--ease), opacity var(--t-base) var(--ease);
}
.marca-item:hover img {
  filter: grayscale(0%) opacity(1);
}

/* =============================
   NÚMEROS
   ============================= */
.section-numeros {
  background: var(--white);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 72px 0;
}
.numeros-grid {
  display: flex;
  align-items: stretch;
  justify-content: center;
  max-width: 860px;
  margin: 0 auto;
}
.numero-item {
  flex: 1;
  text-align: center;
  padding: 16px 32px 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
}
.numero-icon {
  width: 48px; height: 48px;
  background: var(--red-glow);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  color: var(--red);
  margin-bottom: 18px;
}
.numero-value {
  font-size: clamp(48px, 6vw, 76px);
  font-weight: 900;
  color: var(--red);
  line-height: 1;
  letter-spacing: -0.04em;
  margin-bottom: 10px;
  font-variant-numeric: tabular-nums;
}
.numero-label {
  font-size: 15px;
  font-weight: 700;
  color: var(--black);
  letter-spacing: -0.01em;
  margin-bottom: 4px;
}
.numero-sub {
  font-size: 12.5px;
  color: var(--gray-light);
}
.numero-divider {
  width: 1px;
  background: var(--border);
  align-self: stretch;
  margin: 24px 0;
}

/* =============================
   DEPOIMENTOS
   ============================= */
.section-depoimentos {
  background: var(--warm-gray);
}
.depoimentos-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  align-items: start;
}
.depoimento-card {
  background: var(--white);
  border-radius: 14px;
  padding: 28px 26px;
  border: 1px solid var(--border);
  transition: transform var(--t-base) var(--ease), box-shadow var(--t-base) var(--ease);
}
.depoimento-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--sh-lg);
}
.depoimento-card--featured {
  border-color: rgba(196,30,42,0.25);
  box-shadow: 0 0 0 1px rgba(196,30,42,0.1), var(--sh-sm);
  position: relative;
  top: -8px;
}
.depo-top {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--border);
}
.depo-avatar {
  width: 42px; height: 42px;
  border-radius: 50%;
  background: var(--av-bg, var(--red));
  color: var(--white);
  font-size: 16px;
  font-weight: 900;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  letter-spacing: 0;
}
.depo-meta { flex: 1; }
.depo-name {
  font-size: 14px;
  font-weight: 700;
  color: var(--black);
  line-height: 1.3;
}
.depo-role {
  font-size: 12px;
  color: var(--gray-light);
  margin-top: 2px;
}
.depo-stars {
  font-size: 13px;
  letter-spacing: 1px;
  color: var(--red);
  flex-shrink: 0;
}
.depo-quote {
  font-size: 15px;
  color: var(--gray-dark);
  line-height: 1.7;
  font-style: italic;
  font-weight: 400;
  position: relative;
  padding-left: 18px;
}
.depo-quote::before {
  content: '"';
  position: absolute;
  left: 0; top: -6px;
  font-size: 48px;
  font-style: normal;
  color: var(--red-glow);
  font-weight: 900;
  line-height: 1;
}

/* =============================
   GALERIA
   ============================= */
.section-galeria {
  background: var(--off-white);
  padding-bottom: 0;
}
.section-galeria .container { padding-bottom: 0; }
.galeria-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 3px;
  width: 100%;
  height: 480px;
  margin-top: 0;
}
.galeria-col { display: flex; flex-direction: column; gap: 3px; }
.galeria-item {
  position: relative;
  overflow: hidden;
  background: var(--grafite);
}
.galeria-item--large { grid-row: 1; }
.galeria-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  filter: saturate(0.75) contrast(1.05);
  transition: transform 0.6s var(--ease), filter 0.6s var(--ease);
  display: block;
}
.galeria-item:hover img {
  transform: scale(1.04);
  filter: saturate(1) contrast(1.05);
}
.galeria-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.65) 0%, transparent 60%);
  display: flex; align-items: flex-end;
  padding: 20px;
  opacity: 0;
  transition: opacity var(--t-base) var(--ease);
}
.galeria-item:hover .galeria-overlay { opacity: 1; }
.galeria-overlay span {
  font-size: 13px;
  font-weight: 700;
  color: var(--white);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

/* =============================
   CATEGORIAS
   ============================= */
.section-categorias {
  border-top: 1px solid var(--border);
}
.categorias-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.categoria-card {
  background: var(--white);
  border-radius: 12px;
  padding: 24px 22px;
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  gap: 16px;
  transition: transform var(--t-base) var(--ease),
              box-shadow var(--t-base) var(--ease),
              border-color var(--t-base) var(--ease);
  cursor: default;
}
.categoria-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--sh-md);
  border-color: rgba(196,30,42,0.18);
}
.categoria-icon {
  width: 56px; height: 56px;
  background: var(--red-glow);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  color: var(--red);
  flex-shrink: 0;
  transition: background var(--t-base) var(--ease);
}
.categoria-card:hover .categoria-icon { background: rgba(196,30,42,0.14); }
.categoria-body { flex: 1; }
.categoria-title {
  font-size: 15px;
  font-weight: 800;
  color: var(--black);
  margin-bottom: 4px;
  letter-spacing: -0.01em;
}
.categoria-text { font-size: 12.5px; color: var(--gray-mid); line-height: 1.5; }
.categoria-arrow {
  font-size: 18px;
  color: var(--border);
  flex-shrink: 0;
  transition: color var(--t-base) var(--ease), transform var(--t-base) var(--ease);
}
.categoria-card:hover .categoria-arrow {
  color: var(--red);
  transform: translateX(3px);
}

/* =============================
   CTA FINAL
   ============================= */
.section-cta-final {
  position: relative;
  padding: 120px 0;
  background: var(--black);
  overflow: hidden;
}
.cta-final-bg { position: absolute; inset: 0; z-index: 0; }
.cta-bg-img {
  width: 100%; height: 100%;
  object-fit: cover;
  filter: saturate(0.2) contrast(1.2);
  opacity: 0.3;
}
.cta-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(150deg,
    rgba(11,11,11,0.97) 0%,
    rgba(11,11,11,0.90) 100%
  );
}
.cta-final-content {
  position: relative; z-index: 1;
  text-align: center;
}
.eyebrow-light {
  color: rgba(255,255,255,0.88);
  background: rgba(196,30,42,0.18);
  border-color: rgba(196,30,42,0.32);
}
.cta-headline {
  font-size: clamp(28px, 4.2vw, 52px);
  font-weight: 900;
  color: var(--white);
  line-height: 1.14;
  letter-spacing: -0.03em;
  margin: 18px auto 18px;
  max-width: 720px;
}
.cta-sub {
  font-size: clamp(15px, 1.8vw, 18px);
  color: rgba(255,255,255,0.6);
  line-height: 1.7;
  max-width: 520px;
  margin: 0 auto 36px;
}
.cta-proof {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 28px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}
.cta-proof-item {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 13.5px;
  font-weight: 600;
  color: rgba(255,255,255,0.65);
}
.cta-final-actions {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}

/* =============================
   FOOTER
   ============================= */
.footer {
  position: relative;
  background: var(--grafite-2);
  color: rgba(255,255,255,0.65);
  padding: 72px 0 0;
  overflow: hidden;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1.1fr 1.6fr;
  gap: 52px;
  padding-bottom: 52px;
  border-bottom: 1px solid var(--border-dark);
}
.footer-logo img {
  height: 44px; width: auto;
  filter: brightness(0) invert(1);
  margin-bottom: 20px;
  opacity: 0.88;
}
.footer-desc {
  font-size: 14px;
  line-height: 1.72;
  color: rgba(255,255,255,0.45);
  margin-bottom: 24px;
  max-width: 290px;
}
.footer-social {
  display: flex;
  gap: 10px;
}
.social-link {
  width: 36px; height: 36px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.55);
  transition: all var(--t-base) var(--ease);
}
.social-link:hover {
  background: var(--red);
  border-color: var(--red);
  color: var(--white);
  transform: translateY(-3px);
}
.footer-col-title {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.28);
  margin-bottom: 20px;
}
.footer-contact-list { display: flex; flex-direction: column; gap: 13px; }
.footer-contact-list li {
  display: flex; align-items: center; gap: 10px;
  font-size: 13.5px;
}
.footer-contact-list li svg { color: rgba(255,255,255,0.35); flex-shrink: 0; }
.footer-contact-list a { color: rgba(255,255,255,0.65); }
.footer-contact-list a:hover { color: var(--white); }
.footer-address, .footer-hours {
  display: flex; align-items: flex-start;
  gap: 10px; font-size: 13.5px;
  line-height: 1.65;
  color: rgba(255,255,255,0.58);
  margin-bottom: 16px;
}
.footer-address svg, .footer-hours svg {
  flex-shrink: 0; margin-top: 3px;
  color: rgba(255,255,255,0.35);
}
.footer-hours strong { color: rgba(255,255,255,0.82); }

/* Footer CTA strip */
.footer-cta-strip {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 28px 0;
  border-bottom: 1px solid var(--border-dark);
  flex-wrap: wrap;
}
.footer-cta-strip p {
  font-size: 15px;
  font-weight: 600;
  color: rgba(255,255,255,0.72);
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 8px;
  padding: 22px 0;
}
.footer-cnpj, .footer-copy {
  font-size: 11.5px;
  color: rgba(255,255,255,0.25);
}

/* =============================
   WHATSAPP FLUTUANTE
   ============================= */
.whatsapp-float {
  position: fixed;
  bottom: 28px; right: 28px;
  z-index: 999;
  display: flex;
  align-items: center;
  gap: 10px;
  background: #22C55E;
  color: var(--white);
  padding: 13px 20px 13px 15px;
  border-radius: 100px;
  box-shadow: 0 4px 20px rgba(34,197,94,0.45);
  font-family: var(--font);
  font-size: 13.5px;
  font-weight: 700;
  transition: all var(--t-base) var(--ease);
  animation: waPulse 3.5s ease-in-out infinite;
}
.whatsapp-float:hover {
  background: #16A34A;
  transform: translateY(-4px) scale(1.03);
  box-shadow: 0 8px 28px rgba(34,197,94,0.55);
  animation: none;
}
.whatsapp-label { white-space: nowrap; }
@keyframes waPulse {
  0%, 100% { box-shadow: 0 4px 20px rgba(34,197,94,0.45); }
  50%       { box-shadow: 0 4px 28px rgba(34,197,94,0.65), 0 0 0 10px rgba(34,197,94,0.08); }
}

/* =============================
   RESPONSIVO — TABLET (1024px)
   ============================= */
@media (max-width: 1024px) {
  .hero-inner {
    grid-template-columns: 1fr;
    gap: 48px;
    text-align: center;
  }
  .hero-content { align-items: center; }
  .hero-sub { margin-left: auto; margin-right: auto; }
  .hero-visual { max-width: 480px; margin: 0 auto; }
  .hero-float-top  { top: -16px; right: -12px; }
  .hero-float-bottom { bottom: 20px; left: -12px; }
  .hero-accent-line { display: none; }

  .benefits-grid,
  .depoimentos-grid,
  .categorias-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .como-grid { flex-wrap: wrap; justify-content: center; gap: 40px; }
  .como-arrow { display: none; }
  .como-step { flex: 0 0 220px; }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 36px;
  }
  .footer-brand { grid-column: 1 / -1; }
  .footer-desc { max-width: 100%; }

  .galeria-grid { height: 360px; }
}

/* =============================
   RESPONSIVO — MOBILE (768px)
   ============================= */
@media (max-width: 768px) {
  /* Navbar mobile drawer */
  .nav-toggle { display: flex; }
  .nav-links {
    position: fixed;
    inset: 0 0 0 auto;
    width: min(300px, 82vw);
    background: rgba(15,15,15,0.98);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    flex-direction: column;
    align-items: flex-start;
    padding: 72px 28px 28px;
    gap: 4px;
    transform: translateX(100%);
    transition: transform 0.38s var(--ease);
    box-shadow: -6px 0 40px rgba(0,0,0,0.5);
    z-index: 999;
  }
  .nav-links.open { transform: translateX(0); }
  .nav-link {
    font-size: 17px;
    padding: 11px 0;
    width: 100%;
    border-bottom: 1px solid rgba(255,255,255,0.05);
    color: rgba(255,255,255,0.75);
  }
  .nav-cta {
    margin-top: 20px;
    width: 100%;
    justify-content: center;
    padding: 14px;
    font-size: 15px;
  }

  /* Hero */
  .hero-inner { padding: 110px 24px 72px; gap: 36px; }
  .hero-headline { font-size: 36px; }
  .hero-ctas { flex-direction: column; align-items: stretch; }
  .hero-ctas .btn { justify-content: center; }
  .hero-visual { max-width: 100%; }
  .hero-float-top, .hero-float-bottom { display: none; }

  /* Sections */
  .section { padding: 72px 0; }
  .section-header { margin-bottom: 44px; }
  .container { padding: 0 20px; }

  /* Grids → 1 col */
  .benefits-grid,
  .depoimentos-grid {
    grid-template-columns: 1fr;
  }
  .categorias-grid { grid-template-columns: 1fr; }

  /* Números */
  .numeros-grid { flex-direction: column; }
  .numero-divider { width: 48px; height: 1px; margin: 0 auto; align-self: auto; }
  .numero-item { padding: 16px; }

  /* Galeria */
  .galeria-grid {
    grid-template-columns: 1fr;
    height: auto;
  }
  .galeria-item { height: 220px; }
  .galeria-col { display: contents; }

  /* Depoimento featured */
  .depoimento-card--featured { top: 0; }

  /* Footer */
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-brand { grid-column: 1; }
  .footer-bottom { flex-direction: column; align-items: center; text-align: center; gap: 6px; }
  .footer-cta-strip { flex-direction: column; align-items: flex-start; }

  /* WA float */
  .whatsapp-float { bottom: 20px; right: 20px; padding: 12px 15px; }
  .whatsapp-label { display: none; }

  /* CTA final */
  .cta-final-actions { flex-direction: column; align-items: center; }
  .cta-final-actions .btn { width: 100%; max-width: 340px; justify-content: center; }
  .cta-proof { gap: 16px; }

  /* Como */
  .como-grid { flex-direction: column; align-items: center; gap: 40px; }
  .como-step { max-width: 280px; }
  .como-step-line { display: none !important; }
}

@media (max-width: 480px) {
  .hero-headline { font-size: 32px; }
  .section-title { font-size: 25px; }
  .marcas-carousel-wrapper::before,
  .marcas-carousel-wrapper::after { width: 56px; }
  .hero-photo-frame { aspect-ratio: 3/2; }
  .benefit-card, .depoimento-card { padding: 24px 20px; }
}
