/*
Theme Name:  trofeo v3
Theme URI:   https://trofeo.com.br
Author:      Luis Teixeira
Description: Site oficial da trofeo — Gestao de Veiculos-Premio para Shopping Centers. Design system: Playfair Display + DM Sans, paleta deep purple e gold.
Version:     3.0.0
License:     Proprietary
Text Domain: trofeo-v3
*/

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

:root {
  --deep:    #0d0818;
  --deep-2:  #1a0f2e;
  --gold:    #c8a96e;
  --gold-lt: #dfc28e;
  --cream:   #f5f2ec;
  --cream-dk:#ede9e0;
  --white:   #ffffff;
  --muted:   #6b5a80;
  --serif: 'Playfair Display', Georgia, serif;
  --sans:  'DM Sans', system-ui, sans-serif;
  --ease: cubic-bezier(0.16, 1, 0.3, 1);
  --max: 1160px;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--sans);
  background: var(--deep);
  color: var(--white);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

.skip-link {
  position: fixed; top: -100%; left: 1rem; z-index: 9999;
  background: var(--gold); color: var(--deep);
  font-size: .85rem; font-weight: 500; padding: .6rem 1.2rem;
  border-radius: 2px; text-decoration: none; transition: top .2s;
}
.skip-link:focus { top: 1rem; }

:focus-visible { outline: 2px solid var(--gold); outline-offset: 3px; }
:focus:not(:focus-visible) { outline: none; }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: .01ms !important;
    transition-duration: .01ms !important;
  }
  html { scroll-behavior: auto; }
}

/* ── Utils ── */
.wrap { max-width: var(--max); margin: 0 auto; padding: 0 2rem; }

.label {
  display: inline-flex; align-items: center; gap: .7rem;
  font-size: .68rem; font-weight: 500; letter-spacing: .22em;
  text-transform: uppercase; color: var(--gold); margin-bottom: 1.2rem;
}
.label::before {
  content: ''; display: block; width: 28px; height: 1px;
  background: var(--gold); flex-shrink: 0;
}
.label.dark { color: var(--muted); }
.label.dark::before { background: var(--muted); }

/* Reveal */
.r {
  opacity: 0; transform: translateY(28px);
  transition: opacity .75s var(--ease), transform .75s var(--ease);
}
.r.on { opacity: 1; transform: none; }
.r.d1 { transition-delay: .1s; }
.r.d2 { transition-delay: .2s; }
.r.d3 { transition-delay: .3s; }
.r.d4 { transition-delay: .4s; }
.r.d5 { transition-delay: .5s; }

/* ── NAV ── */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 200;
  padding: 1.4rem 0;
  transition: background .4s ease, padding .4s ease, backdrop-filter .4s ease;
}
nav.s {
  background: rgba(13,8,24,.93);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  padding: .9rem 0;
  border-bottom: 1px solid rgba(200,169,110,.08);
}
.nav-inner {
  display: flex; align-items: center; justify-content: space-between;
}
.logo {
  font-family: var(--serif); font-style: normal; font-weight: 400;
  font-size: 1.55rem; letter-spacing: .06em; color: var(--white);
  text-decoration: none; transition: opacity .2s;
}
.logo .dot { color: var(--gold); }
.logo:hover { opacity: .8; }

.nav-links {
  display: flex; align-items: center; gap: 2.4rem; list-style: none;
}
.nav-links a {
  font-size: .78rem; font-weight: 400; letter-spacing: .09em;
  text-transform: uppercase; color: rgba(255,255,255,.65);
  text-decoration: none; transition: color .2s;
}
.nav-links a:hover { color: var(--gold-lt); }

.nav-wa {
  display: inline-flex; align-items: center; gap: .45rem;
  font-size: .75rem; font-weight: 500; letter-spacing: .09em;
  text-transform: uppercase; color: var(--deep);
  background: var(--gold); padding: .55rem 1.25rem;
  border-radius: 2px; text-decoration: none;
  transition: background .2s, transform .2s;
}
.nav-wa svg { width: 14px; height: 14px; fill: var(--deep); }
.nav-wa:hover { background: var(--gold-lt); transform: translateY(-1px); }

.hamburger {
  display: none; flex-direction: column; gap: 5px; cursor: pointer;
  padding: 4px; background: none; border: none;
  position: relative; z-index: 201;
}
.hamburger span {
  display: block; width: 24px; height: 1.5px; background: var(--white);
  transition: transform .3s, opacity .3s;
}
.hamburger.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

.mobile-menu {
  display: none; position: fixed; inset: 0; z-index: 199;
  background: var(--deep-2); flex-direction: column;
  align-items: center; justify-content: center; gap: 2.5rem;
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  font-family: var(--serif); font-size: 2rem; font-weight: 400;
  color: var(--white); text-decoration: none; transition: color .2s;
}
.mobile-menu a:hover { color: var(--gold); }
.mobile-menu .m-wa {
  font-family: var(--sans); font-size: .85rem; font-weight: 500;
  letter-spacing: .1em; text-transform: uppercase;
  color: var(--deep); background: var(--gold);
  padding: .85rem 2rem; border-radius: 2px; margin-top: .5rem;
}

/* ── HERO ── */
#hero {
  min-height: 100vh; background: var(--deep);
  display: flex; align-items: center;
  position: relative; overflow: hidden;
}

#hero-video {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; opacity: .15; z-index: 0; pointer-events: none;
}

.hero-overlay {
  position: absolute; inset: 0; z-index: 1; pointer-events: none;
  background: linear-gradient(
    135deg,
    rgba(13,8,24,.8) 0%,
    rgba(13,8,24,.4) 50%,
    rgba(13,8,24,.7) 100%
  );
}

.hero-grain {
  position: absolute; inset: 0; z-index: 2; pointer-events: none;
  opacity: .04;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
  background-size: 200px 200px;
}

.hero-lines {
  position: absolute; inset: 0; z-index: 1; pointer-events: none;
  background-image:
    linear-gradient(rgba(200,169,110,.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(200,169,110,.035) 1px, transparent 1px);
  background-size: 80px 80px;
  mask-image: radial-gradient(ellipse at 40% 60%, black 20%, transparent 70%);
  -webkit-mask-image: radial-gradient(ellipse at 40% 60%, black 20%, transparent 70%);
}

.hero-inner {
  position: relative; z-index: 3; width: 100%;
  padding: 10rem 0 5rem;
}

.hero-eyebrow {
  display: inline-flex; align-items: center; gap: .7rem;
  font-size: .68rem; font-weight: 500; letter-spacing: .28em;
  text-transform: uppercase; color: var(--gold); margin-bottom: 2rem;
  opacity: 0; animation: fadeUp .7s var(--ease) .3s forwards;
}
.hero-eyebrow::before {
  content: ''; display: block; width: 32px; height: 1px; background: var(--gold);
}

.hero-h1 {
  font-family: var(--serif); font-weight: 600;
  font-size: clamp(3rem, 7.5vw, 6rem);
  line-height: 1.04; color: var(--white); margin-bottom: 1.6rem;
  opacity: 0; animation: fadeUp .8s var(--ease) .5s forwards;
}
.hero-h1 em {
  display: block; font-style: italic; font-weight: 400;
  color: var(--gold-lt); font-size: .88em;
  min-height: 1.12em;
}
#hero > .wrap { width: 100%; }

.hero-sub {
  font-size: clamp(.95rem, 2vw, 1.1rem); font-weight: 300;
  line-height: 1.75; color: rgba(255,255,255,.72);
  max-width: 500px; margin-bottom: 3rem;
  opacity: 0; animation: fadeUp .8s var(--ease) .7s forwards;
}

.hero-actions {
  display: flex; align-items: center; gap: 1.6rem; flex-wrap: wrap;
  opacity: 0; animation: fadeUp .8s var(--ease) .9s forwards;
}

.btn-gold {
  display: inline-flex; align-items: center; gap: .5rem;
  background: var(--gold); color: var(--deep);
  font-family: var(--sans); font-size: .82rem; font-weight: 500;
  letter-spacing: .1em; text-transform: uppercase; text-decoration: none;
  padding: 1rem 2.1rem; border-radius: 2px;
  transition: background .2s, transform .2s, box-shadow .2s;
}
.btn-gold svg { width: 15px; height: 15px; fill: var(--deep); transition: transform .2s; }
.btn-gold:hover { background: var(--gold-lt); transform: translateY(-2px); box-shadow: 0 8px 28px rgba(200,169,110,.3); }
.btn-gold:hover svg { transform: translateX(3px); }

.btn-ghost {
  font-size: .82rem; font-weight: 400; letter-spacing: .06em;
  color: rgba(255,255,255,.7); text-decoration: none;
  border-bottom: 1px solid rgba(255,255,255,.3); padding-bottom: 2px;
  transition: color .2s, border-color .2s;
}
.btn-ghost:hover { color: var(--white); border-color: rgba(255,255,255,.55); }

.hero-stats {
  display: flex; gap: 0; margin-top: 5rem;
  border-top: 1px solid rgba(200,169,110,.12);
  opacity: 0; animation: fadeUp .8s var(--ease) 1.1s forwards;
}
.hero-stat {
  flex: 1; padding: 1.6rem 0 0; padding-right: 2rem;
  border-right: 1px solid rgba(200,169,110,.08);
}
.hero-stat:last-child { border-right: none; }
.hero-stat-num {
  font-family: var(--serif); font-size: 2.2rem; font-weight: 600;
  color: var(--gold); line-height: 1; margin-bottom: .35rem;
}
.hero-stat-label {
  font-size: .72rem; font-weight: 300; letter-spacing: .06em;
  color: rgba(255,255,255,.38); line-height: 1.4;
}

.tw-cursor {
  font-style: normal;
  color: var(--gold);
  font-weight: 300;
  animation: twBlink .75s step-end infinite;
}
@keyframes twBlink {
  0%, 100% { opacity: 1; }
  50%       { opacity: 0; }
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(22px); }
  to   { opacity: 1; transform: none; }
}

/* ── SECTION SHARED ── */
section { padding: 8rem 0; }

.s-title {
  font-family: var(--serif); font-weight: 600;
  font-size: clamp(1.9rem, 4vw, 2.9rem);
  line-height: 1.15; margin-bottom: 1.4rem;
}
.s-title.light { color: var(--white); }
.s-title.dark-txt { color: var(--deep); }

/* ── CREDENCIAL ── */
#credencial { background: var(--cream); }

.cred-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 6rem; align-items: start;
}
.cred-text .s-title { margin-bottom: 1.6rem; }
.cred-body {
  font-size: 1rem; font-weight: 300; line-height: 1.85;
  color: #3d3050; margin-bottom: 2.4rem;
}

.cred-highlight {
  font-family: var(--serif); font-size: 1.15rem; font-weight: 600;
  color: var(--deep); border-left: 3px solid var(--gold);
  padding-left: 1rem; margin-bottom: 2.4rem; line-height: 1.4;
}

.brand-tags { display: flex; flex-wrap: wrap; gap: .5rem; margin-top: .5rem; }
.brand-tag {
  font-size: .72rem; font-weight: 500; letter-spacing: .1em;
  text-transform: uppercase; color: var(--muted);
  border: 1px solid rgba(107,90,128,.25); padding: .3rem .75rem;
  border-radius: 2px; background: rgba(107,90,128,.04);
}

.cred-stats { display: flex; flex-direction: column; gap: 1.5rem; }
.cred-stat-card {
  background: var(--white); border: 1px solid rgba(107,90,128,.1);
  border-radius: 3px; padding: 1.8rem 2rem;
  position: relative; overflow: hidden;
  transition: border-color .3s, box-shadow .3s, transform .3s;
}
.cred-stat-card::before {
  content: ''; position: absolute; top: 0; left: 0;
  width: 3px; height: 0;
  background: var(--gold);
  transition: height .4s var(--ease);
}
.cred-stat-card:hover {
  border-color: rgba(200,169,110,.3);
  box-shadow: 0 6px 28px rgba(107,90,128,.08);
  transform: translateX(4px);
}
.cred-stat-card:hover::before { height: 100%; }
.cred-stat-num {
  font-family: var(--serif); font-size: 2.6rem; font-weight: 600;
  color: var(--deep); line-height: 1; margin-bottom: .4rem;
}
.cred-stat-num sup { font-size: 1rem; vertical-align: super; color: var(--gold); }
.cred-stat-desc {
  font-size: .82rem; font-weight: 300; color: var(--muted); line-height: 1.55;
}

/* ── PROBLEMA ── */
#problema { background: var(--deep); position: relative; overflow: hidden; }
#problema::before {
  content: ''; position: absolute; inset: 0; pointer-events: none;
  background-image:
    linear-gradient(rgba(200,169,110,.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(200,169,110,.025) 1px, transparent 1px);
  background-size: 80px 80px;
}

.prob-header { max-width: 600px; margin-bottom: 1.2rem; }
.prob-intro {
  font-size: 1rem; font-weight: 300; color: rgba(255,255,255,.48);
  line-height: 1.8; max-width: 600px; margin-bottom: 4rem;
}

.risk-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 1px; background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.05);
  border-radius: 4px; overflow: hidden;
  margin-bottom: 4rem;
}
.risk-card {
  background: rgba(10,6,20,.6); padding: 2rem 1.8rem;
  display: flex; flex-direction: column; gap: .8rem;
  position: relative; transition: background .3s;
}
.risk-card:hover { background: rgba(26,15,46,.75); }
.risk-card::after {
  content: ''; position: absolute; top: 0; left: 0;
  width: 0; height: 2px; background: var(--gold);
  transition: width .4s var(--ease);
}
.risk-card:hover::after { width: 100%; }
.risk-num {
  font-family: var(--serif); font-size: 1.8rem; font-weight: 400;
  color: rgba(200,169,110,.15); line-height: 1; transition: color .3s;
}
.risk-card:hover .risk-num { color: rgba(200,169,110,.4); }
.risk-title {
  font-family: var(--serif); font-size: 1.05rem; font-weight: 600;
  color: var(--white); line-height: 1.3;
}
.risk-desc {
  font-size: .82rem; font-weight: 300; color: rgba(255,255,255,.42);
  line-height: 1.75;
}
.prob-closing {
  font-size: 1rem; font-weight: 300; color: rgba(255,255,255,.55);
  line-height: 1.8; max-width: 640px;
  border-left: 2px solid rgba(200,169,110,.4); padding-left: 1.5rem;
}

/* ── OPERAÇÃO ── */
#operacao { background: var(--cream); }
.op-header { max-width: 600px; margin-bottom: .8rem; }
.op-sub {
  font-size: 1rem; font-weight: 300; color: #5a4c6e;
  line-height: 1.75; margin-bottom: 5rem; max-width: 520px;
}

/* ── TIMELINE VERTICAL ── */
.steps { position: relative; display: flex; flex-direction: column; gap: 0; }
.steps::before {
  content: ''; position: absolute; left: 50%; top: 0; bottom: 0; width: 1px;
  background: linear-gradient(to bottom,
    transparent 0%, rgba(107,90,128,.2) 8%,
    rgba(200,169,110,.25) 50%, rgba(107,90,128,.2) 92%, transparent 100%);
  transform: translateX(-50%);
}
.step {
  display: grid; grid-template-columns: 1fr 3.5rem 1fr;
  align-items: start; gap: 0; position: relative;
}
.step-card {
  background: var(--white); border: 1px solid rgba(107,90,128,.1);
  border-radius: 8px; padding: 1.8rem 2rem; position: relative;
  transition: box-shadow .3s, border-color .3s;
}
.step:hover .step-card {
  box-shadow: 0 6px 28px rgba(29,14,56,.08);
  border-color: rgba(200,169,110,.35);
}
.step-card::after {
  content: ''; position: absolute; top: 1.8rem; border: 8px solid transparent;
}
.step:nth-child(odd)  .step-card::after { right: -16px; border-left-color: rgba(107,90,128,.15); }
.step:nth-child(odd)  .step-card:hover::after { border-left-color: rgba(200,169,110,.35); }
.step:nth-child(even) .step-card::after { left: -16px; border-right-color: rgba(107,90,128,.15); }
.step:nth-child(even) .step-card:hover::after { border-right-color: rgba(200,169,110,.35); }
.step-left  { grid-column: 1; padding-right: 1.5rem; }
.step-right { grid-column: 3; padding-left: 1.5rem; }
.step:nth-child(odd)  .step-card  { grid-column: 1; }
.step:nth-child(odd)  .step-empty { grid-column: 3; }
.step:nth-child(even) .step-empty { grid-column: 1; }
.step:nth-child(even) .step-card  { grid-column: 3; }
.step-dot {
  grid-column: 2; display: flex; flex-direction: column;
  align-items: center; padding-top: 1.5rem;
}
.step-num {
  width: 3rem; height: 3rem; border-radius: 50%;
  background: var(--white); border: 1.5px solid rgba(107,90,128,.2);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--serif); font-size: .9rem; font-weight: 600;
  color: var(--muted); flex-shrink: 0; z-index: 1;
  transition: background .3s, border-color .3s, color .3s;
}
.step:hover .step-num { background: var(--deep); border-color: var(--gold); color: var(--gold); }
.step-empty { min-height: 5rem; }
.step-title {
  font-family: var(--serif); font-size: 1.05rem; font-weight: 600;
  color: var(--deep); margin-bottom: .6rem; line-height: 1.25;
}
.step-desc { font-size: .85rem; font-weight: 300; color: #5a4c6e; line-height: 1.8; margin: 0; }

@media (max-width: 680px) {
  .steps::before { left: 1.25rem; transform: none; }
  .step { grid-template-columns: 2.5rem 1fr; grid-template-rows: auto; }
  .step-dot { grid-column: 1; grid-row: 1; padding-top: 1.6rem; }
  .step-num { width: 2.4rem; height: 2.4rem; font-size: .8rem; }
  .step-card,
  .step:nth-child(odd)  .step-card,
  .step:nth-child(even) .step-card { grid-column: 2; grid-row: 1; padding: 1.4rem 1.2rem; }
  .step-empty,
  .step:nth-child(odd)  .step-empty,
  .step:nth-child(even) .step-empty { display: none; }
  .step-card::after { display: none; }
}

/* ── PORTFOLIO / CARROSSEL ── */
#portfolio { background: var(--deep); padding: 8rem 0 5rem; }
.portfolio-header { margin-bottom: 3.5rem; }

.carousel-outer {
  display: flex;
  align-items: center;
}

.carousel-track-wrap {
  overflow: hidden;
  flex: 1;
  padding: 0 2rem;
}

.carousel-track {
  display: flex;
  gap: 1.5rem;
  transition: transform .55s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: transform;
}

.car-slide {
  flex: 0 0 calc(33.333% - 1rem);
  position: relative;
  border-radius: 4px;
  overflow: hidden;
  aspect-ratio: 4 / 3;
  background: var(--deep-2);
}

.car-slide img {
  width: 100%; height: 100%;
  object-fit: cover; display: block;
  transition: transform .5s var(--ease), filter .5s var(--ease);
  filter: grayscale(10%) brightness(.88);
}
.car-slide:hover img {
  transform: scale(1.04);
  filter: grayscale(0%) brightness(1);
}

.car-caption {
  position: absolute; bottom: 0; left: 0; right: 0;
  background: linear-gradient(transparent, rgba(13,8,24,.88));
  padding: 2.5rem 1.4rem 1.2rem;
  display: flex; flex-direction: column; gap: .2rem;
  transform: translateY(4px);
  transition: transform .3s var(--ease);
}
.car-slide:hover .car-caption { transform: none; }

.car-model {
  font-family: var(--serif); font-size: .95rem; font-weight: 600;
  color: var(--white); line-height: 1.2;
}
.car-detail {
  font-size: .68rem; font-weight: 400; letter-spacing: .1em;
  text-transform: uppercase; color: var(--gold);
}

.car-btn {
  flex-shrink: 0;
  width: 3rem; height: 3rem; border-radius: 50%;
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(200,169,110,.15);
  color: rgba(255,255,255,.6);
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: background .2s, border-color .2s, color .2s, transform .2s;
  margin: 0 1.5rem;
}
.car-btn svg { width: 18px; height: 18px; }
.car-btn:hover:not(:disabled) {
  background: rgba(200,169,110,.1);
  border-color: rgba(200,169,110,.4);
  color: var(--gold);
  transform: scale(1.06);
}
.car-btn:disabled { opacity: .25; cursor: default; }

.car-dots {
  display: flex; justify-content: center; gap: 0;
  margin-top: 2.5rem; padding-bottom: 1rem;
}
.car-dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: rgba(200,169,110,.2);
  border: none; cursor: pointer;
  padding: 8px; box-sizing: content-box;
  background-clip: content-box;
  transition: background .3s, transform .3s;
}
.car-dot.active { background: var(--gold); background-clip: content-box; transform: scale(1.4); }

@media (max-width: 900px) {
  .car-slide { flex: 0 0 calc(50% - .75rem); }
  .car-btn   { margin: 0 .75rem; }
}

@media (max-width: 600px) {
  #portfolio { padding: 4rem 0 3rem; }
  .car-btn   { display: none; }
  .carousel-track-wrap { overflow-x: auto; scroll-snap-type: x mandatory; -webkit-overflow-scrolling: touch; padding: 0 1.25rem; }
  .carousel-track { transition: none; }
  .car-slide { flex: 0 0 82%; scroll-snap-align: start; }
}

/* ── EXPERTISE ── */
#expertise { background: var(--deep); position: relative; overflow: hidden; }
#expertise::before {
  content: ''; position: absolute; inset: 0; pointer-events: none;
  background: radial-gradient(ellipse at 70% 50%, rgba(107,90,128,.12) 0%, transparent 65%);
}
.exp-inner {
  position: relative; z-index: 1;
  display: grid; grid-template-columns: 1fr 1fr; gap: 7rem; align-items: center;
}
.exp-text .s-title { margin-bottom: 2rem; }
.exp-body { font-size: 1rem; font-weight: 300; line-height: 1.9; color: rgba(255,255,255,.55); }
.exp-body p { margin-bottom: 1.1rem; }
.exp-body p:last-child { margin-bottom: 0; }

.pullquote {
  background: rgba(255,255,255,.03); border: 1px solid rgba(200,169,110,.15);
  border-radius: 4px; padding: 2.6rem; position: relative;
}
.pullquote::before {
  content: '\201C'; font-family: var(--serif); font-size: 6rem; line-height: .7;
  color: rgba(200,169,110,.18); position: absolute; top: 1rem; left: 1.8rem;
  pointer-events: none;
}
.pullquote blockquote {
  font-family: var(--serif); font-style: italic; font-size: 1.25rem;
  font-weight: 400; color: rgba(255,255,255,.82); line-height: 1.65;
  margin-bottom: 1.6rem; padding-top: 1.5rem;
}
.pullquote cite {
  font-style: normal; font-size: .78rem; font-weight: 500;
  letter-spacing: .08em; text-transform: uppercase; color: var(--gold); display: block;
}
.pullquote cite span {
  display: block; font-size: .72rem; font-weight: 300;
  color: rgba(255,255,255,.35); letter-spacing: .06em;
  text-transform: none; margin-top: .25rem;
}

/* ── CONCESSIONÁRIAS ── */
#concessionarias { background: var(--cream-dk); padding: 5rem 0; }
.conc-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center; }
.conc-text .s-title { margin-bottom: 1.2rem; }
.conc-body { font-size: .95rem; font-weight: 300; color: #5a4c6e; line-height: 1.8; margin-bottom: 2rem; }

.btn-outline {
  display: inline-flex; align-items: center; gap: .5rem;
  font-size: .78rem; font-weight: 500; letter-spacing: .1em;
  text-transform: uppercase; color: var(--deep);
  border: 1.5px solid rgba(13,8,24,.3); padding: .8rem 1.6rem;
  border-radius: 2px; text-decoration: none;
  transition: border-color .2s, background .2s, color .2s;
}
.btn-outline:hover { border-color: var(--deep); background: var(--deep); color: var(--white); }

.conc-visual {
  background: var(--deep); border-radius: 4px; padding: 2.5rem;
  border: 1px solid rgba(200,169,110,.1);
}
.conc-visual p { font-size: .85rem; font-weight: 300; color: rgba(255,255,255,.45); line-height: 1.75; }
.conc-tags { display: flex; flex-wrap: wrap; gap: .5rem; margin-top: 1.5rem; }
.conc-tag {
  font-size: .7rem; font-weight: 400; letter-spacing: .08em;
  color: rgba(200,169,110,.7); border: 1px solid rgba(200,169,110,.2);
  padding: .28rem .7rem; border-radius: 2px;
}

/* ── CONTATO ── */
#contato { background: var(--deep); position: relative; overflow: hidden; }
#contato::before {
  content: ''; position: absolute; bottom: -200px; right: -200px;
  width: 600px; height: 600px; border-radius: 50%;
  background: radial-gradient(circle, rgba(200,169,110,.06) 0%, transparent 70%);
  pointer-events: none;
}
.contato-inner {
  position: relative; z-index: 1;
  display: grid; grid-template-columns: 1fr 1.2fr; gap: 6rem; align-items: start;
}
.contato-info .s-title { margin-bottom: 1.2rem; }
.contato-sub { font-size: 1rem; font-weight: 300; color: rgba(255,255,255,.5); line-height: 1.8; margin-bottom: 3rem; }
.contact-items { display: flex; flex-direction: column; gap: 1.2rem; }
.contact-item { display: flex; align-items: center; gap: 1rem; }
.contact-icon {
  width: 2.6rem; height: 2.6rem; border-radius: 50%;
  background: rgba(200,169,110,.08); border: 1px solid rgba(200,169,110,.15);
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.contact-icon svg { width: 15px; height: 15px; color: var(--gold); }
.contact-lbl {
  font-size: .7rem; font-weight: 500; letter-spacing: .1em;
  text-transform: uppercase; color: var(--muted); display: block; margin-bottom: .15rem;
}
.contact-val { font-size: .92rem; font-weight: 300; color: rgba(255,255,255,.8); text-decoration: none; }
.contact-val:hover { color: var(--gold-lt); }

.form-card {
  background: rgba(255,255,255,.03); border: 1px solid rgba(200,169,110,.1);
  border-radius: 4px; padding: 2.8rem;
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-group { margin-bottom: 1.4rem; }
.form-group label {
  display: block; font-size: .68rem; font-weight: 500;
  letter-spacing: .12em; text-transform: uppercase;
  color: rgba(255,255,255,.35); margin-bottom: .5rem;
}
.form-group input,
.form-group textarea,
.form-group select {
  width: 100%; background: rgba(255,255,255,.04);
  border: 1px solid rgba(200,169,110,.12);
  border-radius: 2px; padding: .85rem 1rem;
  font-family: var(--sans); font-size: .88rem; font-weight: 300;
  color: rgba(255,255,255,.85); outline: none;
  transition: border-color .2s, background .2s;
  -webkit-appearance: none; appearance: none;
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: rgba(255,255,255,.2); }
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus { border-color: rgba(200,169,110,.4); background: rgba(255,255,255,.06); }
.form-group select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23c8a96e' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 1rem center;
  background-size: 12px; padding-right: 2.5rem;
}
.form-group select option { background: var(--deep-2); }
.form-group textarea { resize: vertical; min-height: 110px; }
.form-note { font-size: .72rem; font-weight: 300; color: rgba(255,255,255,.28); line-height: 1.6; margin-top: 1rem; }
.form-note a { color: var(--gold); text-decoration: none; }
.field-err { display: block; font-size: .72rem; color: #e07070; margin-top: .3rem; min-height: 1em; }
.form-group input.invalid,
.form-group textarea.invalid { border-color: #e07070; }
.btn-submit {
  width: 100%; background: var(--gold); color: var(--deep);
  border: none; border-radius: 2px; padding: 1rem;
  font-family: var(--sans); font-size: .82rem; font-weight: 500;
  letter-spacing: .1em; text-transform: uppercase; cursor: pointer;
  transition: background .2s, transform .2s;
  display: flex; align-items: center; justify-content: center; gap: .5rem;
}
.btn-submit svg { width: 15px; height: 15px; fill: var(--deep); }
.btn-submit:hover { background: var(--gold-lt); transform: translateY(-1px); }

/* ── CTA BANNER ── */
#cta-banner {
  background: var(--deep-2); text-align: center;
  padding: 7rem 0; position: relative; overflow: hidden;
}
#cta-banner::before {
  content: ''; position: absolute; top: 50%; left: 50%;
  transform: translate(-50%,-50%);
  width: 700px; height: 700px; border-radius: 50%;
  background: radial-gradient(circle, rgba(200,169,110,.07) 0%, transparent 65%);
  pointer-events: none;
}
.cta-label {
  font-size: .68rem; font-weight: 500; letter-spacing: .22em;
  text-transform: uppercase; color: var(--gold); margin-bottom: 1.5rem;
}
.cta-h2 {
  font-family: var(--serif); font-weight: 600;
  font-size: clamp(2rem, 4.5vw, 3.4rem);
  color: var(--white); line-height: 1.12; max-width: 640px;
  margin: 0 auto 1.4rem;
}
.cta-h2 em { font-style: italic; color: var(--gold-lt); }
.cta-sub {
  font-size: 1rem; font-weight: 300; color: rgba(255,255,255,.45);
  max-width: 420px; margin: 0 auto 2.8rem; line-height: 1.75;
}

/* ── FOOTER ── */
footer { background: var(--deep-2); padding: 4rem 0 2rem; border-top: 1px solid rgba(255,255,255,.05); }
.footer-grid {
  display: grid; grid-template-columns: 1.2fr 1fr 1fr;
  gap: 4rem; padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255,255,255,.06);
}
.footer-brand .f-logo {
  font-family: var(--serif); font-style: normal; font-weight: 400;
  font-size: 1.5rem; color: var(--white); display: block; margin-bottom: .5rem;
}
.footer-brand .f-logo .dot { color: var(--gold); }
.footer-brand p { font-size: .78rem; font-weight: 300; color: rgba(255,255,255,.3); line-height: 1.65; }
.footer-col h4 {
  font-size: .68rem; font-weight: 500; letter-spacing: .16em;
  text-transform: uppercase; color: var(--gold); margin-bottom: 1.2rem;
}
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: .65rem; }
.footer-col ul a { font-size: .82rem; font-weight: 300; color: rgba(255,255,255,.38); text-decoration: none; transition: color .2s; }
.footer-col ul a:hover { color: var(--gold-lt); }
.footer-bottom { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 1rem; padding-top: 2rem; }
.footer-copy { font-size: .72rem; font-weight: 300; color: rgba(255,255,255,.2); letter-spacing: .04em; }

/* ── WHATSAPP FLOAT ── */
.wa-float {
  position: fixed; bottom: 2rem; right: 2rem; z-index: 998;
  width: 3.4rem; height: 3.4rem; background: #25D366;
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 18px rgba(37,211,102,.45); text-decoration: none;
  transition: transform .2s, box-shadow .2s;
}
.wa-float:hover { transform: scale(1.1); box-shadow: 0 6px 28px rgba(37,211,102,.55); }
.wa-float svg { width: 1.85rem; height: 1.85rem; fill: #fff; }

/* ── RESPONSIVE — Tablet ── */
@media (max-width: 900px) {
  .wrap { padding: 0 1.5rem; }
  section { padding: 5.5rem 0; }
  .nav-links { display: none; }
  .nav-wa.desktop { display: none; }
  .hamburger { display: flex; }
  .cred-grid { grid-template-columns: 1fr; gap: 3rem; }
  .cred-stats { flex-direction: row; flex-wrap: wrap; }
  .cred-stat-card { flex: 1; min-width: 200px; }
  .risk-grid { grid-template-columns: 1fr 1fr; }
  .exp-inner { grid-template-columns: 1fr; gap: 3.5rem; }
  .conc-inner { grid-template-columns: 1fr; gap: 2.5rem; }
  .contato-inner { grid-template-columns: 1fr; gap: 3rem; }
  .form-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2.5rem; }
  .footer-brand { grid-column: 1 / -1; }
}

@media (max-width: 768px) {
  #hero-video { display: none; }
}

/* ── RESPONSIVE — Mobile ── */
@media (max-width: 600px) {
  .wrap { padding: 0 1.25rem; }
  section { padding: 4rem 0; }
  #cta-banner { padding: 4.5rem 0; }
  .hero-h1 { font-size: clamp(2.4rem, 10vw, 3.5rem); }
  .hero-sub { font-size: .9rem; margin-bottom: 2.2rem; }
  .hero-actions { flex-direction: column; align-items: flex-start; gap: 1rem; }
  .btn-gold { width: 100%; justify-content: center; }
  .hero-stats { flex-direction: column; gap: 0; margin-top: 3rem; }
  .hero-stat { padding: 1.2rem 0; border-right: none; border-bottom: 1px solid rgba(200,169,110,.08); }
  .hero-stat:last-child { border-bottom: none; }
  .risk-grid { grid-template-columns: 1fr; }
  .risk-card { padding: 1.4rem; }
  .pullquote blockquote { font-size: 1.05rem; }
  .cta-h2 { font-size: clamp(1.7rem, 7.5vw, 2.4rem); }
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
}
