/* =========================================================================
   AUTO CENTER FLORIPA JEEP — premium dark editorial redesign
   Atualiza 360°
   ========================================================================= */

:root {
  --bg:        #081a10;
  --bg-deep:   #040f08;
  --surface:   #0d2b1f;
  --surface-2: #102e22;
  --border:    #1a4030;
  --border-strong: #29553f;
  --text:      #f5f5f0;
  --muted:     #7a9e8a;
  --muted-2:   #5e8270;
  --accent:    #ddd8b8;
  --accent-dim:#a8a48c;
  --green-wa:  #25d366;
  --green-wa-d:#128c7e;
  --star:      #f5c518;

  --display: "Barlow Condensed", "Oswald", "Bebas Neue", sans-serif;
  --sans:    "Inter", system-ui, -apple-system, "Segoe UI", sans-serif;
  --mono:    "JetBrains Mono", ui-monospace, "SF Mono", Menlo, monospace;

  --maxw:    1240px;
  --pad-x:   clamp(20px, 4vw, 56px);

  --shadow-card: 0 1px 0 rgba(255,255,255,0.02) inset, 0 24px 48px -24px rgba(0,0,0,0.6);
  --ease: cubic-bezier(.2,.7,.2,1);
}

/* RESET */
*, *::before, *::after { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: 0; background: none; color: inherit; }
ul { list-style: none; padding: 0; margin: 0; }

/* TYPE SCALE */
.eyebrow {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 500;
}
.eyebrow-muted { color: var(--muted); }
.h-display {
  font-family: var(--display);
  font-weight: 800;
  letter-spacing: -0.01em;
  line-height: 0.92;
  text-transform: uppercase;
  margin: 0;
}
.h-section {
  font-family: var(--display);
  font-weight: 800;
  font-size: clamp(36px, 5.5vw, 72px);
  letter-spacing: -0.005em;
  line-height: 1;
  text-transform: uppercase;
  margin: 0 0 12px;
}
.lead {
  color: var(--muted);
  font-size: clamp(16px, 1.3vw, 18px);
  line-height: 1.6;
  max-width: 56ch;
}
.section-kicker {
  display: flex;
  align-items: baseline;
  gap: 14px;
  margin-bottom: 36px;
}
.section-kicker .num {
  font-family: var(--mono);
  font-size: 12px;
  color: var(--accent);
  letter-spacing: 0.18em;
}
.section-kicker .rule {
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, var(--border-strong), transparent);
}
.destaque { color: var(--accent); font-style: normal; }

/* CONTAINER */
.container {
  width: 100%;
  max-width: var(--maxw);
  margin: 0 auto;
  padding-left: var(--pad-x);
  padding-right: var(--pad-x);
}
section { padding: clamp(72px, 10vw, 128px) 0; position: relative; }

/* =========================================================================
   HEADER
   ========================================================================= */
#site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 50;
  height: 70px;
  display: flex;
  align-items: center;
  background: transparent;
  border-bottom: 1px solid transparent;
  transition: background .35s var(--ease), border-color .35s var(--ease), backdrop-filter .35s var(--ease);
}
#site-header.scrolled {
  background: rgba(8, 26, 16, 0.78);
  backdrop-filter: blur(14px) saturate(140%);
  -webkit-backdrop-filter: blur(14px) saturate(140%);
  border-bottom-color: var(--border);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 var(--pad-x);
}
.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--text);
}
.brand-mark {
  width: 38px; height: 38px;
  border-radius: 4px;
  background: var(--accent);
  color: #0a1f14;
  display: grid;
  place-items: center;
  font-family: var(--display);
  font-weight: 800;
  font-size: 18px;
  letter-spacing: -0.02em;
}
.brand .brand-logo {
  width: 46px !important;
  height: 46px !important;
  min-width: 46px;
  display: block;
  flex-shrink: 0;
}
.brand .brand-logo svg { width: 46px; height: 46px; display: block; }
.footer-brand .brand-logo { width: 64px !important; height: 64px !important; min-width: 64px; }
.footer-brand .brand-logo svg { width: 64px; height: 64px; }
.hero-main .hero-badge {
  width: clamp(160px, 18vw, 220px) !important;
  height: clamp(160px, 18vw, 220px) !important;
  display: block;
  margin-bottom: 28px;
  filter: drop-shadow(0 8px 24px rgba(0,0,0,0.4));
}
.hero-main .hero-badge svg { width: 100%; height: 100%; display: block; }
body[data-hero="centered"] .hero-badge { margin-left: auto; margin-right: auto; }
.brand-name {
  display: flex;
  flex-direction: column;
  line-height: 1;
}
.brand-name b {
  font-family: var(--display);
  font-weight: 700;
  font-size: 17px;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}
.brand-name span {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.22em;
  color: var(--muted);
  text-transform: uppercase;
  margin-top: 4px;
}
.header-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 16px;
  background: var(--green-wa);
  color: #06231a;
  border-radius: 999px;
  font-weight: 600;
  font-size: 13px;
  transition: transform .2s var(--ease), background .2s var(--ease);
}
.header-cta:hover { background: #2dd96d; transform: translateY(-1px); }
.header-cta svg { width: 16px; height: 16px; }
@media (max-width: 720px) {
  #site-header { height: 60px; }
  .header-cta .label-long { display: none; }
}

/* =========================================================================
   HERO
   ========================================================================= */
#hero {
  min-height: 100vh;
  padding: 0;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0;
  background-image: url("img/jeep-renegade-compass-auto-center-floripa.jpg");
  background-size: cover;
  background-position: center;
  filter: saturate(0.85) contrast(1.05);
  z-index: 0;
}
.hero-overlay {
  position: absolute; inset: 0;
  background:
    radial-gradient(1200px 600px at 20% 60%, rgba(8,26,16,0.55), transparent 60%),
    linear-gradient(90deg, rgba(4,15,8,0.92) 0%, rgba(8,26,16,0.78) 45%, rgba(8,26,16,0.5) 100%),
    linear-gradient(180deg, rgba(8,26,16,0.6) 0%, rgba(8,26,16,0.85) 100%);
  z-index: 1;
}
.hero-grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.025) 1px, transparent 1px);
  background-size: 64px 64px;
  z-index: 2;
  pointer-events: none;
  mask-image: radial-gradient(ellipse at center, black 30%, transparent 75%);
}
.hero-inner {
  position: relative;
  z-index: 3;
  width: 100%;
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 110px var(--pad-x) 80px;
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 40px;
  align-items: end;
}
.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 14px;
  border: 1px solid var(--accent-dim);
  border-radius: 999px;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 28px;
}
.hero-tag .dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 12px var(--accent);
}
.hero-h1 {
  font-family: var(--display);
  font-weight: 800;
  font-size: clamp(56px, 9vw, 132px);
  line-height: 0.88;
  letter-spacing: -0.015em;
  text-transform: uppercase;
  margin: 0 0 28px;
  text-wrap: balance;
}
.hero-h1 .destaque {
  color: var(--accent);
  font-style: italic;
  font-weight: 500;
  font-family: "Cormorant Garamond", "Times New Roman", serif;
  text-transform: none;
  letter-spacing: -0.01em;
}
.hero-lead {
  color: var(--text);
  opacity: 0.78;
  font-size: clamp(16px, 1.25vw, 18px);
  max-width: 52ch;
  margin: 0 0 28px;
  line-height: 1.6;
}
.hero-models {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 36px;
}
.model-tag {
  font-family: var(--mono);
  font-size: 10.5px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 6px 11px;
  border: 1px solid var(--border-strong);
  border-radius: 4px;
  color: var(--muted);
  background: rgba(8,26,16,0.4);
}
.model-tag b { color: var(--accent); font-weight: 500; margin-right: 6px; }

.btn-wa {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 18px 28px;
  background: var(--green-wa);
  color: #06231a;
  border-radius: 999px;
  font-weight: 700;
  font-size: 15px;
  letter-spacing: 0.01em;
  transition: transform .2s var(--ease), box-shadow .2s var(--ease), background .2s var(--ease);
  box-shadow: 0 12px 30px -10px rgba(37,211,102,0.5);
}
.btn-wa:hover { transform: translateY(-2px); background: #2dd96d; box-shadow: 0 18px 40px -10px rgba(37,211,102,0.65); }
.btn-wa svg { width: 20px; height: 20px; }
.btn-wa.full { width: 100%; justify-content: center; }

.hero-meta {
  display: flex;
  flex-direction: column;
  gap: 18px;
  border-left: 1px solid var(--border-strong);
  padding: 8px 0 8px 24px;
  align-self: end;
  margin-bottom: 4px;
}
.hero-meta .meta-row {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.hero-meta .meta-row .k {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--muted);
}
.hero-meta .meta-row .v {
  font-family: var(--display);
  font-weight: 700;
  font-size: 22px;
  text-transform: uppercase;
  letter-spacing: 0.01em;
  color: var(--text);
}
.hero-meta .meta-row .v small {
  font-family: var(--mono);
  font-weight: 400;
  font-size: 11px;
  color: var(--accent);
  letter-spacing: 0.15em;
  display: block;
  margin-top: 2px;
}

.hero-scroll {
  position: absolute;
  bottom: 28px; left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--muted);
}
.hero-scroll .line {
  width: 1px; height: 36px;
  background: linear-gradient(180deg, var(--accent), transparent);
  animation: scrollLine 2.4s ease-in-out infinite;
}
@keyframes scrollLine {
  0%   { transform: scaleY(0); transform-origin: top; }
  50%  { transform: scaleY(1); transform-origin: top; }
  51%  { transform: scaleY(1); transform-origin: bottom; }
  100% { transform: scaleY(0); transform-origin: bottom; }
}

@media (max-width: 920px) {
  .hero-inner { grid-template-columns: 1fr; padding-top: 100px; padding-bottom: 100px; }
  .hero-meta { border-left: 0; border-top: 1px solid var(--border-strong); padding: 24px 0 0; flex-direction: row; flex-wrap: wrap; gap: 24px 32px; }
}
@media (max-width: 520px) {
  .hero-h1 { font-size: clamp(44px, 13vw, 64px); }
}

/* =========================================================================
   COMO FUNCIONA
   ========================================================================= */
#como-funciona {
  background: var(--surface);
  border-top: 1px solid var(--border);
}
.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  position: relative;
}
.step {
  position: relative;
  padding: 32px 28px 32px 0;
}
.step + .step { padding-left: 40px; border-left: 1px solid var(--border); }
.step .num-wm {
  position: absolute;
  top: -18px;
  right: 28px;
  font-family: var(--display);
  font-weight: 800;
  font-size: clamp(120px, 14vw, 200px);
  line-height: 0.85;
  color: var(--accent);
  opacity: 0.07;
  letter-spacing: -0.04em;
  pointer-events: none;
}
.step .num-label {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.25em;
  color: var(--accent);
  margin-bottom: 24px;
  display: block;
}
.step h3 {
  font-family: var(--display);
  font-weight: 700;
  font-size: clamp(26px, 2.4vw, 34px);
  line-height: 1.05;
  text-transform: uppercase;
  letter-spacing: -0.005em;
  margin: 0 0 14px;
}
.step p {
  color: var(--muted);
  margin: 0;
  max-width: 36ch;
  font-size: 15px;
}
@media (max-width: 820px) {
  .steps { grid-template-columns: 1fr; }
  .step + .step { border-left: 0; border-top: 1px solid var(--border); padding-left: 0; padding-top: 40px; margin-top: 24px; }
}

/* =========================================================================
   SERVIÇOS
   ========================================================================= */
#servicos { background: var(--bg); }
.svc-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
.svc-card {
  position: relative;
  display: flex;
  flex-direction: column;
  border: 1px solid var(--border);
  background: var(--surface);
  overflow: hidden;
  transition: border-color .3s var(--ease), transform .4s var(--ease);
}
.svc-card:hover { border-color: var(--accent); transform: translateY(-4px); }
.svc-media {
  position: relative;
  aspect-ratio: 4/3;
  overflow: hidden;
  background: var(--surface-2);
}
.svc-media img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .8s var(--ease);
  filter: saturate(0.92);
}
.svc-card:hover .svc-media img { transform: scale(1.06); }
.svc-media::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 60%, rgba(8,26,16,0.5));
  pointer-events: none;
}
.svc-meta {
  padding: 22px 24px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.svc-meta .label {
  font-family: var(--display);
  font-weight: 700;
  font-size: clamp(20px, 1.7vw, 24px);
  text-transform: uppercase;
  letter-spacing: 0.005em;
  color: var(--accent);
}
.svc-meta .ix {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  color: var(--muted);
}
@media (max-width: 720px) {
  .svc-grid { grid-template-columns: 1fr; }
}

/* =========================================================================
   GALERIA — asymmetric
   ========================================================================= */
#galeria { background: var(--surface); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.gal-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 16px;
  height: clamp(520px, 64vw, 760px);
}
.gal-cell {
  position: relative;
  overflow: hidden;
  background: var(--surface-2);
  border: 1px solid var(--border);
}
.gal-cell.big { grid-row: 1 / span 2; }
.gal-cell img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .8s var(--ease), filter .4s var(--ease);
  filter: saturate(0.88) brightness(0.92);
}
.gal-cell:hover img { transform: scale(1.05); filter: saturate(1) brightness(1); }
.gal-cell::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 70%, rgba(0,0,0,0.4));
  pointer-events: none;
}
.gal-cell .tag {
  position: absolute;
  bottom: 14px; left: 14px;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--accent);
  background: rgba(8,26,16,0.7);
  padding: 5px 9px;
  border: 1px solid var(--border-strong);
  z-index: 1;
}
@media (max-width: 720px) {
  .gal-grid { grid-template-columns: 1fr; grid-template-rows: auto; height: auto; }
  .gal-cell { aspect-ratio: 4/3; }
  .gal-cell.big { grid-row: auto; aspect-ratio: 4/3; }
}

/* =========================================================================
   DIFERENCIAIS
   ========================================================================= */
#diferenciais { background: var(--bg); }
.dif-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.dif-card {
  border: 1px solid var(--border);
  background: var(--surface);
  padding: 28px 22px 26px;
  transition: border-color .3s var(--ease), transform .3s var(--ease);
  position: relative;
  overflow: hidden;
}
.dif-card:hover { border-color: var(--accent); transform: translateY(-2px); }
.dif-card .ico {
  width: 36px; height: 36px;
  color: var(--accent);
  margin-bottom: 22px;
}
.dif-card .ico svg { width: 100%; height: 100%; stroke: currentColor; fill: none; stroke-width: 1.4; }
.dif-card h4 {
  font-family: var(--display);
  font-weight: 700;
  font-size: 22px;
  line-height: 1.1;
  text-transform: uppercase;
  letter-spacing: 0.005em;
  margin: 0 0 8px;
}
.dif-card p { color: var(--muted); font-size: 14px; margin: 0; }
.dif-card .ix {
  position: absolute;
  top: 14px; right: 14px;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.18em;
  color: var(--muted-2);
}
@media (max-width: 880px) { .dif-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px) { .dif-grid { grid-template-columns: 1fr; } }

/* =========================================================================
   DEPOIMENTOS
   ========================================================================= */
#depoimentos { background: var(--bg); border-top: 1px solid var(--border); }
.dep-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.dep-card {
  position: relative;
  padding: 8px 4px 8px 28px;
  border-left: 3px solid var(--accent);
}
.dep-card .quote-wm {
  position: absolute;
  top: -22px; left: 16px;
  font-family: "Cormorant Garamond", serif;
  font-size: 110px;
  line-height: 1;
  color: var(--accent);
  opacity: 0.16;
  pointer-events: none;
}
.dep-stars {
  display: flex;
  gap: 3px;
  margin-bottom: 14px;
  color: var(--star);
}
.dep-stars svg { width: 14px; height: 14px; fill: currentColor; }
.dep-text {
  font-family: "Cormorant Garamond", "Georgia", serif;
  font-style: italic;
  font-size: clamp(17px, 1.4vw, 19px);
  line-height: 1.55;
  color: var(--text);
  margin: 0 0 18px;
}
.dep-author {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.2em;
  color: var(--accent);
  text-transform: uppercase;
}
.dep-author small { color: var(--muted); display: block; margin-top: 4px; letter-spacing: 0.15em; }
@media (max-width: 880px) { .dep-grid { grid-template-columns: 1fr; gap: 36px; } }

/* =========================================================================
   DEPOIMENTOS — badge Google + CTA avaliação
   ========================================================================= */
.dep-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 64px;
}
.dep-header .lead { margin-bottom: 0; }
.google-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 12px 18px;
  flex-shrink: 0;
}
.google-badge svg:first-child { width: 20px; height: 20px; flex-shrink: 0; }
.badge-score {
  font-family: var(--display);
  font-weight: 700;
  font-size: 22px;
  color: var(--text);
  letter-spacing: -0.01em;
}
.badge-stars { display: flex; gap: 2px; color: var(--star); }
.badge-stars svg { width: 14px; height: 14px; fill: currentColor; }
.badge-count {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  color: var(--muted);
}
.dep-cta {
  text-align: center;
  margin-top: 48px;
}
.btn-review {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 24px;
  border: 1px solid var(--border-strong);
  border-radius: 999px;
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
  background: var(--surface);
  transition: border-color .2s var(--ease), color .2s var(--ease);
}
.btn-review svg { width: 18px; height: 18px; flex-shrink: 0; }
.btn-review:hover { border-color: var(--accent); color: var(--text); }

/* =========================================================================
   LOCALIZAÇÃO — Google Maps
   ========================================================================= */
#localizacao { background: var(--surface); border-top: 1px solid var(--border); }
#localizacao .lead { max-width: 72ch; }
.map-wrap {
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid var(--border);
  line-height: 0;
}
.map-wrap iframe { display: block; width: 100%; }

/* =========================================================================
   PARCEIROS
   ========================================================================= */
#parceiros { background: var(--surface); padding: 64px 0; }
.partners {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: clamp(40px, 6vw, 80px);
  margin-top: 28px;
}
.partner {
  height: 56px;
  display: grid;
  place-items: center;
  filter: grayscale(1) brightness(0.85);
  opacity: 0.65;
  transition: filter .3s var(--ease), opacity .3s var(--ease);
}
.partner:hover { filter: grayscale(0); opacity: 1; }
.partner img { max-height: 100%; max-width: 160px; object-fit: contain; }

/* =========================================================================
   FAQ
   ========================================================================= */
#faq { background: var(--bg); }
.faq-wrap {
  max-width: 720px;
  margin: 0 auto;
}
.faq-item {
  border-bottom: 1px solid var(--border);
}
.faq-item:first-child { border-top: 1px solid var(--border); }
.faq-q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 24px 0;
  text-align: left;
  font-family: var(--display);
  font-weight: 700;
  font-size: clamp(18px, 1.6vw, 22px);
  text-transform: uppercase;
  letter-spacing: 0.005em;
  color: var(--text);
  transition: color .2s var(--ease);
}
.faq-q:hover { color: var(--accent); }
.faq-q .ic {
  width: 28px; height: 28px;
  border: 1px solid var(--border-strong);
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: var(--accent);
  flex-shrink: 0;
  transition: transform .35s var(--ease), border-color .2s var(--ease);
}
.faq-q .ic svg { width: 12px; height: 12px; }
.faq-item.open .faq-q .ic { transform: rotate(45deg); border-color: var(--accent); }
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height .4s var(--ease), opacity .3s var(--ease);
  opacity: 0;
}
.faq-item.open .faq-a { max-height: 400px; opacity: 1; }
.faq-a p {
  color: var(--muted);
  margin: 0;
  padding: 0 0 26px;
  max-width: 60ch;
  line-height: 1.65;
}

/* =========================================================================
   FORMULÁRIO
   ========================================================================= */
#contato {
  background: var(--surface);
  border-top: 1px solid var(--border);
}
.form-wrap {
  max-width: 480px;
  margin: 0 auto;
}
.form-intro {
  text-align: center;
  margin-bottom: 32px;
}
.form-intro .h-section { margin-bottom: 16px; }
.form-intro p { color: var(--muted); margin: 0; }
#form-contato {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.field { display: flex; flex-direction: column; gap: 8px; }
.field label {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.22em;
  color: var(--muted);
  text-transform: uppercase;
}
.field input,
.field select {
  width: 100%;
  background: var(--bg);
  border: 1px solid var(--border);
  color: var(--text);
  padding: 14px 16px;
  border-radius: 8px;
  font-family: var(--sans);
  font-size: 16px;
  transition: border-color .2s var(--ease), background .2s var(--ease);
}
.field input::placeholder { color: var(--muted-2); }
.field input:focus,
.field select:focus {
  outline: none;
  border-color: var(--accent);
  background: var(--bg-deep);
}
.field select { appearance: none; background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8' fill='none' stroke='%23ddd8b8' stroke-width='1.6'><path d='M1 1.5L6 6.5L11 1.5'/></svg>"); background-repeat: no-repeat; background-position: right 16px center; padding-right: 40px; }
.btn-submit {
  margin-top: 8px;
  width: 100%;
  padding: 18px;
  background: var(--accent);
  color: #0a1f14;
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  border-radius: 8px;
  font-family: var(--mono);
  transition: background .2s var(--ease), transform .2s var(--ease);
}
.btn-submit:hover { background: #ece6c2; transform: translateY(-1px); }
#form-success {
  display: none;
  margin-top: 16px;
  padding: 16px 18px;
  background: rgba(37,211,102,0.08);
  border: 1px solid rgba(37,211,102,0.4);
  border-radius: 8px;
  color: #b9efce;
  font-size: 14px;
  display: flex;
  align-items: center;
  gap: 10px;
}
#form-success.hidden { display: none; }
#form-success.shown { display: flex; }
#form-success svg { width: 18px; height: 18px; flex-shrink: 0; color: var(--green-wa); }

/* =========================================================================
   INSTAGRAM
   ========================================================================= */
#instagram {
  background: var(--bg-deep);
  border-top: 1px solid var(--border);
  padding: 0;
}
.insta-block {
  display: flex;
  align-items: center;
  gap: 24px;
  padding: 40px 0;
  transition: opacity .2s var(--ease);
}
.insta-block:hover { opacity: .82; }
.insta-icon {
  width: 52px; height: 52px;
  flex-shrink: 0;
  background: linear-gradient(135deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
  border-radius: 14px;
  display: grid;
  place-items: center;
  color: #fff;
}
.insta-icon svg { width: 26px; height: 26px; }
.insta-text {
  display: flex;
  flex-direction: column;
  gap: 4px;
  flex: 1;
}
.insta-handle {
  font-family: var(--display);
  font-weight: 700;
  font-size: clamp(22px, 2.5vw, 32px);
  text-transform: uppercase;
  letter-spacing: 0.01em;
  color: var(--text);
}
.insta-cta {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
}
.insta-arrow {
  font-family: var(--display);
  font-size: 32px;
  color: var(--accent);
  flex-shrink: 0;
  transition: transform .25s var(--ease);
}
.insta-block:hover .insta-arrow { transform: translateX(6px); }
@media (max-width: 520px) {
  .insta-arrow { display: none; }
}

/* =========================================================================
   FOOTER
   ========================================================================= */
#footer {
  background: var(--bg-deep);
  padding: 72px 0 28px;
  border-top: 1px solid var(--border);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid var(--border);
}
.footer-brand .brand { margin-bottom: 18px; }
.footer-brand p { color: var(--muted); font-size: 14px; margin: 0; max-width: 36ch; line-height: 1.6; }
.footer-col h5 {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.24em;
  color: var(--accent);
  text-transform: uppercase;
  margin: 0 0 18px;
  font-weight: 500;
}
.footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-col a { color: var(--muted); font-size: 14px; transition: color .2s var(--ease); }
.footer-col a:hover { color: var(--text); }
.footer-col a.maps { color: var(--accent); }
.footer-col a.maps::after { content: " →"; }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 24px;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.15em;
  color: var(--muted-2);
}
.footer-credit {
  text-align: center;
  padding-top: 16px;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  color: var(--muted-2);
}
.footer-credit a { color: var(--accent-dim); transition: color .2s; }
.footer-credit a:hover { color: var(--accent); }
@media (max-width: 720px) {
  .footer-grid { grid-template-columns: 1fr; gap: 36px; }
  .footer-bottom { flex-direction: column; gap: 12px; text-align: center; }
}

/* =========================================================================
   FLOATING WHATSAPP
   ========================================================================= */
.wa-float {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 60;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--green-wa);
  color: #06231a;
  padding: 0;
  width: 56px;
  height: 56px;
  border-radius: 999px;
  justify-content: center;
  box-shadow: 0 16px 36px -10px rgba(37,211,102,0.55), 0 0 0 0 rgba(37,211,102,0.5);
  animation: waPulse 2.4s ease-in-out infinite;
  transition: transform .25s var(--ease), background .2s var(--ease), padding .25s var(--ease), width .25s var(--ease);
}
.wa-float svg { width: 26px; height: 26px; }
.wa-float .label { display: none; font-weight: 700; font-size: 14px; padding-right: 6px; }
.wa-float.expanded { width: auto; padding: 0 18px 0 14px; border-radius: 999px; }
.wa-float.expanded .label { display: inline; }
.wa-float:hover { transform: translateY(-2px) scale(1.04); }
@keyframes waPulse {
  0%   { box-shadow: 0 16px 36px -10px rgba(37,211,102,0.55), 0 0 0 0 rgba(37,211,102,0.45); }
  70%  { box-shadow: 0 16px 36px -10px rgba(37,211,102,0.55), 0 0 0 18px rgba(37,211,102,0); }
  100% { box-shadow: 0 16px 36px -10px rgba(37,211,102,0.55), 0 0 0 0 rgba(37,211,102,0); }
}
@media (max-width: 720px) {
  .wa-float { width: 52px; height: 52px; bottom: 18px; right: 18px; }
  .wa-float svg { width: 24px; height: 24px; }
}

/* =========================================================================
   TWEAKS-DRIVEN VARIANTS
   ========================================================================= */
body[data-headline="bebas"]   { --display: "Bebas Neue", "Barlow Condensed", sans-serif; }
body[data-headline="oswald"]  { --display: "Oswald", "Barlow Condensed", sans-serif; }
body[data-headline="archivo"] { --display: "Archivo Black", "Barlow Condensed", sans-serif; }
body[data-headline="barlow"]  { --display: "Barlow Condensed", sans-serif; }

body[data-hero="centered"] .hero-inner { grid-template-columns: 1fr; text-align: center; justify-items: center; }
body[data-hero="centered"] .hero-meta { display: none; }
body[data-hero="centered"] .hero-lead,
body[data-hero="centered"] .hero-h1 { margin-left: auto; margin-right: auto; }
body[data-hero="centered"] .hero-overlay { background: linear-gradient(180deg, rgba(4,15,8,0.55), rgba(8,26,16,0.85)); }

body[data-hero="split"] #hero { min-height: 100vh; }
body[data-hero="split"] .hero-bg { left: 50%; }
body[data-hero="split"] .hero-overlay { background: linear-gradient(90deg, rgba(8,26,16,1) 0%, rgba(8,26,16,1) 50%, rgba(8,26,16,0.5) 51%, rgba(8,26,16,0.3) 100%); }

body[data-rhythm="flat"] #servicos,
body[data-rhythm="flat"] #diferenciais,
body[data-rhythm="flat"] #depoimentos,
body[data-rhythm="faq"] #faq { background: var(--bg); }
body[data-rhythm="flat"] #como-funciona,
body[data-rhythm="flat"] #galeria,
body[data-rhythm="flat"] #parceiros,
body[data-rhythm="flat"] #contato { background: var(--bg); border-top-color: var(--border); }

body[data-accent="bold"]  { --accent: #f0e6a8; }
body[data-accent="muted"] { --accent: #b8b298; }
body[data-accent="copper"]{ --accent: #d4a574; }

/* Fade-in on load */
@keyframes riseIn {
  from { opacity: 0; transform: translateY(14px); }
  to   { opacity: 1; transform: translateY(0); }
}
.hero-tag, .hero-h1, .hero-lead, .hero-models, .hero-cta-row, .hero-meta {
  animation: riseIn .9s var(--ease) both;
}
.hero-tag    { animation-delay: 0.05s; }
.hero-h1     { animation-delay: 0.15s; }
.hero-lead   { animation-delay: 0.30s; }
.hero-models { animation-delay: 0.40s; }
.hero-cta-row{ animation-delay: 0.50s; }
.hero-meta   { animation-delay: 0.60s; }
