﻿/* ============================================================
   R5WF Películas Especiais — style.css
   Design System: Premium Minimal — Volvo + Apple Inspired
   ============================================================ */


/* ============================================================
   1. CUSTOM PROPERTIES
   ============================================================ */
:root {
  --white:        #FFFFFF;
  --off-white:    #F8F7F4;
  --light:        #F0EEE9;
  --graphite:     #2C2C2C;
  --black:        #1A1A1A;
  --muted:        #787878;
  --border:       #E8E5DF;
  --accent:       #C8102E;
  --accent-hover: #A50D25;
  --accent-dim:   rgba(200, 16, 46, 0.08);

  --font-display: "Montserrat", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --font-body:    "Montserrat", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;

  --section-py:   clamp(80px, 10vw, 130px);
  --container:    1280px;
  --nav-h:        76px;

  --ease:         cubic-bezier(0.4, 0, 0.2, 1);
  --ease-out:     cubic-bezier(0, 0, 0.2, 1);
  --dur:          0.65s;
  --dur-fast:     0.28s;

  --shadow-sm:    0 1px 3px rgba(0,0,0,0.06), 0 1px 2px rgba(0,0,0,0.04);
  --shadow-md:    0 6px 24px rgba(0,0,0,0.09);
  --shadow-lg:    0 24px 64px rgba(0,0,0,0.14);
}


/* ============================================================
   2. 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;
  font-size: 16px;
}
body {
  font-family: var(--font-body);
  font-weight: 400;
  color: var(--graphite);
  background: var(--white);
  overflow-x: hidden;
  line-height: 1.6;
}
img     { display: block; max-width: 100%; height: auto; }
a       { color: inherit; text-decoration: none; }
ul, ol  { list-style: none; }
address { font-style: normal; }
figure  { margin: 0; }
button  { font-family: inherit; }

.sr-only {
  position: absolute;
  width: 1px; height: 1px; padding: 0;
  margin: -1px; overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap; border: 0;
}


/* ============================================================
   3. TYPOGRAPHY
   ============================================================ */
.heading-xl {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 4.2vw, 4.4rem);
  font-weight: 700;
  line-height: 1.12;
  letter-spacing: -0.01em;
  color: var(--black);
}
.heading-xl--light { color: var(--white); }

/* Montserrat Bold nos títulos e elementos de destaque */
.hero__headline,
.page-hero__title,
.footer__logo-r5,
.problem-card__title,
.solution-card__number,
.solution-card__title,
.tech-card__title,
.tech-card__spec-value,
.process-step__number,
.process-step__title,
.stat__value,
.stat__suffix,
.cta-final__headline,
.product-card__name,
.pillar__title,
.visibilidade__quote,
.auto-lines__name,
.auto-visibilidade__headline,
.auto-benefit__title,
.auto-stores__title,
.auto-hero__title,
.auto-stat__value,
.stores-editorial__title,
.faq__question {
  font-weight: 700;
}

.eyebrow {
  display: block;
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1.1rem;
}
.eyebrow--dim   { color: rgba(255,255,255,0.45); }
.eyebrow--light { color: rgba(255,255,255,0.65); }


/* ============================================================
   4. LAYOUT
   ============================================================ */
.container {
  width: 100%;
  max-width: var(--container);
  margin-left: auto;
  margin-right: auto;
  padding-left: clamp(24px, 4vw, 56px);
  padding-right: clamp(24px, 4vw, 56px);
}
.section-header {
  max-width: 680px;
  margin-bottom: clamp(48px, 6vw, 80px);
}
.section-header--dark .heading-xl { color: var(--white); }
.section-header__sub {
  margin-top: 1.1rem;
  font-size: 1.02rem;
  color: var(--muted);
  line-height: 1.75;
  font-weight: 400;
}


/* ============================================================
   5. BUTTONS
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 14px 32px;
  border: 1px solid transparent;
  border-radius: 1px;
  cursor: pointer;
  line-height: 1;
  white-space: nowrap;
  transition: background var(--dur-fast) var(--ease),
              border-color var(--dur-fast) var(--ease),
              color var(--dur-fast) var(--ease),
              transform var(--dur-fast) var(--ease),
              box-shadow var(--dur-fast) var(--ease);
}
.btn:focus-visible { outline: 2px solid var(--accent); outline-offset: 3px; }
.btn--primary { background: var(--accent); color: var(--white); border-color: var(--accent); }
.btn--primary:hover {
  background: var(--accent-hover); border-color: var(--accent-hover);
  transform: translateY(-1px);
  box-shadow: 0 8px 28px rgba(200,16,46,0.28);
}
.btn--outline { background: transparent; color: var(--accent); border-color: var(--accent); }
.btn--outline:hover { background: var(--accent); color: var(--white); }
.btn--ghost {
  background: rgba(255,255,255,0.1); color: var(--white);
  border-color: rgba(255,255,255,0.45);
  -webkit-backdrop-filter: blur(6px); backdrop-filter: blur(6px);
}
.btn--ghost:hover { background: rgba(255,255,255,0.2); border-color: rgba(255,255,255,0.75); }
.btn--ghost-light { background: transparent; color: var(--white); border-color: rgba(255,255,255,0.5); }
.btn--ghost-light:hover { background: rgba(255,255,255,0.1); border-color: var(--white); }
.btn--nav {
  background: var(--accent); color: var(--white); border-color: var(--accent);
  padding: 9px 22px; font-size: 0.72rem; flex-shrink: 0;
}
.btn--nav:hover { background: var(--accent-hover); transform: translateY(-1px); }
.btn--large { padding: 18px 48px; font-size: 0.85rem; }


/* ============================================================
   6. ANIMATION SYSTEM
   ============================================================ */
[data-animate] {
  opacity: 0;
  transition: opacity var(--dur) var(--ease-out), transform var(--dur) var(--ease-out);
}
[data-animate="fade-in"]     { transform: none; }
[data-animate="slide-up"]    { transform: translateY(38px); }
[data-animate="slide-left"]  { transform: translateX(56px); }
[data-animate="slide-right"] { transform: translateX(-56px); }
[data-animate].is-visible    { opacity: 1; transform: none; }


/* ============================================================
   7. NAV
   ============================================================ */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  height: var(--nav-h);
  transition: background var(--dur-fast) var(--ease), box-shadow var(--dur-fast) var(--ease);
}
.nav.is-scrolled {
  background: rgba(255,255,255,0.97);
  -webkit-backdrop-filter: blur(14px); backdrop-filter: blur(14px);
  box-shadow: 0 1px 0 var(--border);
}

.nav__container {
  display: flex;
  flex-direction: row;
  align-items: center;
  flex-wrap: nowrap;
  height: var(--nav-h);
  max-width: var(--container);
  margin-left: auto; margin-right: auto;
  padding-left: clamp(24px, 4vw, 56px);
  padding-right: clamp(24px, 4vw, 56px);
  gap: 32px;
}

.nav__logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  text-decoration: none;
  transition: opacity var(--dur-fast) var(--ease);
}
.nav__logo:hover { opacity: 0.85; }
.nav__logo:focus-visible { outline: 2px solid var(--accent); outline-offset: 4px; border-radius: 2px; }
.nav__logo-img {
  display: block;
  height: clamp(34px, 4.2vw, 42px);
  width: auto;
  max-width: min(168px, 38vw);
  object-fit: contain;
}
.nav__logo-r5 {
  font-family: var(--font-display);
  font-size: 1.55rem; font-weight: 700; letter-spacing: 0.04em;
  color: var(--white);
  transition: color var(--dur-fast) var(--ease);
}
.nav__logo-sub {
  font-size: 0.46rem; font-weight: 500; letter-spacing: 0.28em; text-transform: uppercase;
  color: rgba(255,255,255,0.5); margin-top: 2px;
  transition: color var(--dur-fast) var(--ease);
}
.nav.is-scrolled .nav__logo-r5  { color: var(--accent); }
.nav.is-scrolled .nav__logo-sub { color: var(--muted); }

/* Desktop links */
.nav__links {
  display: flex;
  flex-direction: row;
  align-items: center;
  flex-wrap: nowrap;
  gap: clamp(14px, 1.6vw, 22px);
  list-style: none;
  margin-left: auto;
  flex-shrink: 0;
}
.nav__link {
  font-size: 0.76rem; font-weight: 400; letter-spacing: 0.04em;
  color: rgba(255,255,255,0.75);
  position: relative; white-space: nowrap; text-decoration: none;
  transition: color var(--dur-fast) var(--ease);
}
.nav__link::after {
  content: "";
  position: absolute; bottom: -3px; left: 0;
  width: 0; height: 1px; background: var(--accent);
  transition: width var(--dur-fast) var(--ease);
}
.nav__link:hover        { color: var(--white); }
.nav__link:hover::after { width: 100%; }
.nav__link:focus-visible { outline: 2px solid var(--accent); outline-offset: 4px; border-radius: 2px; }
.nav.is-scrolled .nav__link       { color: var(--graphite); }
.nav.is-scrolled .nav__link:hover { color: var(--black); }

/* Hamburguer - hidden by default */
.nav__toggle {
  display: none;
  flex-direction: column;
  gap: 5px; padding: 8px;
  background: transparent; border: none; cursor: pointer; flex-shrink: 0;
}
.nav__toggle span {
  display: block; width: 22px; height: 1.5px;
  background: var(--white); border-radius: 1px; transform-origin: center;
  transition: transform var(--dur-fast) var(--ease), opacity var(--dur-fast) var(--ease), background var(--dur-fast) var(--ease);
}
.nav.is-scrolled .nav__toggle span { background: var(--black); }
.nav__toggle.is-open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav__toggle.is-open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav__toggle.is-open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* Mobile menu - hidden by default */
.nav__mobile {
  position: fixed;
  top: var(--nav-h); left: 0; right: 0;
  background: var(--white);
  padding: 28px clamp(24px, 4vw, 56px) 40px;
  transform: translateY(-8px);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  z-index: 999;
  border-bottom: 1px solid var(--border);
  box-shadow: var(--shadow-lg);
  transition: transform var(--dur-fast) var(--ease), opacity var(--dur-fast) var(--ease), visibility var(--dur-fast) var(--ease);
}
.nav__mobile.is-open {
  transform: translateY(0);
  opacity: 1; visibility: visible; pointer-events: all;
}
.nav__mobile ul { display: flex; flex-direction: column; gap: 2px; list-style: none; }
.nav__mobile-link {
  display: block; padding: 13px 0; font-size: 0.95rem; color: var(--graphite);
  border-bottom: 1px solid var(--border); text-decoration: none;
  transition: color var(--dur-fast) var(--ease);
}
.nav__mobile-link:hover { color: var(--accent); }
.nav__mobile li:last-child { margin-top: 20px; }


/* ============================================================
   8. HERO
   ============================================================ */
.hero {
  position: relative;
  width: 100%;
  height: 100vh;
  min-height: 580px;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero__bg {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  z-index: 0; overflow: hidden;
}
.hero__img {
  width: 100%; height: 115%;
  object-fit: cover;
  object-position: 36% 42%;
  transform: scale(1.22);
  transform-origin: 34% 40%;
  display: block;
}
.hero__overlay {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: linear-gradient(135deg, rgba(8,8,8,0.80) 0%, rgba(15,15,15,0.52) 45%, rgba(10,10,10,0.38) 100%);
}
.hero__content {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: var(--container);
  margin-left: auto; margin-right: auto;
  padding-left: clamp(24px, 4vw, 56px);
  padding-right: clamp(24px, 4vw, 56px);
  padding-top: var(--nav-h);
}
.hero__eyebrow {
  font-size: 0.66rem; font-weight: 500; letter-spacing: 0.24em; text-transform: uppercase;
  color: rgba(255,255,255,0.52); margin-bottom: 1.4rem;
}
.hero__headline {
  font-family: var(--font-display);
  font-size: clamp(3rem, 7vw, 7.5rem);
  font-weight: 700; line-height: 1.08; letter-spacing: -0.015em;
  color: var(--white); max-width: 860px; margin-bottom: 1.4rem;
}
.hero__sub {
  font-size: clamp(1rem, 1.4vw, 1.2rem); font-weight: 400;
  color: rgba(255,255,255,0.7); line-height: 1.7; max-width: 480px; margin-bottom: 2.4rem;
}
.hero__ctas { display: flex; flex-wrap: wrap; gap: 14px; }
.hero__scroll {
  position: absolute; bottom: 40px; left: 50%; transform: translateX(-50%);
  z-index: 2; display: flex; flex-direction: column; align-items: center; gap: 10px;
  color: rgba(255,255,255,0.45); text-decoration: none;
  transition: color var(--dur-fast) var(--ease);
}
.hero__scroll:hover { color: rgba(255,255,255,0.85); }
.hero__scroll-label { font-size: 0.58rem; letter-spacing: 0.22em; text-transform: uppercase; }
.hero__scroll-line {
  display: block; width: 1px; height: 40px;
  background: linear-gradient(to bottom, currentColor, transparent);
  animation: scrollPulse 2.2s ease-in-out infinite;
}
@keyframes scrollPulse {
  0%, 100% { opacity: 0.35; transform: scaleY(1); }
  50%       { opacity: 1;    transform: scaleY(1.15); }
}


/* ============================================================
   9. ABOUT
   ============================================================ */
.about { padding: var(--section-py) 0; background: var(--white); }
.about__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(48px, 7vw, 100px);
  align-items: center;
}
.about__text { max-width: 560px; }
.about__text .heading-xl { margin-bottom: 1.8rem; }
.about__body { font-size: 1rem; color: var(--muted); line-height: 1.85; font-weight: 400; margin-bottom: 1.3rem; }
.about__body strong { color: var(--graphite); font-weight: 500; }
.about__body--accent {
  color: var(--graphite); font-weight: 400;
  border-left: 2px solid var(--accent); padding-left: 20px; margin-top: 1.8rem;
}
.about__body--accent strong { color: var(--black); }
.about__text .btn { margin-top: 1.4rem; }
.about__visual { position: relative; }
.about__img-wrap { border-radius: 1px; overflow: hidden; aspect-ratio: 4/5; }
.about__img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: 52% 68%;
  transform: scale(1.16);
  transform-origin: 50% 72%;
  transition: transform 0.9s var(--ease);
}
.about__img-wrap:hover .about__img { transform: scale(1.2); }


/* ============================================================
   10. PROBLEMS
   ============================================================ */
.problems { padding: var(--section-py) 0; background: var(--off-white); }
.problems__grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 2px; }
.problem-card {
  padding: 44px 28px; background: var(--white);
  position: relative; overflow: hidden;
  transition: box-shadow var(--dur-fast) var(--ease), transform var(--dur-fast) var(--ease);
}
.problem-card::after {
  content: ""; position: absolute; bottom: 0; left: 0; width: 100%; height: 2px;
  background: var(--accent); transform: scaleX(0); transform-origin: left;
  transition: transform var(--dur-fast) var(--ease);
}
.problem-card:hover { box-shadow: var(--shadow-md); transform: translateY(-4px); }
.problem-card:hover::after { transform: scaleX(1); }
.problem-card__icon { color: var(--accent); opacity: 0.8; margin-bottom: 22px; }
.problem-card__title {
  font-family: var(--font-display); font-size: 1.3rem; font-weight: 500;
  color: var(--black); line-height: 1.2; margin-bottom: 12px;
}
.problem-card__text { font-size: 0.87rem; color: var(--muted); line-height: 1.8; font-weight: 400; }


/* ============================================================
   11. SOLUTIONS
   ============================================================ */
.solutions { padding: var(--section-py) 0; background: var(--white); }
.solutions__grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 1px; background: var(--border); border: 1px solid var(--border);
}
.solution-card {
  background: var(--white); padding: 48px 40px;
  display: flex; flex-direction: row; gap: 20px;
  transition: background var(--dur-fast) var(--ease);
}
.solution-card:hover { background: var(--off-white); }
.solution-card__number {
  font-family: var(--font-display); font-size: 4rem; font-weight: 400;
  color: var(--accent); opacity: 0.13; line-height: 0.85; flex-shrink: 0; width: 64px;
  transition: opacity var(--dur-fast) var(--ease);
}
.solution-card:hover .solution-card__number { opacity: 0.22; }
.solution-card__content { flex: 1; }
.solution-card__title {
  font-family: var(--font-display); font-size: 1.45rem; font-weight: 500;
  color: var(--black); line-height: 1.2; margin-bottom: 5px;
}
.solution-card__sub {
  font-size: 0.65rem; font-weight: 500; letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--accent); opacity: 0.75; margin-bottom: 14px;
}
.solution-card__text { font-size: 0.88rem; color: var(--muted); line-height: 1.8; font-weight: 400; margin-bottom: 18px; }
.solution-card__tag {
  display: inline-block; padding: 4px 12px; background: var(--accent-dim); color: var(--accent);
  font-size: 0.65rem; font-weight: 500; letter-spacing: 0.1em; text-transform: uppercase; border-radius: 1px;
}


/* ============================================================
   12. COMPARISON SLIDER
   ============================================================ */
.comparison { padding: var(--section-py) 0; background: var(--off-white); }
.comparison__slider {
  position: relative; aspect-ratio: 16 / 6.5; overflow: hidden; border-radius: 1px;
  cursor: ew-resize; user-select: none; -webkit-user-select: none; touch-action: none;
  box-shadow: var(--shadow-lg); max-width: 1100px; margin-left: auto; margin-right: auto;
}
.comparison__before, .comparison__after {
  position: absolute; top: 0; left: 0; right: 0; bottom: 0;
}
.comparison__img { width: 100%; height: 100%; object-fit: cover; object-position: 40% 60%; pointer-events: none; display: block; }
.comparison__after { clip-path: inset(0 0 0 30%); }
.comparison__label {
  position: absolute; bottom: 20px; left: 20px;
  background: rgba(10,10,10,0.62); -webkit-backdrop-filter: blur(8px); backdrop-filter: blur(8px);
  color: var(--white); font-size: 0.66rem; font-weight: 500; letter-spacing: 0.14em;
  text-transform: uppercase; padding: 6px 14px; border-radius: 1px; pointer-events: none;
}
.comparison__label--after { left: auto; right: 20px; background: rgba(200,16,46,0.8); }
.comparison__handle {
  position: absolute; top: 0; bottom: 0; left: 30%; transform: translateX(-50%);
  width: 46px; display: flex; align-items: center; justify-content: center; z-index: 10; cursor: ew-resize;
}
.comparison__handle-line {
  position: absolute; top: 0; bottom: 0; left: 50%; transform: translateX(-50%);
  width: 2px; background: var(--white); box-shadow: 0 0 10px rgba(0,0,0,0.35);
}
.comparison__handle-circle {
  position: relative; z-index: 1;
  width: 46px; height: 46px; background: var(--white); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 2px 18px rgba(0,0,0,0.28); flex-shrink: 0;
  transition: transform var(--dur-fast) var(--ease);
}
.comparison__slider:hover .comparison__handle-circle { transform: scale(1.12); }


/* ============================================================
   13. TECHNOLOGY
   ============================================================ */
.technology { padding: var(--section-py) 0; background: var(--black); }
.technology .section-header { max-width: 760px; }
.technology__grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 1px; background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.06);
}
.tech-card { background: var(--black); padding: 52px 44px; transition: background var(--dur-fast) var(--ease); }
.tech-card:hover { background: #181818; }
.tech-card__graphic { width: 100%; max-width: 200px; margin-bottom: 36px; border-radius: 2px; overflow: hidden; }
.tech-card__graphic svg { display: block; width: 100%; }
.tech-card__title {
  font-family: var(--font-display); font-size: 1.55rem; font-weight: 500;
  color: var(--white); line-height: 1.2; margin-bottom: 12px;
}
.tech-card__text { font-size: 0.88rem; color: rgba(255,255,255,0.5); line-height: 1.85; font-weight: 400; margin-bottom: 28px; }
.tech-card__spec {
  display: flex; flex-direction: row; align-items: baseline; gap: 8px;
  padding-top: 22px; border-top: 1px solid rgba(255,255,255,0.07);
}
.tech-card__spec-value { font-family: var(--font-display); font-size: 2.2rem; font-weight: 500; color: var(--accent); line-height: 1; }
.tech-card__spec-label { font-size: 0.72rem; color: rgba(255,255,255,0.35); letter-spacing: 0.04em; }


/* ============================================================
   14. TESTIMONIALS
   ============================================================ */
.testimonials { padding: var(--section-py) 0; background: var(--light); }
.testimonials__grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(270px, 1fr)); gap: 20px; }
.testimonial-card {
  background: var(--white); padding: 40px; border-radius: 2px;
  display: flex; flex-direction: column; gap: 18px; box-shadow: var(--shadow-sm);
  transition: box-shadow var(--dur-fast) var(--ease), transform var(--dur-fast) var(--ease);
}
.testimonial-card:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); }
.testimonial-card__stars { color: #E8A020; font-size: 0.95rem; letter-spacing: 2px; line-height: 1; }
.testimonial-card__text {
  font-family: var(--font-display); font-size: 1.1rem; font-weight: 400; font-style: italic;
  color: var(--graphite); line-height: 1.72; flex: 1;
}
.testimonial-card__author {
  display: flex; flex-direction: row; align-items: center; gap: 14px;
  padding-top: 18px; border-top: 1px solid var(--border);
}
.testimonial-card__avatar {
  width: 42px; height: 42px; background: var(--accent-dim); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.72rem; font-weight: 600; color: var(--accent); flex-shrink: 0;
}
.testimonial-card__name { display: block; font-size: 0.88rem; font-weight: 500; color: var(--black); font-style: normal; }
.testimonial-card__city { display: block; font-size: 0.76rem; color: var(--muted); margin-top: 2px; }


/* ============================================================
   15. GALLERY
   ============================================================ */
.gallery { padding: var(--section-py) 0 0; background: var(--white); overflow: hidden; }
.gallery__header {
  max-width: var(--container); margin-left: auto; margin-right: auto;
  padding-left: clamp(24px, 4vw, 56px); padding-right: clamp(24px, 4vw, 56px);
  margin-bottom: 44px;
}
.gallery__grid { display: grid; grid-template-columns: repeat(3, 1fr); grid-auto-rows: 280px; gap: 4px; }
.gallery__item { overflow: hidden; position: relative; background: var(--light); }
.gallery__item img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform 0.8s var(--ease); }
.gallery__item:hover img { transform: scale(1.06); }
.gallery__item::after {
  content: ""; position: absolute; top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(0,0,0,0); pointer-events: none; transition: background var(--dur-fast) var(--ease);
}
.gallery__item:hover::after { background: rgba(0,0,0,0.08); }
.gallery__item--tall { grid-row: span 2; }
.gallery__item--wide { grid-column: span 2; }


/* ============================================================
   16. PROCESS
   ============================================================ */
.process { padding: var(--section-py) 0; background: var(--off-white); }
.process__steps { display: flex; flex-direction: row; align-items: flex-start; }
.process-step { flex: 1; padding-right: 40px; }
.process__connector { flex-shrink: 0; width: 1px; height: 80px; background: var(--border); margin-top: 60px; }
.process-step__number {
  font-family: var(--font-display); font-size: 5.5rem; font-weight: 400;
  color: var(--accent); opacity: 0.14; line-height: 0.85; margin-bottom: 18px;
  transition: opacity var(--dur-fast) var(--ease);
}
.process-step:hover .process-step__number { opacity: 0.25; }
.process-step__title {
  font-family: var(--font-display); font-size: 1.6rem; font-weight: 500;
  color: var(--black); margin-bottom: 10px; line-height: 1.2;
}
.process-step__text { font-size: 0.88rem; color: var(--muted); line-height: 1.85; font-weight: 400; }


/* ============================================================
   17. STATS
   ============================================================ */
.stats { padding: var(--section-py) 0; background: var(--graphite); }
.stats__grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 1px; background: rgba(255,255,255,0.07); border: 1px solid rgba(255,255,255,0.07);
}
.stat { background: var(--graphite); padding: 56px 40px; text-align: center; }
.stat__row { display: flex; flex-direction: row; align-items: baseline; justify-content: center; gap: 2px; }
.stat__value {
  font-family: var(--font-display); font-size: clamp(2.8rem, 4.5vw, 5rem);
  font-weight: 500; color: var(--white); line-height: 1;
}
.stat__suffix { font-family: var(--font-display); font-size: 2.4rem; font-weight: 400; color: var(--accent); line-height: 1; }
.stat__label {
  display: block; margin-top: 10px; font-size: 0.68rem; font-weight: 400;
  letter-spacing: 0.16em; text-transform: uppercase; color: rgba(255,255,255,0.38);
}


/* ============================================================
   18. FAQ
   ============================================================ */
.faq { padding: var(--section-py) 0; background: var(--white); }
.faq__list { max-width: 760px; }
.faq__item { border-bottom: 1px solid var(--border); }
.faq__question {
  width: 100%; display: flex; flex-direction: row; justify-content: space-between;
  align-items: center; gap: 24px; padding: 26px 0;
  background: transparent; border: none; cursor: pointer; text-align: left;
  font-family: var(--font-body); font-size: 0.97rem; font-weight: 400; color: var(--black);
  transition: color var(--dur-fast) var(--ease);
}
.faq__question:hover { color: var(--accent); }
.faq__question:focus-visible { outline: 2px solid var(--accent); outline-offset: 4px; border-radius: 2px; }
.faq__icon {
  flex-shrink: 0; width: 22px; height: 22px;
  border: 1px solid var(--border); border-radius: 50%; position: relative;
  transition: border-color var(--dur-fast) var(--ease), background var(--dur-fast) var(--ease);
}
.faq__icon::before, .faq__icon::after {
  content: ""; position: absolute; top: 50%; left: 50%; background: var(--graphite);
  transition: transform var(--dur-fast) var(--ease), opacity var(--dur-fast) var(--ease), background var(--dur-fast) var(--ease);
}
.faq__icon::before { width: 9px; height: 1.5px; transform: translate(-50%, -50%); }
.faq__icon::after  { width: 1.5px; height: 9px; transform: translate(-50%, -50%); }
.faq__question[aria-expanded="true"] .faq__icon { background: var(--accent); border-color: var(--accent); }
.faq__question[aria-expanded="true"] .faq__icon::before,
.faq__question[aria-expanded="true"] .faq__icon::after { background: var(--white); }
.faq__question[aria-expanded="true"] .faq__icon::after { transform: translate(-50%, -50%) rotate(90deg); opacity: 0; }
.faq__answer { max-height: 0; overflow: hidden; transition: max-height 0.42s var(--ease); }
.faq__answer p { padding-bottom: 26px; font-size: 0.93rem; color: var(--muted); line-height: 1.85; font-weight: 400; }
.faq__answer a { color: var(--accent); text-decoration: underline; text-underline-offset: 3px; }
.faq__answer a:hover { color: var(--accent-hover); }
.faq__answer strong { color: var(--graphite); font-weight: 500; }


/* ============================================================
   19. CTA FINAL
   ============================================================ */
.cta-final {
  position: relative; padding: clamp(80px, 12vw, 160px) 0;
  min-height: 540px; display: flex; align-items: center; overflow: hidden;
}
.cta-final__bg { position: absolute; top: 0; left: 0; right: 0; bottom: 0; }
.cta-final__bg img { width: 100%; height: 100%; object-fit: cover; object-position: center; display: block; }
.cta-final__overlay {
  position: absolute; top: 0; left: 0; right: 0; bottom: 0;
  background: linear-gradient(to right, rgba(8,8,8,0.90) 0%, rgba(8,8,8,0.72) 50%, rgba(8,8,8,0.48) 100%);
}
.cta-final__content {
  position: relative; z-index: 2;
  width: 100%; max-width: var(--container);
  margin-left: auto; margin-right: auto;
  padding-left: clamp(24px, 4vw, 56px); padding-right: clamp(24px, 4vw, 56px);
}
.cta-final__headline {
  font-family: var(--font-display); font-size: clamp(2.2rem, 4.5vw, 5.2rem);
  font-weight: 500; line-height: 1.1; letter-spacing: -0.02em;
  color: var(--white); max-width: 680px; margin-bottom: 1.2rem;
}
.cta-final__sub {
  font-size: 1.02rem; color: rgba(255,255,255,0.62); font-weight: 400;
  line-height: 1.72; max-width: 480px; margin-bottom: 2.4rem;
}
.cta-final__actions { display: flex; flex-direction: row; flex-wrap: wrap; gap: 14px; }


/* ============================================================
   20. FOOTER
   ============================================================ */
.footer { background: var(--black); color: var(--white); padding: clamp(60px, 7vw, 88px) 0 0; }
.footer__top {
  display: grid; grid-template-columns: 1fr 2fr;
  gap: clamp(40px, 6vw, 88px);
  padding-bottom: clamp(48px, 5vw, 72px);
  border-bottom: 1px solid rgba(255,255,255,0.07);
}
.footer__logo {
  display: flex;
  align-items: center;
  margin-bottom: 16px;
  text-decoration: none;
  transition: opacity var(--dur-fast) var(--ease);
}
.footer__logo:hover { opacity: 0.85; }
.footer__logo:focus-visible { outline: 2px solid var(--accent); outline-offset: 4px; border-radius: 2px; }
.footer__logo-img {
  display: block;
  height: clamp(44px, 5vw, 56px);
  width: auto;
  max-width: 200px;
  object-fit: contain;
}
.footer__logo-r5 { font-family: var(--font-display); font-size: 1.8rem; font-weight: 600; letter-spacing: 0.06em; color: var(--white); }
.footer__logo-sub { font-size: 0.46rem; font-weight: 500; letter-spacing: 0.28em; text-transform: uppercase; color: rgba(255,255,255,0.38); margin-top: 2px; }
.footer__tagline { font-size: 0.86rem; color: rgba(255,255,255,0.42); line-height: 1.7; margin-bottom: 16px; font-weight: 400; }
.footer__shark { font-size: 0.78rem; color: rgba(255,255,255,0.35); line-height: 1.6; font-weight: 400; margin-bottom: 28px; }
.footer__shark strong { color: rgba(255,255,255,0.55); font-weight: 400; }
.footer__social { display: flex; flex-direction: column; gap: 10px; }
.footer__social-link {
  display: flex; flex-direction: row; align-items: center; gap: 10px;
  font-size: 0.8rem; color: rgba(255,255,255,0.45); text-decoration: none;
  transition: color var(--dur-fast) var(--ease);
}
.footer__social-link:hover { color: var(--white); }
.footer__nav { display: grid; grid-template-columns: repeat(3, 1fr); gap: 36px; }
.footer__col-title { font-size: 0.62rem; font-weight: 500; letter-spacing: 0.2em; text-transform: uppercase; color: rgba(255,255,255,0.35); margin-bottom: 18px; }
.footer__col ul { display: flex; flex-direction: column; gap: 9px; list-style: none; }
.footer__col a {
  font-size: 0.86rem; color: rgba(255,255,255,0.55); line-height: 1.5; text-decoration: none;
  transition: color var(--dur-fast) var(--ease), padding-left var(--dur-fast) var(--ease);
}
.footer__col a:hover { color: var(--white); padding-left: 4px; }
.footer__address p { font-size: 0.83rem; color: rgba(255,255,255,0.5); line-height: 1.72; margin-bottom: 7px; font-weight: 400; }
.footer__bottom {
  display: flex; flex-direction: row; justify-content: space-between;
  align-items: center; gap: 24px; padding: 24px 0; flex-wrap: wrap;
}
.footer__copy { font-size: 0.76rem; color: rgba(255,255,255,0.28); text-decoration: none; }


/* ============================================================
   21. RESPONSIVE — Tablet <= 1100px
   ============================================================ */
@media (max-width: 1100px) {
  .nav__links  { display: none; }
  .btn--nav    { display: none; }
  .nav__toggle { display: flex; }
  .about__grid     { grid-template-columns: 1fr; gap: 56px; }
  .about__text     { max-width: 100%; }
  .about__img-wrap { aspect-ratio: 16/9; }
  .problems__grid  { grid-template-columns: repeat(3, 1fr); }
  .technology__grid { grid-template-columns: 1fr 1fr; }
  .stats__grid     { grid-template-columns: repeat(2, 1fr); }
  .footer__top     { grid-template-columns: 1fr; }
  .footer__nav     { grid-template-columns: repeat(3, 1fr); }
}

/* ============================================================
   22. RESPONSIVE — Mobile <= 768px
   ============================================================ */
@media (max-width: 768px) {
  .hero__eyebrow { display: none; }
  .hero__ctas    { flex-direction: column; align-items: flex-start; }
  .problems__grid   { grid-template-columns: 1fr 1fr; }
  .solutions__grid  { grid-template-columns: 1fr; }
  .solution-card    { padding: 32px 28px; }
  .comparison__slider { aspect-ratio: 4 / 3; }
  .technology__grid { grid-template-columns: 1fr; }
  .testimonials__grid { grid-template-columns: 1fr; }
  .gallery__grid     { grid-template-columns: 1fr 1fr; grid-auto-rows: 200px; }
  .gallery__item--tall { grid-row: auto; }
  .gallery__item--wide { grid-column: auto; }
  .process__steps    { flex-direction: column; }
  .process__connector { width: 56px; height: 1px; margin: 0 0 0 28px; }
  .process-step      { padding-right: 0; padding-bottom: 32px; }
  .stats__grid { grid-template-columns: repeat(2, 1fr); }
  .stat        { padding: 40px 24px; }
  .footer__nav    { grid-template-columns: 1fr 1fr; gap: 28px; }
  .footer__bottom { flex-direction: column; align-items: flex-start; gap: 10px; }
  .cta-final__actions { flex-direction: column; align-items: flex-start; }
  .section-header { margin-bottom: 44px; }
}

/* ============================================================
   23. RESPONSIVE — Small mobile <= 480px
   ============================================================ */
@media (max-width: 480px) {
  .problems__grid { grid-template-columns: 1fr; }
  .gallery__grid  { grid-template-columns: 1fr; grid-auto-rows: 240px; }
  .stats__grid    { grid-template-columns: 1fr 1fr; }
  .footer__nav    { grid-template-columns: 1fr; }
  .hero__scroll   { display: none; }
}

/* ============================================================
   24. 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 !important; transform: none !important; }
  html { scroll-behavior: auto; }
}

/* ============================================================
   25. PÁGINAS INTERNAS — Hero, produtos, lojas, blog
   ============================================================ */
.page-hero {
  position: relative;
  min-height: clamp(420px, 62vh, 620px);
  display: flex;
  align-items: flex-end;
  padding: calc(var(--nav-h) + 48px) 0 clamp(56px, 8vw, 96px);
  color: var(--white);
  isolation: isolate;
}
.page-hero__bg {
  position: absolute;
  inset: 0;
  z-index: -1;
}
.page-hero__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.page-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(26,26,26,0.35) 0%, rgba(26,26,26,0.72) 100%);
}
.page-hero__content { max-width: 760px; }
.page-hero__title {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 5.5vw, 4rem);
  font-weight: 400;
  line-height: 1.08;
  letter-spacing: -0.01em;
  margin-bottom: 16px;
}
.page-hero__sub {
  font-size: clamp(1rem, 1.8vw, 1.2rem);
  font-weight: 400;
  line-height: 1.65;
  color: rgba(255,255,255,0.88);
  max-width: 54ch;
}

.page-section { padding: var(--section-py) 0; }
.page-section--light { background: var(--off-white); }

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.65);
  margin-bottom: 20px;
}
.breadcrumb a:hover { color: var(--white); }
.breadcrumb span[aria-hidden="true"] { opacity: 0.45; }

.nav__link.is-active,
.nav__mobile-link.is-active { color: var(--accent); }

/* Cards de produto */
.products-grid {
  display: grid;
  gap: clamp(20px, 3vw, 28px);
}
@media (min-width: 768px) {
  .products-grid { grid-template-columns: repeat(2, 1fr); }
}

.product-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 4px;
  overflow: hidden;
  display: grid;
  grid-template-columns: 1fr;
  transition: box-shadow var(--dur-fast) var(--ease), transform var(--dur-fast) var(--ease);
}
@media (min-width: 640px) {
  .product-card { grid-template-columns: 220px 1fr; }
}
.product-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
}
.product-card__media {
  background: var(--light);
  display: grid;
  place-items: center;
  padding: 24px;
  min-height: 200px;
}
.product-card__media img {
  max-height: 160px;
  width: auto;
  object-fit: contain;
}
.product-card__body { padding: clamp(24px, 3vw, 32px); }
.product-card__name {
  font-family: var(--font-display);
  font-size: 1.65rem;
  font-weight: 500;
  color: var(--black);
  margin-bottom: 4px;
}
.product-card__line {
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 18px;
}
.product-card__features { display: grid; gap: 14px; margin-bottom: 24px; }
.product-card__feature-title {
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--black);
  margin-bottom: 4px;
}
.product-card__feature-text {
  font-size: 0.88rem;
  color: var(--muted);
  line-height: 1.65;
}
.product-card__meta {
  font-size: 0.82rem;
  color: var(--muted);
  margin-bottom: 18px;
}

/* Destaque visibilidade */
.visibilidade {
  display: grid;
  gap: clamp(32px, 5vw, 64px);
  align-items: center;
}
@media (min-width: 900px) {
  .visibilidade { grid-template-columns: 1fr 1fr; }
}
.visibilidade__visual {
  border-radius: 4px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.visibilidade__visual img { width: 100%; aspect-ratio: 16/10; object-fit: cover; }
.visibilidade__quote {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  line-height: 1.2;
  color: var(--black);
  margin-bottom: 20px;
}
.visibilidade__quote em {
  font-style: italic;
  color: var(--accent);
}
.visibilidade__text { color: var(--muted); max-width: 48ch; }

/* Pillars (alta visibilidade, conforto...) */
.pillars {
  display: grid;
  gap: 20px;
}
@media (min-width: 768px) {
  .pillars { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 1100px) {
  .pillars { grid-template-columns: repeat(4, 1fr); }
}
.pillar {
  background: var(--white);
  border: 1px solid var(--border);
  padding: 28px 24px;
  border-radius: 4px;
}
.pillar__title {
  font-family: var(--font-display);
  font-size: 1.35rem;
  margin-bottom: 10px;
  color: var(--black);
}
.pillar__text { font-size: 0.9rem; color: var(--muted); line-height: 1.65; }

/* Lojas / rede */
.stores-editorial {
  background: var(--white);
  border: 1px dashed var(--border);
  border-radius: 4px;
  padding: clamp(28px, 4vw, 48px);
}
.stores-editorial__title {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  margin-bottom: 16px;
  color: var(--black);
}
.stores-editorial__content {
  color: var(--muted);
  line-height: 1.75;
  min-height: 120px;
}
.stores-editorial__content[data-editable-placeholder]::before {
  content: attr(data-editable-placeholder);
  display: block;
  color: var(--muted);
  font-style: italic;
}

.store-cards {
  display: grid;
  gap: 20px;
  margin-top: 32px;
}
@media (min-width: 768px) {
  .store-cards { grid-template-columns: repeat(3, 1fr); }
}
.store-card {
  background: var(--off-white);
  border: 1px solid var(--border);
  padding: 28px 24px;
  border-radius: 4px;
}
.store-card__city {
  font-size: 0.75rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 8px;
}
.store-card__name {
  font-family: var(--font-display);
  font-size: 1.35rem;
  margin-bottom: 10px;
}
.store-card__address { font-size: 0.88rem; color: var(--muted); line-height: 1.65; }

/* Aplicadores */
.aplicadores-toolbar {
  display: grid;
  gap: 16px;
  margin-bottom: 32px;
}
@media (min-width: 640px) {
  .aplicadores-toolbar { grid-template-columns: 1fr 1fr auto; align-items: end; }
}
.field label {
  display: block;
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 8px;
}
.field select,
.field input {
  width: 100%;
  min-height: 48px;
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: 0 14px;
  font: inherit;
  background: var(--white);
  color: var(--graphite);
}
.aplicadores-list {
  display: grid;
  gap: 12px;
}
.aplicador-item {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: 20px 22px;
}
.aplicador-item__head {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 16px;
  align-items: baseline;
  margin-bottom: 6px;
}
.aplicador-item__id {
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
}
.aplicador-item__name {
  font-weight: 600;
  color: var(--black);
}
.aplicador-item__meta {
  font-size: 0.84rem;
  color: var(--muted);
}

/* Blog */
.blog-grid {
  display: grid;
  gap: 24px;
}
@media (min-width: 768px) {
  .blog-grid { grid-template-columns: repeat(2, 1fr); }
}
.blog-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: box-shadow var(--dur-fast) var(--ease);
}
.blog-card:hover { box-shadow: var(--shadow-md); }
.blog-card__cat {
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
}
.blog-card__title {
  font-family: var(--font-display);
  font-size: 1.45rem;
  line-height: 1.25;
  color: var(--black);
}
.blog-card__date { font-size: 0.82rem; color: var(--muted); }
.blog-card__excerpt { font-size: 0.92rem; color: var(--muted); line-height: 1.65; flex: 1; }

/* Sobre */
.about-page-grid {
  display: grid;
  gap: clamp(32px, 5vw, 64px);
}
@media (min-width: 900px) {
  .about-page-grid { grid-template-columns: 1.1fr 0.9fr; align-items: start; }
}
.about-page-panel {
  background: var(--off-white);
  border: 1px solid var(--border);
  padding: clamp(28px, 4vw, 40px);
  border-radius: 4px;
}
.about-page-panel h3 {
  font-family: var(--font-display);
  font-size: 1.6rem;
  margin-bottom: 12px;
}

/* WhatsApp flutuante (Visionmetrics-ready) */
.wa-float {
  position: fixed;
  right: clamp(16px, 3vw, 28px);
  bottom: clamp(16px, 3vw, 28px);
  z-index: 999;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 10px;
}
.wa-float__btn {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: #25D366;
  color: var(--white);
  display: grid;
  place-items: center;
  box-shadow: 0 12px 32px rgba(37, 211, 102, 0.35);
  transition: transform var(--dur-fast) var(--ease), box-shadow var(--dur-fast) var(--ease);
}
.wa-float__btn:hover {
  transform: translateY(-2px) scale(1.03);
  box-shadow: 0 16px 36px rgba(37, 211, 102, 0.42);
}
.wa-float__label {
  font-size: 0.72rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  background: var(--black);
  color: var(--white);
  padding: 8px 12px;
  border-radius: 999px;
  opacity: 0;
  transform: translateY(6px);
  transition: opacity var(--dur-fast) var(--ease), transform var(--dur-fast) var(--ease);
  pointer-events: none;
}
.wa-float:hover .wa-float__label,
.wa-float:focus-within .wa-float__label {
  opacity: 1;
  transform: translateY(0);
}

.nav__portal {
  font-size: 0.78rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  opacity: 0.75;
  margin-left: 8px;
}
  /* Lojas R5WF — mapa full width estilo Google Maps */
  .lojas-section { padding-top: clamp(48px, 6vw, 72px); }

  .lojas-map-full {
    border: 1px solid var(--border);
    border-radius: 8px;
    overflow: hidden;
    background: var(--white);
    box-shadow: var(--shadow-md);
    margin-bottom: clamp(32px, 5vw, 48px);
  }
  .lojas-map-full:fullscreen {
    border-radius: 0;
    margin: 0;
  }
  .lojas-map-full:fullscreen .lojas-map-full__canvas {
    min-height: 100vh;
  }

  .lojas-map-full__bar {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 12px 16px;
    background: var(--white);
    border-bottom: 1px solid var(--border);
  }
  .lojas-map-full__hint {
    font-size: 0.875rem;
    color: var(--muted);
    margin: 0;
    flex: 1;
    min-width: 200px;
  }
  .lojas-map-full__hint strong { color: var(--black); font-weight: 600; }
  .lojas-map-full__actions {
    display: flex;
    gap: 8px;
    align-items: center;
  }
  .lojas-map-full__btn {
    font: inherit;
    font-size: 0.8125rem;
    font-weight: 500;
    padding: 8px 14px;
    border: 1px solid var(--border);
    border-radius: 4px;
    background: var(--white);
    color: var(--graphite);
    cursor: pointer;
    text-decoration: none;
    transition: background 0.2s ease, border-color 0.2s ease;
  }
  .lojas-map-full__btn:hover {
    background: var(--off-white);
    border-color: var(--muted);
  }
  .lojas-map-full__btn--icon {
    padding: 8px 10px;
    display: grid;
    place-items: center;
  }

  .lojas-map-full__canvas {
    width: 100%;
    height: clamp(420px, 55vh, 620px);
    min-height: 420px;
    z-index: 1;
  }

  .lojas-body { max-width: 100%; }

  .lojas-list {
    display: grid;
    gap: 12px;
    grid-template-columns: 1fr;
    margin-top: 24px;
  }
  @media (min-width: 768px) {
    .lojas-list { grid-template-columns: repeat(2, 1fr); }
  }
  @media (min-width: 1100px) {
    .lojas-list { grid-template-columns: repeat(3, 1fr); }
  }

  .map-pin-wrap {
    background: transparent !important;
    border: none !important;
  }
  .map-pin {
    display: block;
    filter: drop-shadow(0 2px 4px rgba(0,0,0,0.35));
    transition: transform 0.2s ease;
  }
  .map-pin--active {
    transform: scale(1.2);
    filter: drop-shadow(0 4px 8px rgba(200,16,46,0.45));
  }

  .leaflet-popup-content-wrapper {
    border-radius: 8px;
    font-family: var(--font-body);
    font-size: 0.875rem;
    box-shadow: var(--shadow-md);
  }
  .leaflet-popup-content { margin: 14px 16px; line-height: 1.55; }
  .leaflet-popup-content strong {
    display: block;
    font-weight: 600;
    color: var(--black);
    margin-bottom: 4px;
    font-size: 0.9375rem;
  }
  .leaflet-popup-content a { color: var(--accent); }

  .loja-card.is-active {
    border-color: var(--accent);
    box-shadow: 0 0 0 1px var(--accent);
  }

  .lojas-help {
    margin-top: 24px;
    font-size: 0.9rem;
    color: var(--muted);
  }
  .lojas-help a { color: var(--accent); }

  /* legado — mantido para toolbar de filtros */
  .lojas-layout { display: block; }
  .lojas-panel { min-width: 0; }
  .loja-card {
    position: relative;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 4px;
    padding: 20px 22px;
    cursor: pointer;
    transition: border-color var(--dur-fast) var(--ease), box-shadow var(--dur-fast) var(--ease);
  }
  .loja-card:has(.loja-card__badge) {
    padding-top: 52px;
  }
  .loja-card:has(.loja-card__badge) .loja-card__head {
    padding-right: 88px;
  }
  .loja-card__badge {
    position: absolute;
    top: 10px;
    right: 10px;
    width: clamp(72px, 18vw, 96px);
    height: auto;
    object-fit: contain;
    pointer-events: none;
    user-select: none;
  }
  .loja-card:hover,
  .loja-card.is-active {
    border-color: var(--accent);
    box-shadow: var(--shadow-sm);
  }
  .loja-card__head {
    display: flex;
    flex-wrap: wrap;
    gap: 8px 14px;
    align-items: baseline;
    margin-bottom: 8px;
  }
  .loja-card__id {
    font-size: 0.72rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--accent);
  }
  .loja-card__name {
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-weight: 500;
    color: var(--black);
  }
  .loja-card__meta {
    font-size: 0.84rem;
    color: var(--muted);
    line-height: 1.6;
    margin-bottom: 12px;
  }
  .loja-card__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 8px 16px;
    font-size: 0.82rem;
  }
  .loja-card__actions a {
    color: var(--graphite);
    text-decoration: underline;
    text-underline-offset: 3px;
  }
  .loja-card__actions a:hover { color: var(--accent); }
  .lojas-map-panel {
    position: sticky;
    top: calc(var(--nav-h) + 16px);
    background: var(--off-white);
    border: 1px solid var(--border);
    border-radius: 4px;
    overflow: hidden;
  }
  .lojas-map-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    flex-wrap: wrap;
    padding: 16px 18px;
    border-bottom: 1px solid var(--border);
    background: var(--white);
  }
  .lojas-map-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
  }
  .lojas-map-title {
    font-family: var(--font-display);
    font-size: 1.15rem;
    font-weight: 500;
    color: var(--black);
  }
  .btn--sm {
    min-height: 2.5rem;
    padding: 0.5rem 1rem;
    font-size: 0.8125rem;
  }
  .lojas-map-wrap {
    aspect-ratio: 4 / 3;
    min-height: 320px;
    background: var(--light);
  }
  .lojas-map-wrap #lojas-map {
    width: 100%;
    height: 100%;
    min-height: 320px;
    z-index: 1;
  }
  @media (min-width: 1024px) {
    .lojas-map-wrap,
    .lojas-map-wrap #lojas-map { min-height: calc(100vh - 220px); }
  }
  .loja-marker-wrap {
    background: transparent !important;
    border: none !important;
  }
  .loja-marker {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: var(--accent);
    border: 2px solid var(--white);
    box-shadow: 0 2px 8px rgba(0,0,0,0.25);
    transition: transform 0.2s ease, width 0.2s ease, height 0.2s ease;
  }
  .loja-marker.is-active {
    width: 20px;
    height: 20px;
    transform: scale(1.1);
    z-index: 1000 !important;
  }
  .leaflet-popup-content-wrapper {
    border-radius: 4px;
    font-family: var(--font-body);
    font-size: 0.875rem;
  }
  .leaflet-popup-content { margin: 12px 14px; line-height: 1.5; }
  .leaflet-popup-content strong { font-weight: 600; color: var(--black); }
  .lojas-help {
    margin-top: 20px;
    font-size: 0.9rem;
    color: var(--muted);
  }
  .lojas-help a { color: var(--accent); }

/* ============================================================
   26. PÁGINA AUTOMOTIVA
   ============================================================ */
.page-automotiva .nav {
  background: rgba(255,255,255,0.97);
  -webkit-backdrop-filter: blur(14px);
  backdrop-filter: blur(14px);
  box-shadow: 0 1px 0 var(--border);
}
.page-automotiva .nav__link { color: var(--graphite); }
.page-automotiva .nav__link:hover { color: var(--black); }
.page-automotiva .nav__toggle span { background: var(--black); }

.auto-hero {
  padding-top: var(--nav-h);
  background: var(--off-white);
}
.auto-hero__split {
  display: grid;
}
@media (min-width: 960px) {
  .auto-hero__split {
    grid-template-columns: minmax(320px, 0.92fr) minmax(0, 1.18fr);
    min-height: min(560px, 68vh);
  }
}
.auto-hero__copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(36px, 5vw, 64px) clamp(24px, 4vw, 56px);
  width: 100%;
}
@media (min-width: 1280px) {
  .auto-hero__copy {
    padding-left: calc((100vw - var(--container)) / 2 + 56px);
    padding-right: 48px;
  }
}
.auto-hero__eyebrow {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 14px;
}
.auto-hero__title {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 4.4vw, 3.5rem);
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: -0.02em;
  color: var(--black);
  margin-bottom: 16px;
}
.auto-hero__sub {
  font-size: 1.02rem;
  line-height: 1.7;
  color: var(--muted);
  max-width: 46ch;
}
.breadcrumb--dark {
  color: var(--muted);
  margin-bottom: 18px;
}
.breadcrumb--dark a:hover { color: var(--black); }
.auto-hero__photo {
  margin: 0;
  background: #d7d4ce;
  min-height: 240px;
  height: 100%;
  overflow: hidden;
}
@media (max-width: 959px) {
  .auto-hero__photo { aspect-ratio: 16 / 10; }
}
.auto-hero__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 32% 68%;
  display: block;
}
.auto-hero-stats {
  width: 100%;
  background: var(--white);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.auto-hero-stats__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0;
}
@media (min-width: 768px) {
  .auto-hero-stats__grid { grid-template-columns: repeat(4, 1fr); }
}
.auto-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: clamp(18px, 2.4vw, 24px) 16px;
  text-align: center;
  border-right: 1px solid var(--border);
}
.auto-stat:last-child { border-right: none; }
@media (max-width: 767px) {
  .auto-stat:nth-child(2) { border-right: none; }
  .auto-stat:nth-child(1),
  .auto-stat:nth-child(2) { border-bottom: 1px solid var(--border); }
}
.auto-stat__value {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 2.6vw, 2.1rem);
  font-weight: 700;
  color: var(--black);
  line-height: 1;
  margin-bottom: 6px;
}
.auto-stat__label {
  font-size: 0.7rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--muted);
}

.auto-catalog { padding: clamp(48px, 6vw, 80px) 0 clamp(56px, 7vw, 88px); }
.auto-catalog__head {
  max-width: 640px;
  margin-bottom: 28px;
}
.auto-catalog__head .heading-xl { margin-bottom: 12px; }
.auto-intro__text {
  margin-top: 0;
  font-size: 1rem;
  color: var(--muted);
  line-height: 1.7;
  max-width: 58ch;
}

.auto-lines__tabs {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 8px;
  margin-bottom: 12px;
}
@media (max-width: 799px) {
  .auto-lines__tabs {
    display: flex;
    overflow-x: auto;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
    padding-bottom: 4px;
  }
  .auto-lines__tabs::-webkit-scrollbar { display: none; }
}
.auto-lines__tab {
  appearance: none;
  font-family: inherit;
  color: inherit;
  border: 1px solid var(--border);
  background: var(--black);
  border-radius: 8px;
  padding: 8px 8px 10px;
  cursor: pointer;
  text-align: center;
  min-width: 104px;
  transition: border-color var(--dur-fast) var(--ease), transform var(--dur-fast) var(--ease);
}
.auto-lines__tab:hover { border-color: rgba(200,16,46,0.45); }
.auto-lines__tab.is-active {
  border-color: var(--accent);
  box-shadow: 0 0 0 1px var(--accent);
}
.auto-lines__tab-visual {
  display: block;
  height: 72px;
  overflow: hidden;
  border-radius: 4px;
  background: #0a0a0a;
  margin-bottom: 8px;
}
.auto-lines__tab-visual img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
}
.auto-lines__tab-label {
  display: block;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.72);
}
.auto-lines__tab.is-active .auto-lines__tab-label { color: var(--white); }

.auto-lines__panels {
  background: #0c0c0c;
  border-radius: 12px;
  overflow: hidden;
  min-height: 420px;
}
.auto-lines__panel {
  display: none;
  align-items: stretch;
}
.auto-lines__panel:not([hidden]) {
  display: grid;
}
@media (min-width: 900px) {
  .auto-lines__panel { grid-template-columns: 1.15fr 0.85fr; }
}
.auto-lines__visual {
  background: #000;
  display: grid;
  place-items: center;
  min-height: 300px;
  padding: clamp(20px, 3.5vw, 40px) clamp(12px, 2vw, 28px);
}
.auto-lines__visual img {
  width: auto;
  max-width: 100%;
  max-height: min(400px, 52vh);
  object-fit: contain;
}
.auto-lines__body {
  padding: clamp(28px, 4vw, 44px);
  color: var(--white);
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: linear-gradient(180deg, #141414 0%, #0c0c0c 100%);
}
@media (min-width: 900px) {
  .auto-lines__body { border-left: 1px solid rgba(255,255,255,0.06); }
}
.auto-lines__tier {
  display: inline-block;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 10px;
}
.auto-lines__name {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 700;
  line-height: 1.12;
  color: var(--white);
  margin-bottom: 6px;
}
.auto-lines__spec {
  font-size: 0.92rem;
  color: rgba(255,255,255,0.62);
  margin-bottom: 16px;
}
.auto-lines__badges {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 22px;
}
.auto-lines__badge {
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  padding: 5px 10px;
  background: rgba(200,16,46,0.16);
  color: #f3b3bc;
  border-radius: 999px;
}
.auto-lines__features {
  display: grid;
  gap: 14px;
  margin: 0 0 28px;
  padding: 0;
}
.auto-lines__feature {
  padding-left: 14px;
  border-left: 2px solid rgba(255,255,255,0.12);
}
.auto-lines__feature strong {
  display: block;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 2px;
}
.auto-lines__feature span {
  font-size: 0.84rem;
  color: rgba(255,255,255,0.62);
  line-height: 1.55;
}
.auto-lines__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.auto-visibilidade {
  background: var(--black);
  color: var(--white);
  padding: var(--section-py) 0;
}
.auto-visibilidade__grid {
  display: grid;
  gap: clamp(40px, 6vw, 72px);
  align-items: center;
}
@media (min-width: 960px) {
  .auto-visibilidade__grid { grid-template-columns: 1fr 1.1fr; }
}
.auto-visibilidade__headline {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3.2rem);
  line-height: 1.15;
  margin-bottom: 20px;
}
.auto-visibilidade__headline em {
  font-style: italic;
  color: var(--accent);
}
.auto-visibilidade__text {
  color: rgba(255,255,255,0.72);
  line-height: 1.75;
  max-width: 48ch;
  margin-bottom: 24px;
}
.auto-visibilidade__points {
  display: grid;
  gap: 10px;
  margin-bottom: 32px;
}
.auto-visibilidade__points li {
  position: relative;
  padding-left: 20px;
  font-size: 0.92rem;
  color: rgba(255,255,255,0.82);
}
.auto-visibilidade__points li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
}
.auto-visibilidade__visual {
  margin: 0;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 32px 80px rgba(0,0,0,0.45);
}
.auto-visibilidade__visual img {
  width: 100%;
  aspect-ratio: 16/10;
  object-fit: cover;
}
.auto-visibilidade__caption {
  padding: 12px 16px;
  font-size: 0.78rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
  background: rgba(255,255,255,0.04);
}

.auto-benefits {
  padding: var(--section-py) 0;
  background: var(--off-white);
}
.section-header--center { text-align: center; max-width: 640px; margin: 0 auto 48px; }
.auto-benefits__grid {
  display: grid;
  gap: 20px;
}
@media (min-width: 640px) {
  .auto-benefits__grid { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 1100px) {
  .auto-benefits__grid { grid-template-columns: repeat(4, 1fr); }
}
.auto-benefit {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: clamp(24px, 3vw, 32px);
  transition: box-shadow var(--dur-fast) var(--ease), transform var(--dur-fast) var(--ease);
}
.auto-benefit:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}
.auto-benefit__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--accent-dim);
  color: var(--accent);
  margin-bottom: 16px;
}
.auto-benefit__title {
  font-family: var(--font-display);
  font-size: 1.35rem;
  color: var(--black);
  margin-bottom: 8px;
}
.auto-benefit__text {
  font-size: 0.9rem;
  color: var(--muted);
  line-height: 1.65;
}

.auto-stores {
  padding: var(--section-py) 0;
  background: var(--white);
}
.auto-stores__inner {
  display: grid;
  gap: clamp(32px, 5vw, 48px);
  align-items: center;
  background: linear-gradient(135deg, var(--off-white) 0%, var(--light) 100%);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: clamp(32px, 5vw, 56px);
}
@media (min-width: 768px) {
  .auto-stores__inner { grid-template-columns: 1.4fr 1fr; }
}
.auto-stores__title {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  color: var(--black);
  margin-bottom: 12px;
}
.auto-stores__text {
  color: var(--muted);
  line-height: 1.75;
  max-width: 48ch;
  margin-bottom: 24px;
}
.auto-stores__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}
.auto-stores__panel {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: clamp(32px, 4vw, 48px);
  background: var(--black);
  color: var(--white);
  border-radius: 8px;
}
.auto-stores__number {
  font-family: var(--font-display);
  font-size: clamp(3rem, 6vw, 4.5rem);
  font-weight: 500;
  line-height: 1;
  color: var(--accent);
  margin-bottom: 8px;
}
.auto-stores__panel-label {
  font-size: 0.82rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.65);
  line-height: 1.5;
}

.page-automotiva .btn--outline {
  border-color: var(--border);
}
.page-automotiva .auto-visibilidade .btn--primary {
  box-shadow: 0 8px 24px rgba(200,16,46,0.35);
}

.certs {
  padding: clamp(64px, 8vw, 110px) 0;
  background: var(--off-white);
}
.certs__grid {
  display: grid;
  gap: 16px;
  margin-top: 40px;
}
@media (min-width: 700px) {
  .certs__grid { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 1100px) {
  .certs__grid { grid-template-columns: repeat(3, 1fr); }
}
.cert-card {
  background: var(--white);
  border: 1px solid var(--border);
  padding: 28px 26px;
  border-radius: 4px;
}
.cert-card__code {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 10px;
}
.cert-card__title {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--black);
  margin-bottom: 10px;
  line-height: 1.3;
}
.cert-card__text {
  font-size: 0.92rem;
  color: var(--muted);
  line-height: 1.7;
}

.story {
  padding: var(--section-py) 0;
}
.story--alt { background: var(--off-white); }
.story__inner { max-width: 760px; }
.story__title {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3.4vw, 2.8rem);
  font-weight: 700;
  line-height: 1.18;
  color: var(--black);
  margin-bottom: 1.6rem;
}
.story p {
  font-size: 1.02rem;
  color: var(--muted);
  line-height: 1.85;
  margin-bottom: 1.2rem;
}
.story p strong { color: var(--graphite); font-weight: 600; }
.story .btn { margin-top: 8px; }
.story__video {
  margin-top: 28px;
  margin-bottom: 20px;
  aspect-ratio: 16 / 9;
  background: var(--black);
  border-radius: 6px;
  overflow: hidden;
}
.story__video iframe,
.story__video video {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}

.contact-grid {
  display: grid;
  gap: 18px;
}
@media (min-width: 800px) {
  .contact-grid { grid-template-columns: repeat(2, 1fr); }
}
.contact-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: clamp(28px, 4vw, 36px);
  display: flex;
  flex-direction: column;
  gap: 10px;
  min-height: 220px;
}
.contact-card__label {
  font-size: 0.68rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 600;
}
.contact-card__title {
  font-family: var(--font-display);
  font-size: 1.45rem;
  font-weight: 700;
  color: var(--black);
}
.contact-card p {
  color: var(--muted);
  line-height: 1.7;
  flex: 1;
}
.contact-card .btn { align-self: flex-start; margin-top: 8px; }

/* ============================================================
   27. PRINT
   ============================================================ */
@media print {
  .nav, .hero__scroll, .nav__toggle, .hero__ctas, .cta-final, .comparison, .stats { display: none; }
  [data-animate] { opacity: 1; transform: none; }
  body { color: #000; background: #fff; }
}
