/* ============================================================
   MR. LION — PORTAL DO PARCEIRO v3
   styles.css
   ============================================================ */

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

:root {
  --black:     #060606;
  --dark:      #0C0C0C;
  --card:      #111111;
  --card2:     #181818;
  --border:    #222222;
  --gold:      #C9A84C;
  --gold-lt:   #D9BB6A;
  --gold-dk:   #8B6914;
  --gold-bg:   rgba(201,168,76,0.07);
  --gold-bdr:  rgba(201,168,76,0.22);
  --text:      #EDE8DE;
  --muted:     #7A7468;
  --dim:       #3A3730;
  --green:     #2F8A5A;
  --green-bg:  rgba(47,138,90,0.10);
  --green-bdr: rgba(47,138,90,0.28);
  --red:       #B83232;
  --section-pad: 96px;
}

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

body {
  background: var(--black);
  color: var(--text);
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

::-webkit-scrollbar { width: 4px; }
::-webkit-scrollbar-track { background: var(--black); }
::-webkit-scrollbar-thumb { background: var(--gold-dk); border-radius: 2px; }

/* ── PROGRESS BAR ── */
#progress-bar {
  position: fixed; top: 0; left: 0; height: 2px;
  background: var(--gold); z-index: 500; width: 0%;
  transition: width 0.1s linear;
}

/* ── CHAPTER NAV (dots) ── */
.chapter-nav {
  position: fixed; right: 20px; top: 50%; transform: translateY(-50%);
  display: flex; flex-direction: column; gap: 10px; z-index: 200;
}
.chapter-dot {
  width: 5px; height: 5px; border-radius: 50%;
  background: var(--dim); border: none; cursor: pointer;
  transition: all 0.25s; padding: 0;
}
.chapter-dot:hover { background: var(--muted); transform: scale(1.6); }
.chapter-dot.active { background: var(--gold); transform: scale(1.8); }
@media(max-width:768px){ .chapter-nav { display: none; } }

/* ── TOP NAV ── */
#topnav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 300;
  height: 56px; display: flex; align-items: center;
  background: rgba(6,6,6,0.92); backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
}
.nav-inner {
  max-width: 1140px; margin: 0 auto; padding: 0 28px;
  width: 100%; display: flex; align-items: center; justify-content: space-between;
}
.nav-logo img { height: 30px; filter: brightness(0) invert(1); display: block; }
.nav-links { display: flex; gap: 24px; list-style: none; }
.nav-links a {
  color: var(--muted); text-decoration: none;
  font-size: 0.72rem; font-weight: 600; letter-spacing: 0.09em;
  text-transform: uppercase; transition: color 0.2s;
}
.nav-links a:hover, .nav-links a.active { color: var(--gold); }
.nav-cta {
  background: var(--gold); color: #000; padding: 8px 18px;
  font-size: 0.72rem; font-weight: 700; letter-spacing: 0.09em;
  text-transform: uppercase; text-decoration: none; border-radius: 2px;
  transition: background 0.2s; white-space: nowrap;
}
.nav-cta:hover { background: var(--gold-lt); }
.nav-hamburger {
  display: none; background: none; border: none; cursor: pointer;
  flex-direction: column; gap: 4px; padding: 4px;
}
.nav-hamburger span {
  display: block; width: 22px; height: 1.5px; background: var(--text);
  transition: all 0.25s;
}
@media(max-width: 900px){
  .nav-links { display: none; }
  .nav-hamburger { display: flex; }
}
.nav-mobile {
  display: none; position: fixed; top: 56px; left: 0; right: 0;
  background: rgba(6,6,6,0.97); border-bottom: 1px solid var(--border);
  padding: 16px 28px; z-index: 299;
  flex-direction: column; gap: 0;
}
.nav-mobile.open { display: flex; }
.nav-mobile a {
  color: var(--muted); text-decoration: none; font-size: 0.82rem;
  font-weight: 500; padding: 12px 0; border-bottom: 1px solid var(--border);
  text-transform: uppercase; letter-spacing: 0.08em;
}
.nav-mobile a:hover { color: var(--gold); }

/* ── CONTAINER / LAYOUT ── */
.container { max-width: 1140px; margin: 0 auto; padding: 0 28px; }
section { padding: var(--section-pad) 0; }
.section-alt { background: var(--dark); }

/* ── SECTION HEADER ── */
.sh { margin-bottom: 56px; }
.sh.center { text-align: center; }
.sh-chapter {
  font-size: 0.65rem; font-weight: 700; letter-spacing: 0.18em;
  text-transform: uppercase; color: var(--muted); margin-bottom: 14px;
  display: flex; align-items: center; gap: 10px;
}
.sh-chapter::before {
  content: ''; display: block; width: 24px; height: 1px; background: var(--gold-dk);
}
.sh-chapter.center-ch::before, .sh-chapter.center-ch::after { content: ''; display: block; width: 24px; height: 1px; background: var(--gold-dk); }
.sh h2 {
  font-family: 'DM Serif Display', serif;
  font-size: clamp(1.9rem, 3.2vw, 2.6rem); line-height: 1.15;
}
.sh h2 em { font-style: italic; color: var(--gold); }
.sh .sub {
  color: var(--muted); font-size: 0.92rem; margin-top: 14px;
  line-height: 1.75; max-width: 580px;
}
.sh.center .sub { margin-left: auto; margin-right: auto; }
.divider { width: 36px; height: 1px; background: var(--gold); margin: 16px 0; }
.divider.c { margin-left: auto; margin-right: auto; }

/* ── TYPOGRAPHY UTILITIES ── */
.serif { font-family: 'DM Serif Display', serif; }
.gold { color: var(--gold); }
.muted { color: var(--muted); }

/* ── BUTTONS ── */
.btn-gold {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--gold); color: #000;
  padding: 13px 24px; font-size: 0.8rem; font-weight: 700;
  letter-spacing: 0.07em; text-transform: uppercase; text-decoration: none;
  border-radius: 2px; border: none; cursor: pointer; transition: all 0.2s;
  font-family: 'Inter', sans-serif;
}
.btn-gold:hover { background: var(--gold-lt); transform: translateY(-1px); }
.btn-gold.full { width: 100%; justify-content: center; }
.btn-ghost {
  display: inline-flex; align-items: center; gap: 8px;
  background: transparent; color: var(--text);
  border: 1px solid var(--border); padding: 13px 24px;
  font-size: 0.8rem; font-weight: 500; letter-spacing: 0.06em;
  text-transform: uppercase; text-decoration: none; border-radius: 2px;
  transition: all 0.2s; cursor: pointer; font-family: 'Inter', sans-serif;
}
.btn-ghost:hover { border-color: var(--gold-bdr); color: var(--gold); }
.btn-wa {
  display: inline-flex; align-items: center; gap: 9px;
  background: #22C55E; color: #fff;
  padding: 14px 26px; font-size: 0.82rem; font-weight: 700;
  letter-spacing: 0.05em; text-decoration: none; border-radius: 2px;
  transition: all 0.2s;
}
.btn-wa:hover { background: #16a34a; transform: translateY(-1px); }
.btn-wa.full { width: 100%; justify-content: center; }

/* ── TAGS / PILLS ── */
.tag {
  display: inline-block; padding: 3px 10px; border-radius: 100px;
  font-size: 0.67rem; font-weight: 600; letter-spacing: 0.05em;
  border: 1px solid var(--border); background: var(--card2); color: var(--muted);
}
.tag.gold { border-color: var(--gold-bdr); background: var(--gold-bg); color: var(--gold); }
.tag.green { border-color: var(--green-bdr); background: var(--green-bg); color: var(--green); }
.tag.verified { border-color: var(--green-bdr); background: var(--green-bg); color: var(--green); font-size: 0.65rem; }

/* ── SCROLL ANIMATIONS ── */
.reveal {
  opacity: 0; transform: translateY(20px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}
.reveal.visible { opacity: 1; transform: none; }
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* ═══════════════════════════════════════════════════════════
   HERO
   ═══════════════════════════════════════════════════════════ */
#hero {
  min-height: 100vh; display: flex; align-items: center;
  padding-top: 80px; padding-bottom: 0; position: relative; overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 60% 70% at 70% 45%, rgba(201,168,76,0.07) 0%, transparent 65%),
    var(--black);
}
.hero-layout {
  position: relative; z-index: 1;
  display: grid; grid-template-columns: 1fr 400px; gap: 64px; align-items: center;
  padding-bottom: 56px;
}
.hero-label {
  display: inline-flex; align-items: center; gap: 8px;
  border: 1px solid var(--gold-bdr); color: var(--gold);
  padding: 5px 14px; border-radius: 100px;
  font-size: 0.67rem; font-weight: 700; letter-spacing: 0.14em;
  text-transform: uppercase; margin-bottom: 24px;
  background: var(--gold-bg);
}
.hero-dot { width: 5px; height: 5px; background: var(--gold); border-radius: 50%; animation: pulse 2s infinite; }
@keyframes pulse { 0%,100%{opacity:1} 50%{opacity:0.35} }
.hero-title {
  font-family: 'DM Serif Display', serif;
  font-size: clamp(2.4rem, 4.2vw, 3.8rem); line-height: 1.1; margin-bottom: 20px;
}
.hero-title em { font-style: italic; color: var(--gold); }
.hero-sub {
  color: var(--muted); font-size: 1rem; line-height: 1.75;
  max-width: 500px; margin-bottom: 36px;
}
.hero-actions { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 48px; }
.hero-trust {
  display: flex; align-items: center; gap: 16px; flex-wrap: wrap;
  padding-top: 32px; border-top: 1px solid var(--border);
}
.trust-item {
  display: flex; align-items: center; gap: 7px;
  font-size: 0.75rem; color: var(--muted);
}
.trust-icon { color: var(--green); font-size: 0.7rem; font-weight: 700; }

/* Hero visual — editorial product showcase */
.hero-visual {
  display: flex; flex-direction: column; align-items: center;
  gap: 0; position: relative;
}

/* Product selector tabs — acima da garrafa */
.hero-prod-selector {
  display: flex; gap: 0; width: 100%; max-width: 340px;
  border: 1px solid var(--border); border-radius: 3px; overflow: hidden;
  margin-bottom: 0;
}
.hero-ptab {
  flex: 1; padding: 9px 4px; background: transparent; border: none;
  font-size: 0.7rem; font-weight: 600; letter-spacing: 0.04em;
  color: var(--muted); cursor: pointer; transition: all 0.2s;
  border-right: 1px solid var(--border);
}
.hero-ptab:last-child { border-right: none; }
.hero-ptab.active { background: var(--gold); color: #000; }

/* Garrafa com glow */
.hero-bottle-wrap {
  position: relative; display: flex; align-items: center; justify-content: center;
  width: 100%; padding: 24px 0;
}
.hero-bottle-glow {
  position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%);
  width: 260px; height: 260px;
  background: radial-gradient(circle, rgba(201,168,76,0.12) 0%, transparent 70%);
  pointer-events: none;
}
.hero-product-img {
  width: 220px; height: 380px; object-fit: contain; position: relative; z-index: 1;
  filter: drop-shadow(0 32px 64px rgba(201,168,76,0.22));
  transition: opacity 0.25s, transform 0.25s;
}

/* Nome + desc abaixo da garrafa */
.hero-prod-info {
  text-align: center; border-top: 1px solid var(--border);
  padding-top: 20px; width: 100%; max-width: 340px;
}
.hero-product-name {
  font-family: 'DM Serif Display', serif; font-size: 1.4rem;
  margin-bottom: 6px;
}
.hero-product-desc { font-size: 0.78rem; color: var(--muted); }

/* Stats band — full width, abaixo do hero-layout */
.hero-stats {
  position: relative; z-index: 1;
  display: grid; grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  margin: 0 -28px; /* sangria para cobrir o container padding */
}
.hero-stat {
  padding: 24px 32px;
  border-right: 1px solid var(--border);
}
.hero-stat:last-child { border-right: none; }
.hero-stat .n {
  font-family: 'DM Serif Display', serif; font-size: 2rem; color: var(--gold);
  line-height: 1; display: block;
}
.hero-stat .l { font-size: 0.7rem; color: var(--muted); margin-top: 5px; line-height: 1.4; }

@media(max-width: 1000px){
  .hero-layout { grid-template-columns: 1fr; }
  .hero-visual { display: none; }
  .hero-stats { grid-template-columns: repeat(2, 1fr); margin: 0; }
}
@media(max-width: 540px){
  .hero-stats { grid-template-columns: repeat(2, 1fr); }
}

/* ═══════════════════════════════════════════════════════════
   SOCIAL PROOF BAND
   ═══════════════════════════════════════════════════════════ */
#prova {
  padding: 0; border-top: 1px solid var(--border); border-bottom: 1px solid var(--border);
  background: var(--dark);
}
.prova-inner {
  max-width: 1140px; margin: 0 auto; padding: 0 28px;
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 0;
}
.prova-item {
  flex: 1; min-width: 180px; padding: 20px 24px;
  display: flex; align-items: center; gap: 12px;
  border-right: 1px solid var(--border);
}
.prova-item:last-child { border-right: none; }
@media(max-width:700px){
  .prova-inner { flex-direction: column; }
  .prova-item { border-right: none; border-bottom: 1px solid var(--border); min-width: 100%; }
  .prova-item:last-child { border-bottom: none; }
}
.prova-icon { width: 36px; height: 36px; background: var(--gold-bg); border: 1px solid var(--gold-bdr); border-radius: 50%; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.prova-icon svg { width: 16px; height: 16px; fill: var(--gold); }
.prova-text .pt { font-size: 0.92rem; font-weight: 700; color: var(--text); }
.prova-text .ps { font-size: 0.7rem; color: var(--muted); margin-top: 1px; }

/* ═══════════════════════════════════════════════════════════
   PRODUTOS
   ═══════════════════════════════════════════════════════════ */
#produtos { }
.prod-tabs {
  display: flex; gap: 0; border: 1px solid var(--border);
  border-radius: 3px; overflow: hidden; margin-bottom: 44px;
}
.ptab {
  flex: 1; padding: 14px 8px; background: transparent; border: none;
  color: var(--muted); font-size: 0.78rem; font-weight: 700;
  letter-spacing: 0.07em; text-transform: uppercase; cursor: pointer;
  transition: all 0.2s; border-right: 1px solid var(--border);
  font-family: 'Inter', sans-serif;
}
.ptab:last-child { border-right: none; }
.ptab.active { background: var(--gold); color: #000; }
.ptab:not(.active):hover { color: var(--text); background: rgba(255,255,255,0.02); }

.prod-panel { display: none; }
.prod-panel.active { display: grid; grid-template-columns: 1fr 1.15fr; gap: 60px; align-items: start; animation: fadeUp 0.3s ease; }
@keyframes fadeUp { from{opacity:0;transform:translateY(8px)} to{opacity:1;transform:none} }

.prod-gallery { }
.prod-main-img {
  width: 100%; max-height: 440px; object-fit: contain;
  filter: drop-shadow(0 16px 48px rgba(201,168,76,0.14));
  transition: opacity 0.25s, transform 0.25s;
}
.hero-product-img {
  transition: opacity 0.2s, transform 0.2s;
}
.prod-thumbs { display: flex; gap: 8px; margin-top: 14px; flex-wrap: wrap; }
.thumb {
  width: 60px; height: 60px; background: var(--card); border: 1px solid var(--border);
  border-radius: 2px; overflow: hidden; cursor: pointer;
  transition: border-color 0.2s; padding: 4px; flex-shrink: 0;
}
.thumb img { width: 100%; height: 100%; object-fit: contain; }
.thumb.active, .thumb:hover { border-color: var(--gold); }

.prod-tag { display: inline-block; margin-bottom: 14px; }
.prod-name {
  font-family: 'DM Serif Display', serif;
  font-size: 2.4rem; line-height: 1.05; margin-bottom: 6px;
}
.prod-specs { font-size: 0.82rem; color: var(--muted); margin-bottom: 20px; }
.prod-desc {
  font-size: 0.88rem; color: var(--muted); line-height: 1.75;
  margin-bottom: 28px; padding-left: 16px; border-left: 2px solid var(--gold-dk);
}

.versoes-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 10px; margin-bottom: 28px; }
.versao-card {
  background: var(--card); border: 1px solid var(--border); border-radius: 3px;
  padding: 16px 10px; text-align: center; cursor: pointer; transition: all 0.2s;
}
.versao-card.active, .versao-card:hover { border-color: var(--gold); background: var(--gold-bg); }
.versao-card img { width: 56px; height: 76px; object-fit: contain; margin: 0 auto 10px; display: block; }
.versao-card .vn { font-size: 0.72rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.06em; margin-bottom: 3px; }
.versao-card .vp { font-size: 0.78rem; color: var(--gold); font-weight: 600; }
.versao-card .vs { font-size: 0.66rem; color: var(--muted); margin-top: 2px; line-height: 1.4; }

.preco-label { font-size: 0.68rem; color: var(--muted); text-transform: uppercase; letter-spacing: 0.1em; margin-bottom: 4px; }
.preco-val { font-family: 'DM Serif Display', serif; font-size: 2.4rem; color: var(--gold); line-height: 1; }
.preco-note { font-size: 0.7rem; color: var(--muted); margin-top: 5px; }
.prod-actions { display: flex; gap: 10px; margin-top: 22px; }

@media(max-width:900px){
  .prod-panel.active { grid-template-columns: 1fr; gap: 32px; }
}
@media(max-width:600px){
  .versoes-grid { grid-template-columns: repeat(3,1fr); }
}

/* ═══════════════════════════════════════════════════════════
   TABELA
   ═══════════════════════════════════════════════════════════ */
.level-nav {
  display: flex; gap: 0;
  margin-bottom: 36px;
  /* IMPORTANTE: sem overflow:hidden para não cortar as tags superiores */
}
.lvl-btn {
  flex: 1; padding: 14px 6px 12px;
  background: var(--card); border: 1px solid var(--border);
  border-right: none;
  color: var(--muted); font-family: 'Inter', sans-serif;
  font-size: 0.72rem; font-weight: 700; letter-spacing: 0.04em;
  cursor: pointer; transition: all 0.2s; text-align: center;
  position: relative; margin-top: 14px;
}
.lvl-btn:first-child { border-radius: 3px 0 0 3px; }
.lvl-btn:last-child { border-right: 1px solid var(--border); border-radius: 0 3px 3px 0; }
.lvl-btn.active { background: var(--gold); color: #000; border-color: var(--gold); z-index: 1; }
.lvl-btn:not(.active):hover { color: var(--text); background: var(--card2); }
.lvl-btn .ln { display: block; font-size: 0.95rem; font-family: 'DM Serif Display', serif; margin-bottom: 2px; }
.lvl-btn .ls { display: block; font-size: 0.62rem; text-transform: uppercase; letter-spacing: 0.06em; }
.lvl-badge {
  position: absolute; top: -10px; left: 50%; transform: translateX(-50%);
  background: var(--gold); color: #000;
  font-size: 0.57rem; font-weight: 700; letter-spacing: 0.07em;
  text-transform: uppercase; padding: 2px 8px; border-radius: 100px;
  white-space: nowrap; pointer-events: none;
}
.lvl-badge.green { background: var(--green); color: #fff; }

.tbl-panel { display: none; }
.tbl-panel.active { display: block; animation: fadeUp 0.25s ease; }

.tbl-header { display: flex; justify-content: space-between; align-items: flex-end; margin-bottom: 18px; flex-wrap: wrap; gap: 10px; }
.tbl-title { font-family: 'DM Serif Display', serif; font-size: 1.4rem; }
.tbl-title span { color: var(--gold); }
.tbl-tags { display: flex; gap: 7px; flex-wrap: wrap; }

.tbl-wrap { overflow-x: auto; border-radius: 3px; }
table.ptbl { width: 100%; border-collapse: collapse; background: var(--card); border: 1px solid var(--border); }
table.ptbl thead th {
  background: var(--card2); padding: 12px 18px;
  font-size: 0.65rem; font-weight: 700; letter-spacing: 0.1em;
  text-transform: uppercase; color: var(--muted);
  border-bottom: 1px solid var(--border); text-align: left;
  white-space: nowrap;
}
table.ptbl thead th:not(:first-child) { text-align: right; }
table.ptbl tbody tr { border-bottom: 1px solid var(--border); transition: background 0.15s; }
table.ptbl tbody tr:last-child { border-bottom: none; }
table.ptbl tbody tr:hover { background: rgba(201,168,76,0.03); }
table.ptbl td { padding: 15px 18px; font-size: 0.88rem; }
table.ptbl td:first-child { font-weight: 600; display: flex; align-items: center; gap: 10px; }
table.ptbl td:not(:first-child) { text-align: right; }
.pdot { width: 7px; height: 7px; border-radius: 50%; flex-shrink: 0; }
.honey-dot { background: #C9A84C; }
.capp-dot { background: linear-gradient(135deg,#6B3F1E,#A0784A); }
.blend-dot { background: linear-gradient(135deg,#2D4228,#4A6741); }
.tc { color: var(--text); }
.tp { color: var(--muted); }
.tg { color: var(--gold); font-weight: 700; }

.tbl-note {
  display: flex; align-items: flex-start; gap: 8px;
  background: var(--gold-bg); border: 1px solid var(--gold-bdr);
  padding: 10px 14px; border-radius: 3px; font-size: 0.78rem;
  color: var(--muted); margin-top: 12px; line-height: 1.55;
}

.discount-band {
  display: grid; grid-template-columns: repeat(5,1fr); gap: 0;
  border: 1px solid var(--border); border-radius: 3px; margin-top: 14px;
  overflow: hidden;
}
.discount-item { padding: 10px 8px; text-align: center; border-right: 1px solid var(--border); }
.discount-item:last-child { border-right: none; }
.discount-item .di-lvl { font-size: 0.65rem; color: var(--muted); text-transform: uppercase; letter-spacing: 0.05em; }
.discount-item .di-val { font-size: 0.8rem; font-weight: 700; color: var(--green); margin-top: 2px; }
.discount-item .di-base { font-size: 0.63rem; color: var(--dim); margin-top: 1px; }

@media(max-width:700px){
  .level-nav { flex-wrap: wrap; }
  .lvl-btn { min-width: calc(50% - 1px); border-radius: 0; }
  .lvl-btn:first-child, .lvl-btn:last-child { border-radius: 0; }
  .discount-band { display: none; }
}

/* ═══════════════════════════════════════════════════════════
   PAGAMENTO
   ═══════════════════════════════════════════════════════════ */
.pay-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 18px; }
.pay-card {
  background: var(--card); border: 1px solid var(--border); border-radius: 4px;
  overflow: hidden; display: flex; flex-direction: column;
  transition: border-color 0.2s;
}
.pay-card:hover { border-color: rgba(201,168,76,0.3); }
.pay-card-head { padding: 24px 22px 18px; }
.pay-badge { display: flex; justify-content: flex-end; margin-bottom: 14px; }
.pay-icon-wrap {
  width: 44px; height: 44px; background: var(--card2);
  border: 1px solid var(--border); border-radius: 3px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 14px;
}
.pay-icon-wrap svg { width: 20px; height: 20px; fill: var(--gold); }
.pay-name { font-family: 'DM Serif Display', serif; font-size: 1.2rem; margin-bottom: 6px; }
.pay-desc { font-size: 0.82rem; color: var(--muted); line-height: 1.6; }
.pay-body { padding: 0 22px 22px; border-top: 1px solid var(--border); margin-top: 14px; padding-top: 16px; flex: 1; }
.pay-highlight {
  background: var(--gold-bg); border: 1px solid var(--gold-bdr);
  border-radius: 3px; padding: 12px 14px; margin-bottom: 14px;
}
.pay-highlight .ph-label { font-size: 0.65rem; text-transform: uppercase; letter-spacing: 0.09em; color: var(--muted); margin-bottom: 3px; }
.pay-highlight .ph-val { font-family: 'DM Serif Display', serif; font-size: 1.3rem; color: var(--gold); }
.pay-list { list-style: none; }
.pay-list li { display: flex; align-items: flex-start; gap: 8px; font-size: 0.8rem; color: var(--muted); padding: 6px 0; border-bottom: 1px solid var(--border); line-height: 1.5; }
.pay-list li:last-child { border-bottom: none; }
.pay-list .ok { color: var(--green); font-weight: 700; flex-shrink: 0; margin-top: 0; }
.pay-list .warn { color: var(--gold); font-weight: 700; flex-shrink: 0; }
.nf-states { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; margin-bottom: 14px; }
.nf-state { background: var(--card2); border: 1px solid var(--border); border-radius: 3px; padding: 10px 12px; }
.nf-state .ns-pct { font-size: 1rem; font-weight: 700; margin-bottom: 4px; }
.nf-state .ns-pct.g { color: var(--green); }
.nf-state .ns-pct.a { color: #D4A017; }
.nf-state .ns-list { font-size: 0.7rem; color: var(--muted); line-height: 1.5; }

.pay-locked { opacity: 0.75; }
.pay-locked .pay-body-inner { position: relative; }
.locked-overlay {
  position: relative; text-align: center;
  padding: 16px 12px; background: rgba(6,6,6,0.8);
  border: 1px solid var(--gold-bdr); border-radius: 3px; backdrop-filter: blur(4px);
}
.locked-overlay .lo-title { font-size: 0.72rem; font-weight: 700; color: var(--gold); text-transform: uppercase; letter-spacing: 0.1em; margin-bottom: 6px; }
.locked-overlay .lo-text { font-size: 0.78rem; color: var(--muted); margin-bottom: 12px; line-height: 1.5; }

@media(max-width:900px){ .pay-grid { grid-template-columns: 1fr; } }

/* ═══════════════════════════════════════════════════════════
   BENEFÍCIOS (Kit PDV + Vídeo MD)
   ═══════════════════════════════════════════════════════════ */
.beneficios-layout { display: grid; grid-template-columns: 1.1fr 1fr; gap: 48px; align-items: start; }
.video-md-card {
  background: linear-gradient(140deg, rgba(201,168,76,0.09) 0%, var(--card) 55%);
  border: 1px solid var(--gold-bdr); border-radius: 4px; overflow: hidden;
}
.video-md-head {
  padding: 28px 28px 20px;
  border-bottom: 1px solid var(--gold-bdr);
  background: rgba(201,168,76,0.04);
}
.video-md-kicker {
  font-size: 0.65rem; font-weight: 700; text-transform: uppercase;
  letter-spacing: 0.14em; color: var(--gold); margin-bottom: 10px;
}
.video-md-title {
  font-family: 'DM Serif Display', serif; font-size: 1.6rem; line-height: 1.2; margin-bottom: 8px;
}
.video-md-sub { font-size: 0.85rem; color: var(--muted); line-height: 1.65; }
.video-md-body { padding: 20px 28px 28px; }
.video-md-condition {
  display: flex; align-items: center; gap: 12px;
  background: var(--gold-bg); border: 1px solid var(--gold-bdr);
  border-radius: 3px; padding: 14px 16px; margin-bottom: 18px;
}
.vmc-num {
  font-family: 'DM Serif Display', serif; font-size: 2.2rem; color: var(--gold);
  line-height: 1; flex-shrink: 0;
}
.vmc-text .vt { font-size: 0.82rem; font-weight: 700; color: var(--text); }
.vmc-text .vs { font-size: 0.74rem; color: var(--muted); }
.video-md-list { list-style: none; }
.video-md-list li { display: flex; gap: 8px; font-size: 0.82rem; color: var(--muted); padding: 8px 0; border-bottom: 1px solid var(--border); line-height: 1.5; }
.video-md-list li:last-child { border-bottom: none; }
.video-md-list .vi { color: var(--gold); flex-shrink: 0; }

.kit-pdv h3 { font-family: 'DM Serif Display', serif; font-size: 1.3rem; margin-bottom: 6px; }
.kit-pdv .kp-sub { font-size: 0.84rem; color: var(--muted); margin-bottom: 20px; line-height: 1.6; }
.kit-grid { display: flex; flex-direction: column; gap: 8px; }
.kit-item {
  display: flex; align-items: center; gap: 14px;
  background: var(--card); border: 1px solid var(--border);
  border-radius: 3px; padding: 14px 16px; transition: border-color 0.2s;
}
.kit-item:hover { border-color: var(--gold-bdr); }
.kit-vol {
  font-family: 'DM Serif Display', serif; font-size: 1.15rem; color: var(--gold);
  min-width: 48px; text-align: right; flex-shrink: 0;
}
.kit-content .kc-title { font-size: 0.8rem; font-weight: 700; color: var(--text); margin-bottom: 2px; }
.kit-content .kc-items { font-size: 0.72rem; color: var(--muted); line-height: 1.5; }

.min-order-box {
  margin-top: 16px; background: var(--card2); border: 1px solid var(--border);
  border-radius: 3px; padding: 16px 18px;
  display: flex; align-items: center; gap: 14px;
}
.mob-icon {
  width: 40px; height: 40px; background: var(--gold-bg); border: 1px solid var(--gold-bdr);
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.mob-icon svg { width: 18px; height: 18px; fill: var(--gold); }
.mob-text .mt { font-size: 0.82rem; font-weight: 700; color: var(--text); }
.mob-text .ms { font-size: 0.74rem; color: var(--muted); }

@media(max-width:900px){ .beneficios-layout { grid-template-columns: 1fr; } }

/* ═══════════════════════════════════════════════════════════
   GARANTIA DE GIRO
   ═══════════════════════════════════════════════════════════ */
.garantia-layout { display: grid; grid-template-columns: 1.1fr 1fr; gap: 48px; align-items: start; }
.garantia-intro .gi-headline {
  font-family: 'DM Serif Display', serif;
  font-size: clamp(1.4rem, 2.4vw, 1.9rem); line-height: 1.3; margin-bottom: 14px;
}
.garantia-intro .gi-headline em { font-style: italic; color: var(--gold); }
.garantia-intro .gi-text { font-size: 0.88rem; color: var(--muted); line-height: 1.75; margin-bottom: 24px; }

.garantia-steps { display: flex; flex-direction: column; gap: 0; margin-bottom: 24px; }
.gstep {
  display: flex; gap: 16px; align-items: flex-start;
  padding: 16px 0; border-bottom: 1px solid var(--border);
}
.gstep:last-child { border-bottom: none; }
.gstep-num {
  width: 30px; height: 30px; background: var(--gold-bg); border: 1px solid var(--gold-bdr);
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  font-size: 0.75rem; font-weight: 700; color: var(--gold); flex-shrink: 0;
}
.gstep-content .gs-title { font-size: 0.85rem; font-weight: 700; color: var(--text); margin-bottom: 3px; }
.gstep-content .gs-desc { font-size: 0.8rem; color: var(--muted); line-height: 1.55; }

.garantia-card {
  background: linear-gradient(140deg, rgba(201,168,76,0.08) 0%, var(--card) 60%);
  border: 1px solid var(--gold-bdr); border-radius: 4px; padding: 32px;
}
.gc-icon {
  width: 68px; height: 68px; border-radius: 50%;
  background: var(--gold-bg); border: 2px solid var(--gold-bdr);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 18px;
}
.gc-icon svg { width: 28px; height: 28px; fill: var(--gold); }
.gc-title { font-family: 'DM Serif Display', serif; font-size: 1.3rem; margin-bottom: 8px; }
.gc-desc { font-size: 0.84rem; color: var(--muted); line-height: 1.65; margin-bottom: 20px; }
.gc-terms { list-style: none; }
.gc-terms li {
  display: flex; align-items: flex-start; gap: 8px;
  font-size: 0.8rem; color: var(--muted); padding: 7px 0;
  border-bottom: 1px solid var(--border); line-height: 1.5;
}
.gc-terms li:last-child { border-bottom: none; }
.gc-terms .ok { color: var(--green); font-weight: 700; }
.gc-terms .warn { color: var(--gold); font-weight: 700; }
.gc-quote {
  margin-top: 20px; padding: 14px 16px;
  background: rgba(201,168,76,0.06); border-left: 2px solid var(--gold);
  font-family: 'DM Serif Display', serif; font-size: 0.92rem;
  color: var(--text); line-height: 1.55; font-style: italic;
}

@media(max-width:900px){ .garantia-layout { grid-template-columns: 1fr; } }

/* ═══════════════════════════════════════════════════════════
   CALCULADORA — PEDIDO MISTO
   ═══════════════════════════════════════════════════════════ */
.calc-layout { display: grid; grid-template-columns: 1.1fr 1fr; gap: 36px; align-items: start; }
.calc-form-box {
  background: var(--card); border: 1px solid var(--border); border-radius: 4px; overflow: hidden;
}
.calc-form-head {
  padding: 22px 24px 18px; border-bottom: 1px solid var(--border);
  background: var(--card2);
}
.calc-form-head h3 { font-family: 'DM Serif Display', serif; font-size: 1.2rem; margin-bottom: 4px; }
.calc-form-head p { font-size: 0.78rem; color: var(--muted); }
.calc-form-body { padding: 20px 24px 24px; }

.field { margin-bottom: 16px; }
.field label {
  display: block; font-size: 0.68rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.09em; color: var(--muted); margin-bottom: 7px;
}
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
select.inp, input.inp {
  width: 100%; background: var(--card2); border: 1px solid var(--border);
  color: var(--text); padding: 10px 13px; font-size: 0.88rem;
  font-family: 'Inter', sans-serif; border-radius: 2px; outline: none;
  appearance: none; transition: border-color 0.2s;
}
select.inp:focus, input.inp:focus { border-color: var(--gold-bdr); }
select.inp option { background: var(--card2); }
.radio-group { display: grid; grid-template-columns: repeat(3,1fr); gap: 7px; }
.ropt input { position: absolute; opacity: 0; width: 0; height: 0; }
.ropt { position: relative; }
.ropt label {
  display: block; text-align: center; padding: 9px 4px;
  background: var(--card2); border: 1px solid var(--border);
  border-radius: 2px; cursor: pointer; font-size: 0.75rem; font-weight: 700;
  color: var(--muted); transition: all 0.2s; line-height: 1.35;
}
.ropt input:checked + label { background: var(--gold); color: #000; border-color: var(--gold); }
.ropt label:hover { border-color: var(--gold-bdr); color: var(--text); }

.add-btn { margin-top: 4px; }

/* Cart table */
.cart-section { margin-top: 20px; }
.cart-empty {
  text-align: center; padding: 24px 16px;
  font-size: 0.82rem; color: var(--muted);
  background: var(--card2); border: 1px dashed var(--border); border-radius: 3px;
}
.cart-table-wrap { overflow-x: auto; }
table.cart-tbl {
  width: 100%; border-collapse: collapse;
  background: var(--card2); border: 1px solid var(--border); border-radius: 3px;
  font-size: 0.8rem;
}
table.cart-tbl thead th {
  padding: 8px 12px; text-align: left;
  font-size: 0.63rem; font-weight: 700; letter-spacing: 0.08em;
  text-transform: uppercase; color: var(--muted);
  border-bottom: 1px solid var(--border);
}
table.cart-tbl thead th:last-child { text-align: right; }
table.cart-tbl tbody td { padding: 9px 12px; border-bottom: 1px solid var(--border); color: var(--text); }
table.cart-tbl tbody tr:last-child td { border-bottom: none; }
table.cart-tbl td:last-child { text-align: right; }
.cart-remove {
  background: none; border: none; color: var(--muted);
  cursor: pointer; font-size: 0.9rem; padding: 0 2px;
  transition: color 0.2s; line-height: 1;
}
.cart-remove:hover { color: var(--red); }
.cart-subtotal {
  display: flex; justify-content: space-between; align-items: center;
  padding: 8px 12px; background: var(--card); border: 1px solid var(--border);
  border-top: none; font-size: 0.8rem; color: var(--muted);
}
.cart-subtotal span:last-child { color: var(--gold); font-weight: 700; }

/* Result panel */
.calc-result {
  background: var(--card); border: 1px solid var(--border); border-radius: 4px;
  overflow: hidden; position: sticky; top: 72px;
}
.cr-top {
  background: linear-gradient(135deg, rgba(201,168,76,0.1) 0%, var(--card2) 100%);
  padding: 22px 22px 18px; border-bottom: 1px solid var(--border);
}
.cr-top-label { font-size: 0.65rem; text-transform: uppercase; letter-spacing: 0.1em; color: var(--muted); margin-bottom: 4px; }
.cr-top-title { font-family: 'DM Serif Display', serif; font-size: 1.15rem; min-height: 26px; }

.cr-empty { padding: 32px 22px; text-align: center; font-size: 0.82rem; color: var(--muted); }
.cr-rows { }
.cr-row {
  display: flex; justify-content: space-between; align-items: center;
  padding: 9px 22px; border-bottom: 1px solid var(--border); font-size: 0.82rem;
}
.cr-row:last-of-type { border-bottom: none; }
.cr-row .rk { color: var(--muted); }
.cr-row .rv { font-weight: 600; }
.cr-row .rv.gold { color: var(--gold); }
.cr-row .rv.green { color: var(--green); }

.nf-toggle-wrap { padding: 12px 22px; border-bottom: 1px solid var(--border); background: var(--card2); }
.nf-toggle-label { font-size: 0.68rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.09em; color: var(--muted); margin-bottom: 8px; }
.nf-opts { display: grid; grid-template-columns: 1fr 1fr; gap: 7px; }
.nf-opt input { position: absolute; opacity: 0; width: 0; height: 0; }
.nf-opt { position: relative; }
.nf-opt label {
  display: block; text-align: center; padding: 8px 6px;
  background: var(--card); border: 1px solid var(--border);
  border-radius: 2px; cursor: pointer; font-size: 0.73rem;
  font-weight: 600; color: var(--muted); transition: all 0.2s; line-height: 1.3;
}
.nf-opt input:checked + label { border-color: var(--gold-bdr); background: var(--gold-bg); color: var(--gold); }
.nf-state-row { padding: 8px 22px 0; }
.nf-state-row select.inp { font-size: 0.82rem; }

.cr-total-block { background: var(--gold); padding: 18px 22px; }
.cr-total-label { font-size: 0.65rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; color: rgba(0,0,0,0.55); }
.cr-total-val { font-family: 'DM Serif Display', serif; font-size: 2rem; color: #000; line-height: 1; margin-top: 2px; }
.cr-total-note { font-size: 0.7rem; color: rgba(0,0,0,0.55); margin-top: 4px; }

.cr-frete-warn {
  padding: 10px 22px; background: rgba(180,100,0,0.08);
  border-top: 1px solid rgba(180,100,0,0.25);
  font-size: 0.75rem; color: #D4A017; line-height: 1.5; text-align: center;
}
.cr-bonus {
  padding: 9px 22px; font-size: 0.76rem; border-top: 1px solid var(--border);
}
.cr-bonus.gold-bg { background: rgba(201,168,76,0.06); color: var(--gold); }
.cr-bonus.green-bg { background: var(--green-bg); color: var(--green); }

.cr-cta { padding: 14px 22px; border-top: 1px solid var(--border); }

@media(max-width:960px){
  .calc-layout { grid-template-columns: 1fr; }
  .calc-result { position: static; }
}

/* ═══════════════════════════════════════════════════════════
   FAQ
   ═══════════════════════════════════════════════════════════ */
.faq-list { display: flex; flex-direction: column; gap: 0; border: 1px solid var(--border); border-radius: 4px; overflow: hidden; }
.faq-item { border-bottom: 1px solid var(--border); }
.faq-item:last-child { border-bottom: none; }
.faq-question {
  width: 100%; display: flex; justify-content: space-between; align-items: center;
  gap: 16px; padding: 18px 22px; background: none; border: none;
  cursor: pointer; text-align: left; font-size: 0.88rem; font-weight: 600;
  color: var(--text); transition: background 0.2s; font-family: 'Inter', sans-serif;
}
.faq-question:hover { background: rgba(255,255,255,0.02); }
.faq-question.open { background: rgba(201,168,76,0.04); color: var(--gold); }
.faq-chevron {
  width: 18px; height: 18px; flex-shrink: 0; transition: transform 0.25s;
  color: var(--muted);
}
.faq-question.open .faq-chevron { transform: rotate(180deg); color: var(--gold); }
.faq-answer {
  display: none; padding: 0 22px 18px;
  font-size: 0.85rem; color: var(--muted); line-height: 1.75;
  border-top: 1px solid var(--border); padding-top: 14px;
}
.faq-answer.open { display: block; animation: fadeUp 0.2s ease; }
.faq-answer strong { color: var(--text); }
.faq-answer a { color: var(--gold); text-decoration: none; }
.faq-answer a:hover { text-decoration: underline; }

/* ═══════════════════════════════════════════════════════════
   CTA FINAL
   ═══════════════════════════════════════════════════════════ */
#cta-final {
  background: var(--dark); padding: 100px 0; text-align: center;
  position: relative; overflow: hidden;
}
.cta-bg {
  position: absolute; inset: 0; pointer-events: none;
  background: radial-gradient(ellipse 60% 70% at 50% 100%, rgba(201,168,76,0.07) 0%, transparent 65%);
}
.cta-inner { position: relative; z-index: 1; max-width: 640px; margin: 0 auto; padding: 0 28px; }
.cta-kicker {
  display: inline-block; font-size: 0.65rem; font-weight: 700;
  letter-spacing: 0.16em; text-transform: uppercase; color: var(--gold);
  margin-bottom: 18px;
}
.cta-title {
  font-family: 'DM Serif Display', serif;
  font-size: clamp(2rem, 3.8vw, 3rem); line-height: 1.15; margin-bottom: 16px;
}
.cta-title em { font-style: italic; color: var(--gold); }
.cta-sub { font-size: 0.92rem; color: var(--muted); line-height: 1.7; margin-bottom: 38px; }
.cta-actions { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }
.cta-note { margin-top: 24px; font-size: 0.74rem; color: var(--dim); line-height: 1.7; }
.cta-note strong { color: var(--muted); }

.trust-strip {
  display: flex; justify-content: center; gap: 32px; flex-wrap: wrap;
  margin-top: 44px; padding-top: 36px; border-top: 1px solid var(--border);
}
.ts-item {
  display: flex; align-items: center; gap: 8px;
  font-size: 0.76rem; color: var(--muted);
}
.ts-item svg { width: 14px; height: 14px; fill: var(--green); flex-shrink: 0; }

/* ═══════════════════════════════════════════════════════════
   FOOTER
   ═══════════════════════════════════════════════════════════ */
footer {
  background: var(--black); border-top: 1px solid var(--border);
  padding: 48px 0 32px;
}
.footer-grid {
  display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 32px;
  margin-bottom: 36px;
}
.footer-brand img { height: 28px; opacity: 0.8; margin-bottom: 14px; display: block; }
.footer-brand p { font-size: 0.78rem; color: var(--muted); line-height: 1.7; max-width: 260px; }
.footer-brand .fc-cnpj {
  display: inline-block; margin-top: 12px; font-size: 0.68rem;
  color: var(--dim); letter-spacing: 0.04em;
}
.footer-col h4 {
  font-size: 0.68rem; font-weight: 700; letter-spacing: 0.12em;
  text-transform: uppercase; color: var(--muted); margin-bottom: 14px;
}
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 8px; }
.footer-col ul li a { font-size: 0.8rem; color: var(--dim); text-decoration: none; transition: color 0.2s; }
.footer-col ul li a:hover { color: var(--gold); }
.footer-col .fc-contact { font-size: 0.8rem; color: var(--dim); line-height: 1.75; }
.footer-col .fc-contact a { color: var(--gold); text-decoration: none; }

.footer-bottom {
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 12px;
  padding-top: 24px; border-top: 1px solid var(--border);
}
.fb-copy { font-size: 0.72rem; color: var(--dim); }
.fb-legal { font-size: 0.7rem; color: var(--dim); text-align: right; line-height: 1.6; }

@media(max-width:900px){
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 28px; }
  .footer-brand { grid-column: span 2; }
}
@media(max-width:550px){
  .footer-grid { grid-template-columns: 1fr; }
  .footer-brand { grid-column: span 1; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .fb-legal { text-align: center; }
}

/* ═══════════════════════════════════════════
   CADASTRO REVENDEDOR
   ═══════════════════════════════════════════ */
#cadastro {
  padding: 96px 0 80px;
  background: linear-gradient(180deg, var(--bg) 0%, #18130d 100%);
  position: relative;
}
.form-revenda-wrap {
  max-width: 720px;
  margin: 40px auto 0;
  background: rgba(255,255,255,.03);
  border: 1px solid rgba(212,175,55,.18);
  border-radius: 20px;
  padding: 36px 32px;
  backdrop-filter: blur(8px);
}
#form-revenda .form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px 16px;
  margin-bottom: 20px;
}
#form-revenda .form-field { display: flex; flex-direction: column; gap: 6px; }
#form-revenda .form-field.full { grid-column: 1 / -1; }
#form-revenda label {
  font-size: .68rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: var(--muted);
}
#form-revenda label .req { color: var(--gold); }
#form-revenda input,
#form-revenda select,
#form-revenda textarea {
  background: rgba(0,0,0,.35);
  border: 1px solid rgba(212,175,55,.22);
  border-radius: 10px;
  padding: 12px 14px;
  color: #fff;
  font-family: inherit;
  font-size: .92rem;
  outline: none;
  transition: border-color .2s, background .2s;
}
#form-revenda input:focus,
#form-revenda select:focus,
#form-revenda textarea:focus {
  border-color: var(--gold);
  background: rgba(0,0,0,.55);
}
#form-revenda input.invalid,
#form-revenda select.invalid {
  border-color: #d14;
}
#form-revenda textarea { resize: vertical; min-height: 80px; }
.form-consent {
  font-size: .72rem;
  color: var(--muted);
  line-height: 1.55;
  padding: 14px 16px;
  background: rgba(0,0,0,.25);
  border-radius: 10px;
  margin: 8px 0 18px;
  border-left: 2px solid rgba(212,175,55,.4);
}
.form-error {
  font-size: .82rem;
  color: #ff6b6b;
  background: rgba(255,107,107,.08);
  border: 1px solid rgba(255,107,107,.3);
  border-radius: 8px;
  padding: 10px 14px;
  margin-bottom: 14px;
}
#form-submit { font-size: 1rem; padding: 16px 24px; }
#form-submit[disabled] { opacity: .65; cursor: not-allowed; }
#form-submit .btn-loading { display: none; }
#form-submit.loading .btn-label { display: none; }
#form-submit.loading .btn-loading { display: inline; }
.form-success {
  text-align: center;
  padding: 40px 24px;
}
.form-success .fs-icon {
  width: 64px; height: 64px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold) 0%, #b8941f 100%);
  color: #1a1208;
  font-size: 32px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}
.form-success h3 {
  font-family: 'DM Serif Display', serif;
  font-size: 1.8rem;
  margin-bottom: 12px;
}
.form-success p {
  color: var(--muted);
  margin-bottom: 24px;
  line-height: 1.6;
}
@media(max-width:640px){
  #form-revenda .form-grid { grid-template-columns: 1fr; }
  .form-revenda-wrap { padding: 24px 18px; }
}
