/* ============================================================
   PROCESSO DETAIL — style.css v3.0
   Dark Luxury Automotive — Inspired by ppfad.eu
   ============================================================ */

/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
img, video { display: block; max-width: 100%; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

/* ── Variables ── */
:root {
  --gold:        #ab8742;
  --gold-light:  #d4af6e;
  --gold-dim:    rgba(171,135,66,0.15);
  --gold-border: rgba(171,135,66,0.25);
  --bg:          #080808;
  --bg2:         #0f0f0f;
  --surf:        #161616;
  --surf2:       #222222;
  --text:        #f0f0f0;
  --text2:       #888888;
  --text3:       #444444;
  --wa:          #25D366;
  --wa-dark:     #1eb857;
  --r:           8px;
  --rl:          16px;
  --rxl:         24px;
  --trans:       0.35s cubic-bezier(0.4,0,0.2,1);
}

/* ── Base ── */
body {
  font-family: 'Inter', sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  cursor: default;
}

h1,h2,h3,h4 { font-family: 'Playfair Display', serif; line-height: 1.1; }
p { color: var(--text2); line-height: 1.75; }
a { transition: color var(--trans); }

.container { max-width: 1200px; margin: 0 auto; padding: 0 32px; }
.section-pad { padding: 120px 0; }

/* ── SCRATCH CANVAS ── */
#scratch-canvas {
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  pointer-events: none;
  z-index: 20;
  opacity: 1;
  transition: opacity 0.5s ease;
}

/* ── NAVBAR ── */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 900;
  padding: 24px 0;
  transition: background var(--trans), padding var(--trans);
}

.navbar.scrolled {
  background: rgba(8,8,8,0.95);
  backdrop-filter: blur(20px);
  padding: 16px 0;
  border-bottom: 1px solid var(--surf2);
}

.navbar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* Logo: tamanho e transição ajustados */
.navbar__logo img {
  height: 58px;
  width: auto;
  max-width: 190px;
  object-fit: contain;
  transition: opacity 0.28s ease, transform 0.28s ease;
}

body.menu-open .navbar__logo { opacity: 0; pointer-events: none; }

/* Menu button */
.menu-btn {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
  width: 48px; height: 48px;
  padding: 8px;
  z-index: 1100;
  position: relative;
}

.menu-btn span {
  display: block;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: transform var(--trans), opacity var(--trans), width var(--trans);
  transform-origin: left center;
}

.menu-btn span:nth-child(1) { width: 28px; }
.menu-btn span:nth-child(2) { width: 20px; }
.menu-btn span:nth-child(3) { width: 24px; }

.menu-btn.active span:nth-child(1) { transform: rotate(45deg) translateY(-1px); width: 28px; }
.menu-btn.active span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.menu-btn.active span:nth-child(3) { transform: rotate(-45deg) translateY(1px); width: 28px; }

/* ── FULLSCREEN MENU ── */
.fullmenu {
  position: fixed;
  inset: 0;
  z-index: 800;
  background: var(--gold);
  display: flex;
  flex-direction: column;
  transform: translateY(-100%);
  transition: transform 0.7s cubic-bezier(0.76,0,0.24,1);
  overflow: hidden;
}

.fullmenu.open { transform: translateY(0); }

.fullmenu__bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--gold) 0%, #8a6c33 100%);
}

.fullmenu__inner {
  position: relative;
  z-index: 1;
  display: flex;
  flex: 1;
  align-items: center;
  padding: 100px 80px 60px;
  gap: 60px;
}

.fullmenu__links {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.fullmenu__link {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(36px, 5vw, 64px);
  color: rgba(255,255,255,0.7);
  letter-spacing: 2px;
  transition: color var(--trans), transform var(--trans);
  display: inline-block;
  line-height: 1.1;
}

.fullmenu__link:hover,
.fullmenu__link.active {
  color: #fff;
  transform: translateX(12px);
}

.fullmenu__link.active {
  background: rgba(255,255,255,0.15);
  padding: 2px 16px;
  border-radius: 4px;
  transform: none;
}

.fullmenu__deco {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0.6;
}

.fullmenu__deco svg { width: min(400px, 40vw); height: auto; }

.fullmenu__contact {
  position: relative;
  z-index: 1;
  display: flex;
  gap: 48px;
  padding: 24px 80px;
  border-top: 1px solid rgba(255,255,255,0.2);
}

.fullmenu__contact a,
.fullmenu__contact span {
  font-size: 14px;
  color: rgba(255,255,255,0.7);
  font-weight: 500;
}

.fullmenu__contact a:hover { color: #fff; }

/* ── BUTTONS ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.5px;
  padding: 16px 36px;
  border-radius: 100px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: all var(--trans);
  white-space: nowrap;
}

.btn--wa {
  background: var(--wa);
  color: #fff;
  border-color: var(--wa);
}
.btn--wa:hover {
  background: var(--wa-dark);
  border-color: var(--wa-dark);
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(37,211,102,0.35);
}

.btn--outline {
  background: transparent;
  color: var(--text2);
  border-color: var(--surf2);
}
.btn--outline:hover {
  border-color: var(--gold);
  color: var(--gold);
  transform: translateY(-3px);
}

.btn--lg { padding: 20px 52px; font-size: 16px; }

/* ── HERO ── */
.hero { z-index: 1;
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--bg);
  background-image: url('images/hero-car-qJBa8COZ.jpg');
  background-size: cover;
  background-position: center;
  overflow: hidden;
  z-index: 1;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(8,8,8,0.75) 0%,
    rgba(8,8,8,0.5) 40%,
    rgba(8,8,8,0.85) 100%
  );
  z-index: 11;
}

.hero__content { position: relative;
  position: relative;
  z-index: 15;
  text-align: center;
  max-width: 900px;
  padding: 0 24px;
  padding-top: 80px;
}

.hero__eyebrow {
  display: inline-block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 5px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 28px;
  padding: 8px 20px;
  border: 1px solid var(--gold-border);
  border-radius: 100px;
  background: rgba(171,135,66,0.08);
}

.hero__title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(72px, 12vw, 160px);
  line-height: 0.9;
  letter-spacing: 4px;
  color: #fff;
  margin-bottom: 28px;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.hero__title-line { display: block; }
.hero__title-line--gold { color: var(--gold); }

.hero__sub {
  font-size: 18px;
  color: rgba(240,240,240,0.7);
  margin-bottom: 48px;
  font-weight: 300;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}

.hero__ctas {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.hero__scroll-hint {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 15;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.hero__scroll-hint span {
  font-size: 10px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--text3);
}

.hero__scroll-line {
  width: 1px;
  height: 48px;
  background: linear-gradient(180deg, var(--text3) 0%, transparent 100%);
  animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {
  0%,100% { transform: scaleY(1); opacity: 0.5; }
  50%      { transform: scaleY(1.3); opacity: 1; }
}

/* ── TICKER ── */
.ticker {
  background: var(--surf);
  border-top: 1px solid var(--surf2);
  border-bottom: 1px solid var(--surf2);
  overflow: hidden;
  padding: 18px 0;
  position: relative;
  z-index: 1;
  /* Fade suave nas bordas do ticker */
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, #000 8%, #000 92%, transparent 100%);
  mask-image: linear-gradient(90deg, transparent 0%, #000 8%, #000 92%, transparent 100%);
}

.ticker__track {
  display: flex;
  align-items: center;
  gap: 48px;
  width: max-content;
  animation: tickerRun 30s linear infinite;
  white-space: nowrap;
}

.ticker--reverse .ticker__track { animation-direction: reverse; }

.ticker__track span {
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--text2);
}

.ticker__sep { color: var(--gold) !important; font-size: 10px !important; }

@keyframes tickerRun {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ── STATS ── */
.stats { position: relative; z-index: 1; }

.stats__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--surf2);
  border-bottom: 1px solid var(--surf2);
}

.stat {
  padding: 64px 24px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  position: relative;
}

.stat:not(:last-child)::after {
  content: '';
  position: absolute;
  right: 0; top: 25%; bottom: 25%;
  width: 1px;
  background: linear-gradient(180deg, transparent, var(--surf2), transparent);
}

.stat__num {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 72px;
  line-height: 1;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  letter-spacing: 2px;
}

.stat__label {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--text2);
}

/* ── SECTION HEADER ── */
.section-header { text-align: center; margin-bottom: 72px; }

.eyebrow {
  display: inline-block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}

.section-header h2 {
  font-size: clamp(36px, 5vw, 56px);
  font-weight: 900;
  margin-bottom: 16px;
  letter-spacing: -0.5px;
}

.section-sub {
  font-size: 17px;
  color: var(--text2);
  max-width: 520px;
  margin: 0 auto;
}

/* ── SERVIÇOS ── */
.servicos { background: var(--bg); position: relative; z-index: 1; }

.servicos__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  background: var(--surf2);
  border: 1px solid var(--surf2);
  border-radius: var(--rxl);
  overflow: hidden;
  margin-bottom: 48px;
}

/* Last card (5th) spans full row if alone */
.servico-card:nth-child(4) { border-radius: 0 0 0 var(--rxl); }
.servico-card:nth-child(5) { border-radius: 0 0 var(--rxl) 0; }

.servico-card {
  background: var(--surf);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  transition: background var(--trans);
  position: relative;
}

.servico-card:hover { background: var(--surf2); }

.servico-card__img {
  overflow: hidden;
  aspect-ratio: 16/10;
}

.servico-card__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s ease;
}

.servico-card:hover .servico-card__img img { transform: scale(1.06); }

.servico-card__body {
  padding: 28px 28px 32px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex: 1;
}

.servico-card__tag {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 13px;
  letter-spacing: 3px;
  color: var(--gold);
}

.servico-card__body h3 {
  font-family: 'Playfair Display', serif;
  font-size: 20px;
  font-weight: 700;
  color: var(--text);
  line-height: 1.3;
}

.servico-card__body p {
  font-size: 14px;
  color: var(--text2);
  line-height: 1.65;
  flex: 1;
}

.servico-card__cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 600;
  color: var(--gold);
  margin-top: 8px;
  transition: gap var(--trans);
}

.servico-card:hover .servico-card__cta { gap: 12px; }

.servicos__cta { text-align: center; }

/* ── SOBRE ── */
.sobre { background: var(--bg2); position: relative; z-index: 1; }
.sobre::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold-border), transparent);
}

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

.sobre__text .eyebrow { margin-bottom: 16px; }

.sobre__text h2 {
  font-size: clamp(32px, 4vw, 44px);
  font-weight: 900;
  margin-bottom: 24px;
  letter-spacing: -0.3px;
}

.sobre__text p {
  font-size: 16px;
  line-height: 1.8;
  margin-bottom: 14px;
}

.sobre__img {
  border-radius: var(--rxl);
  overflow: hidden;
  border: 1px solid var(--surf2);
}

.sobre__img img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.sobre__img:hover img { transform: scale(1.04); }

/* ── DEPOIMENTOS ── */
.depoimentos { background: var(--bg); position: relative; z-index: 1; }

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

/* Tablet 769–1100px: 2 colunas para melhor leitura */
@media (max-width: 1100px) and (min-width: 769px) {
  .depoimentos__grid { grid-template-columns: repeat(2, 1fr); }
}

.dep-card {
  background: var(--surf);
  border: 1px solid var(--surf2);
  border-radius: var(--rxl);
  padding: 40px 36px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  position: relative;
  overflow: hidden;
  transition: border-color var(--trans), transform var(--trans);
}

.dep-card::before {
  content: '\201C';
  position: absolute;
  top: 12px; right: 24px;
  font-family: 'Playfair Display', serif;
  font-size: 100px;
  color: var(--gold);
  opacity: 0.08;
  line-height: 1;
  pointer-events: none;
}

.dep-card:hover {
  border-color: var(--gold-border);
  transform: translateY(-4px);
}

.dep-card__stars {
  font-size: 16px;
  color: #f59e0b;
  letter-spacing: 2px;
}

.dep-card blockquote {
  font-size: 15px;
  color: rgba(240,240,240,0.75);
  line-height: 1.75;
  font-style: italic;
  flex: 1;
}

.dep-card__author {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-top: 20px;
  border-top: 1px solid var(--surf2);
  margin-top: auto;
}

.dep-card__avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, #8a6c33, var(--gold));
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Playfair Display', serif;
  font-size: 18px;
  font-weight: 700;
  color: var(--bg);
  flex-shrink: 0;
}

.dep-card__author strong {
  display: block;
  font-size: 14px;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 2px;
}

.dep-card__author span {
  font-size: 12px;
  color: var(--text2);
}

/* ── MAPA ── */
.mapa { background: var(--bg2); position: relative; z-index: 1; }

.mapa__wrap {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 32px;
  align-items: start;
}

.mapa__wrap iframe {
  border-radius: var(--rl);
  border: 1px solid var(--surf2);
  display: block;
  width: 100%;
}

.mapa__info {
  background: var(--surf);
  border: 1px solid var(--surf2);
  border-radius: var(--rl);
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.mapa__info-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 14px;
  color: var(--text2);
  line-height: 1.5;
}

.mapa__info-item svg { color: var(--gold); flex-shrink: 0; margin-top: 2px; }
.mapa__info-item a { color: var(--text2); }
.mapa__info-item a:hover { color: var(--gold); }

/* ── FAQ ── */
.faq { background: var(--bg); position: relative; z-index: 1; }

.faq__header { margin-bottom: 64px; }

.faq__big {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(80px, 15vw, 160px);
  line-height: 0.85;
  color: var(--text);
  letter-spacing: 4px;
  margin-bottom: 8px;
}

.faq__sub {
  font-size: 20px;
  font-weight: 600;
  color: var(--text);
  font-family: 'Playfair Display', serif;
}

.faq__list { border-top: 1px solid var(--surf2); }

.faq__item { border-bottom: 1px solid var(--surf2); }

.faq__q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 28px 0;
  font-size: 17px;
  font-weight: 500;
  color: var(--text);
  text-align: left;
  gap: 24px;
  transition: color var(--trans);
}

.faq__q:hover { color: var(--gold); }
.faq__q[aria-expanded="true"] { color: var(--gold); }

.faq__icon {
  flex-shrink: 0;
  transition: transform var(--trans);
  color: var(--gold);
}

.faq__q[aria-expanded="true"] .faq__icon { transform: rotate(45deg); }

.faq__a {
  overflow: hidden;
  max-height: 0;
  transition: max-height 0.45s cubic-bezier(0.4,0,0.2,1), padding 0.35s ease;
}

.faq__a.open { max-height: 300px; padding-bottom: 28px; }

.faq__a p {
  font-size: 15px;
  color: var(--text2);
  line-height: 1.8;
}

.faq__a p a { color: var(--gold); text-decoration: underline; }

/* ── CTA FINAL ── */
.cta-final {
  position: relative;
  padding: 140px 0;
  text-align: center;
  background: var(--bg2);
  overflow: hidden;
  z-index: 1;
}

.cta-final::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 70% 80% at 50% 50%, rgba(171,135,66,0.07) 0%, transparent 65%);
  pointer-events: none;
}

.cta-final::after {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold-border), transparent);
}

.cta-final__inner {
  position: relative;
  z-index: 1;
  max-width: 640px;
  margin: 0 auto;
  padding: 0 24px;
}

.cta-final__inner h2 {
  font-size: clamp(36px, 6vw, 60px);
  font-weight: 900;
  letter-spacing: -0.5px;
  margin-bottom: 20px;
}

.cta-final__inner p {
  font-size: 18px;
  margin-bottom: 48px;
}

/* ── FOOTER ── */
.footer {
  background: var(--bg2);
  border-top: 1px solid var(--surf2);
  padding-top: 80px;
  position: relative;
  z-index: 1;
}

.footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 48px;
  padding-bottom: 60px;
  border-bottom: 1px solid var(--surf2);
}

.footer__brand img { height: 36px; margin-bottom: 16px; }
.footer__brand p { font-size: 13px; color: var(--text2); line-height: 1.65; margin-bottom: 4px; }

.footer__social {
  display: flex;
  gap: 10px;
  margin-top: 20px;
}

.footer__social a {
  width: 40px; height: 40px;
  border-radius: 50%;
  border: 1px solid var(--surf2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text2);
  transition: all var(--trans);
}

.footer__social a:hover {
  border-color: var(--gold);
  color: var(--gold);
  background: var(--gold-dim);
}

.footer__col h4 {
  font-family: 'Playfair Display', serif;
  font-size: 15px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 20px;
}

.footer__col ul { display: flex; flex-direction: column; gap: 10px; }

.footer__col ul li,
.footer__col ul li a {
  font-size: 13px;
  color: var(--text2);
  line-height: 1.5;
  transition: color var(--trans);
}

.footer__col ul li a:hover { color: var(--gold); }

.footer__bottom {
  padding: 24px 0;
  text-align: center;
}

.footer__bottom p { font-size: 12px; color: var(--text3); }

/* ── WHATSAPP FLOAT ── */
.wa-float {
  position: fixed;
  bottom: 32px; right: 32px;
  z-index: 9999;
  width: 60px; height: 60px;
  background: var(--wa);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 30px rgba(37,211,102,0.4);
  transition: transform var(--trans), box-shadow var(--trans);
  animation: waPulse 2.5s ease-in-out infinite;
}

.wa-float:hover {
  transform: scale(1.1);
  box-shadow: 0 8px 48px rgba(37,211,102,0.6);
  animation: none;
}

@keyframes waPulse {
  0%,100% { box-shadow: 0 4px 30px rgba(37,211,102,0.4); }
  50%      { box-shadow: 0 4px 60px rgba(37,211,102,0.6); }
}

/* ── ANIMATE ON SCROLL ── */
.anim {
  opacity: 0;
  transform: translateY(28px);
  /* Easing premium: entrada rápida, saída suave */
  transition: opacity 0.65s ease, transform 0.65s cubic-bezier(0.22, 1, 0.36, 1);
}
.anim.in { opacity: 1; transform: none; }
.anim-delay-1 { transition-delay: 0.12s; }
.anim-delay-2 { transition-delay: 0.22s; }
.anim-delay-3 { transition-delay: 0.32s; }

/* ── RESPONSIVE — 1024px ── */
@media (max-width: 1024px) {
  .stats__grid       { grid-template-columns: repeat(2, 1fr); }
  .servicos__grid    { grid-template-columns: repeat(2, 1fr); }
  .sobre__grid       { grid-template-columns: 1fr; gap: 48px; }
  .depoimentos__grid { grid-template-columns: repeat(2, 1fr); }
  .mapa__wrap        { grid-template-columns: 1fr; }
  .footer__grid      { grid-template-columns: 1fr 1fr; gap: 36px; }
  .fullmenu__inner   { padding: 100px 48px 60px; }
  .fullmenu__contact { padding: 24px 48px; }
}

/* ── RESPONSIVE — 768px ── */
@media (max-width: 768px) {
  .section-pad  { padding: 80px 0; }
  .container    { padding: 0 20px; }

  .hero__title  { font-size: clamp(56px, 16vw, 96px); }
  .hero__ctas   { flex-direction: column; align-items: center; }
  .hero__ctas .btn { width: 100%; max-width: 320px; justify-content: center; }

  .stats__grid  { grid-template-columns: 1fr 1fr; }
  .stat:not(:last-child)::after { display: none; }
  .stat__num    { font-size: 52px; }
  .stat         { padding: 48px 16px; }

  .servicos__grid    { grid-template-columns: 1fr; gap: 2px; }
  .depoimentos__grid { grid-template-columns: 1fr; }
  .dep-card          { padding: 32px 28px; }

  .sobre__grid  { gap: 32px; }

  .faq__big     { font-size: clamp(60px, 18vw, 100px); }
  .faq__q       { font-size: 15px; }

  .fullmenu__inner   { flex-direction: column; padding: 100px 32px 40px; }
  .fullmenu__deco    { display: none; }
  .fullmenu__link    { font-size: clamp(32px, 9vw, 52px); }
  .fullmenu__contact { flex-direction: column; gap: 8px; padding: 20px 32px; }

  /* Footer: 2 colunas em mobile médio, brand ocupa linha inteira */
  .footer__grid  { grid-template-columns: 1fr 1fr; gap: 28px; }
  .footer__brand { grid-column: 1 / -1; }

  .wa-float { bottom: 20px; right: 20px; width: 52px; height: 52px; }
}

/* ── RESPONSIVE — 560px ── */
@media (max-width: 560px) {
  .container   { padding: 0 16px; }
  .section-pad { padding: 64px 0; }

  .hero__title   { font-size: clamp(44px, 14vw, 68px); letter-spacing: 2px; }
  .hero__sub     { font-size: 16px; }
  .hero__eyebrow { font-size: 10px; padding: 6px 14px; }

  .stat          { padding: 36px 12px; }
  .stat__num     { font-size: 44px; }

  .section-header    { margin-bottom: 48px; }
  .section-header h2 { font-size: clamp(28px, 8vw, 40px); }

  .servico-card__body    { padding: 22px 20px 26px; }
  .servico-card__body h3 { font-size: 18px; }

  .dep-card { padding: 28px 22px; }

  .faq__big { font-size: clamp(52px, 18vw, 80px); }
  .faq__q   { font-size: 14px; padding: 22px 0; }

  .cta-final           { padding: 80px 0; }
  .cta-final__inner h2 { font-size: clamp(28px, 8vw, 40px); }
  .cta-final__inner p  { font-size: 15px; margin-bottom: 32px; }

  .footer__grid  { grid-template-columns: 1fr; gap: 32px; }
  .footer__brand { grid-column: auto; }

  .btn     { padding: 14px 28px; }
  .btn--lg { padding: 16px 36px; font-size: 15px; }

  .fullmenu__link    { font-size: clamp(28px, 10vw, 44px); }
  .fullmenu__inner   { padding: 90px 24px 32px; gap: 24px; }
  .fullmenu__contact { padding: 16px 24px; gap: 6px; }
  .fullmenu__contact a, .fullmenu__contact span { font-size: 13px; }
}

/* ── RESPONSIVE — 480px ── */
@media (max-width: 480px) {
  .stats__grid { grid-template-columns: 1fr 1fr; }
  .hero__title { font-size: 44px; letter-spacing: 2px; }
}


/* ── SEO FAQ (páginas de serviço) ── */
.seo-faq { background: var(--bg2); padding: 120px 0; position: relative; }
.seo-faq::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 1px; background: linear-gradient(90deg, transparent, var(--gold-border), transparent); }
.seo-faq__wrap { max-width: 920px; margin: 64px auto 0; }
.seo-faq__item { border-bottom: 1px solid var(--surf2); padding: 26px 0; }
.seo-faq__item:first-child { border-top: 1px solid var(--surf2); }
.seo-faq__item h3 { font-family: 'Playfair Display', serif; font-size: 20px; font-weight: 700; margin: 0 0 10px; color: var(--text); }
.seo-faq__item p { font-size: 15px; line-height: 1.75; color: var(--text2); margin: 0; }
@media (max-width: 768px) { .seo-faq { padding: 80px 0; } .seo-faq__wrap { margin-top: 40px; } .seo-faq__item h3 { font-size: 18px; } }


/* ─────────────────────────────────────────────
   REFINAMENTOS VISUAIS — PROCESSO DETAIL v3.2
   Cards · Page-hero · Scroll-hint · Menu · Footer
───────────────────────────────────────────── */

/* ── Footer brand logo: ícone padronizado ── */
.footer__brand img {
  width: 160px;         /* Aumentado para maior presença visual */
  height: auto;
  opacity: 0.85;        /* Levemente mais opaco e brilhante */
  margin-bottom: 16px;
  display: block;
  /* max-height e object-fit removidos para o ícone não parecer 'encaixotado' com bordas invisíveis */
}

/* ── Hero scroll-hint: posicionamento discreto, fora da área dos CTAs ── */
.hero__scroll-hint {
  position: absolute;
  bottom: 40px;
  left: 40px;           /* Lateralizado à esquerda: longe dos CTAs centrais e do WA na direita */
  z-index: 15;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(8,8,8,0.50);
  border: 1px solid rgba(255,255,255,0.12);
  backdrop-filter: blur(8px);
  white-space: nowrap;
}
.hero__scroll-hint span { color: rgba(255,255,255,0.65); }
.hero__scroll-line { height: 28px; }

/* ── Card "ver todos os serviços" ── */
.servico-card--all {
  min-height: 100%;
  justify-content: center;
  background: radial-gradient(circle at 50% 0%, rgba(171,135,66,0.13), rgba(20,20,20,1) 62%);
}
.servico-card--all:hover {
  background: radial-gradient(circle at 50% 0%, rgba(171,135,66,0.22), rgba(28,28,28,1) 62%);
}
.servico-card__body--all {
  align-items: flex-start;
  justify-content: center;
  min-height: 100%;
  padding: 44px 38px;
}
.servico-card__body--all .btn { margin-top: 14px; }

/* ── Fullmenu: logo some quando menu abre (requer body.menu-open via JS) ── */
body.menu-open .navbar__logo {
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease;
}

/* ── Fullmenu: ícone da marca no lugar do SVG genérico ── */
.fullmenu__deco svg { display: none; }
.fullmenu__deco::before {
  content: '';
  display: block;
  width: min(58vw, 640px);
  aspect-ratio: 1/1;
  background: url('../images/processo-detail-icon-footer.png') center/contain no-repeat;
  opacity: 0.12;
  filter: grayscale(1) brightness(1.3);
}
.fullmenu__bg {
  background: linear-gradient(135deg, rgba(171,135,66,0.96), rgba(126,96,37,0.98));
}

/* ── Page-hero (ppf, vitrificacao, etc.): overlay controlado ── */
.page-hero::before,
.ph::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    linear-gradient(180deg, rgba(0,0,0,0.72) 0%, rgba(0,0,0,0.38) 30%, rgba(0,0,0,0.20) 50%, rgba(0,0,0,0.88) 100%),
    linear-gradient(90deg, rgba(0,0,0,0.55) 0%, rgba(0,0,0,0.22) 60%, rgba(0,0,0,0.10) 100%);
}
.page-hero__overlay {
  background: linear-gradient(180deg, rgba(8,8,8,0.38) 0%, rgba(8,8,8,0.14) 35%, rgba(8,8,8,0.72) 70%, rgba(8,8,8,0.97) 100%);
}
.page-hero__content {
  z-index: 3;
  padding-top: 160px;   /* área segura abaixo do navbar fixo */
  padding-bottom: 96px;
}

/* ── .ph__c: padrão de hero interno (servicos, depoimentos, contato, sobre) ── */
/* padding-top define a "área segura" — evita sobrepor o navbar fixo           */
.ph__c {
  z-index: 3;
  padding-top: 148px;   /* área segura: navbar (~80px) + respiro visual */
  padding-bottom: 64px;
  width: 100%;
  position: relative;
}

/* Neutraliza margin-top:80px que alguns <style> inline colocam no .ph__tag    */
/* Isso garante que o espaçamento correto venha do padding-top do .ph__c        */
.ph__tag {
  margin-top: 0 !important;
  color: var(--gold);
  text-shadow: 0 2px 12px rgba(0,0,0,0.72);
}

/* Breadcrumb padronizado */
.page-hero__breadcrumb,
.ph__breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 20px;
  font-size: 12px;
  letter-spacing: 0.5px;
  color: rgba(255,255,255,0.60);
  text-shadow: 0 2px 10px rgba(0,0,0,0.6);
}
.page-hero__breadcrumb a,
.ph__breadcrumb a { color: rgba(255,255,255,0.60); }
.page-hero__breadcrumb a:hover,
.ph__breadcrumb a:hover { color: var(--gold); }

/* Titles e subtítulos das páginas internas */
.page-hero__tag { margin-top: 0; color: var(--gold); text-shadow: 0 2px 12px rgba(0,0,0,0.72); }
.page-hero__title,
.ph__h1 { text-shadow: 0 4px 24px rgba(0,0,0,0.60); }
.page-hero__sub,
.ph__sub { color: rgba(245,245,245,0.78); text-shadow: 0 2px 16px rgba(0,0,0,0.65); }

/* ── Contato info cards ── */
.ct-info .cc { gap: 14px; }
.ct-info .cc-card { min-height: 86px; }

/* ═══════════════════════════════════════════════
   RESPONSIVOS ESPECÍFICOS
═══════════════════════════════════════════════ */

@media (max-width: 768px) {
  /* Navbar logo mobile */
  .navbar__logo img { height: 50px; }

  /* Hero scroll-hint: oculto em mobile — evita conflito com CTAs */
  .hero__scroll-hint { display: none; }

  /* Heroes internos */
  .page-hero__content { padding-top: 130px; padding-bottom: 64px; }
  .ph__c { padding-top: 128px; padding-bottom: 52px; }

  /* Fullmenu deco */
  .fullmenu__deco::before { width: min(72vw, 520px); }

  /* Card ver todos */
  .servico-card__body--all { padding: 36px 28px; }
}

@media (max-width: 560px) {
  /* Heroes internos em telas pequenas */
  .page-hero__content { padding-top: 112px; padding-bottom: 48px; }
  .ph__c { padding-top: 112px; padding-bottom: 40px; }
}
