/* ─── TOKENS ──────────────────────────────────────────── */
:root {
  --wood:       #4A2C0A;
  --wood-deep:  #2A1506;
  --wood-mid:   #6B3E18;
  --cream:      #F5ECD7;
  --cream-dark: #EBE0C8;
  --gold:       #C8973F;
  --gold-light: #E8C06A;
  --gold-pale:  #F5E4C0;
  --green-cta:  #1B5E20;
  --green-cta-h:#145218;
  --green-ok:   #1A6B3A;
  --bordeaux:   #7A1F1F;
  --text:       #1C0A04;
  --muted:      #6B5030;
  --border:     #D9C8A8;
  --radius:     14px;
}

/* ─── RESET ───────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', sans-serif;
  background: var(--cream);
  color: var(--text);
  -webkit-font-smoothing: antialiased;
}
.hidden { display: none !important; }

/* ─── ANIMATIONS ──────────────────────────────────────── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(22px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes shimmer-green {
  0%   { background-position: -200% center; }
  100% { background-position:  200% center; }
}
@keyframes pulse-green {
  0%, 100% { box-shadow: 0 8px 28px rgba(27,94,32,.45); }
  50%       { box-shadow: 0 8px 44px rgba(27,94,32,.80); }
}
@keyframes blink {
  0%, 100% { opacity: 1; }
  50%       { opacity: .3; }
}
@keyframes pop-in {
  0%   { opacity: 0; transform: scale(.8) translateY(16px); }
  100% { opacity: 1; transform: scale(1) translateY(0); }
}

.fade-up            { animation: fadeUp .7s ease both; }
.delay-1            { animation-delay: .15s; }
.delay-2            { animation-delay: .30s; }
.delay-3            { animation-delay: .45s; }
.delay-4            { animation-delay: .60s; }

/* ─── LAYOUT ──────────────────────────────────────────── */
.wrap {
  max-width: 560px;
  margin: 0 auto;
  padding-left: 20px;
  padding-right: 20px;
}

/* ─── SUCCESS OVERLAY ─────────────────────────────────── */
#bloco-sucesso {
  position: fixed;
  inset: 0;
  z-index: 1000;
  background: var(--cream);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow-y: auto;
  padding: 40px 20px;
}
.sucesso-inner {
  text-align: center;
  max-width: 440px;
  animation: pop-in .5s cubic-bezier(.22,.8,.4,1) both;
}
.sucesso-icon {
  font-size: 72px;
  display: block;
  margin-bottom: 20px;
  filter: drop-shadow(0 4px 16px rgba(27,94,32,.3));
}
.sucesso-titulo {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(28px, 7vw, 38px);
  font-weight: 700;
  color: var(--wood);
  margin-bottom: 16px;
  line-height: 1.2;
}
.sucesso-texto {
  font-size: 16px;
  color: var(--muted);
  line-height: 1.7;
  margin-bottom: 8px;
}
.sucesso-email {
  color: var(--wood);
  font-weight: 700;
  display: block;
  margin-top: 4px;
}
.sucesso-sub {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.6;
  margin-bottom: 28px;
}
.sucesso-wa {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--green-cta);
  color: #fff;
  font-weight: 700;
  font-size: 15px;
  padding: 14px 28px;
  border-radius: 10px;
  text-decoration: none;
  transition: background .2s, transform .15s;
}
.sucesso-wa:hover { background: var(--green-cta-h); transform: translateY(-2px); }

/* ─── STRIP ───────────────────────────────────────────── */
.strip {
  background: var(--green-ok);
  color: #fff;
  text-align: center;
  padding: 11px 16px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: .4px;
}

/* ─── HERO ────────────────────────────────────────────── */
.hero {
  background: linear-gradient(160deg, var(--wood) 0%, var(--wood-deep) 100%);
  position: relative;
  overflow: hidden;
  padding: 44px 20px 48px;
  text-align: center;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='300' height='300'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.75' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='300' height='300' filter='url(%23n)' opacity='.07'/%3E%3C/svg%3E");
  pointer-events: none;
  opacity: .55;
}
.hero::after {
  content: '';
  position: absolute;
  top: -40%; left: 50%;
  transform: translateX(-50%);
  width: 680px; height: 680px;
  background: radial-gradient(ellipse, rgba(200,151,63,.15) 0%, transparent 70%);
  pointer-events: none;
}
.hero-inner { position: relative; z-index: 1; }

.logo {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: rgba(245,228,192,.65);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: .5px;
  margin-bottom: 20px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: rgba(200,151,63,.18);
  border: 1px solid rgba(200,151,63,.35);
  color: var(--gold-light);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.8px;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: 40px;
  margin-bottom: 22px;
}

.hero h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(38px, 10vw, 56px);
  font-weight: 700;
  color: var(--gold-light);
  line-height: 1.1;
  margin-bottom: 18px;
  letter-spacing: -.5px;
}
.hero h1 em { font-style: italic; color: #fff; }

.hero-sub {
  font-size: clamp(15px, 4vw, 17px);
  color: #C4AD88;
  line-height: 1.7;
  max-width: 420px;
  margin: 0 auto 24px;
}
.hero-sub strong { color: #fff; }

.ornament { display: flex; align-items: center; gap: 14px; margin: 0 auto; max-width: 260px; }
.ornament-line {
  flex: 1; height: 1px;
  background: linear-gradient(to right, transparent, rgba(200,151,63,.5));
}
.ornament-line.r { background: linear-gradient(to left, transparent, rgba(200,151,63,.5)); }
.ornament-icon { color: var(--gold); font-size: 18px; }

/* ─── PRODUCT CARD ────────────────────────────────────── */
.product-section {
  background: var(--cream);
  padding: 44px 20px 36px;
}
.product-card {
  background: linear-gradient(150deg, #3A1E08 0%, var(--wood-deep) 60%, #3C2010 100%);
  border-radius: var(--radius);
  border: 1px solid rgba(200,151,63,.25);
  padding: 28px 24px 24px;
  position: relative;
  box-shadow: 0 2px 0 rgba(200,151,63,.12) inset, 0 24px 64px rgba(0,0,0,.30);
  max-width: 400px;
  margin: 0 auto 28px;
}
.product-card-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 18px;
}
.product-card-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 20px;
  font-weight: 600;
  color: var(--gold-light);
  line-height: 1.2;
  margin-bottom: 4px;
}
.product-card-label { font-size: 11px; color: #8A7060; letter-spacing: .5px; }

.price-tag {
  background: var(--bordeaux);
  border-radius: 8px;
  padding: 8px 12px;
  text-align: center;
  flex-shrink: 0;
  margin-left: 12px;
}
.price-tag-was { font-size: 10px; color: #C48080; text-decoration: line-through; display: block; margin-bottom: 2px; }
.price-tag-free { font-size: 13px; font-weight: 700; color: #fff; letter-spacing: .5px; }

.card-sep {
  height: 1px;
  background: linear-gradient(to right, transparent, rgba(200,151,63,.3), transparent);
  margin: 0 0 16px;
}

.track-list { list-style: none; }
.track-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 7px 0;
  border-bottom: 1px solid rgba(255,255,255,.05);
  color: #C4B090;
  font-size: 13px;
}
.track-item:last-child { border-bottom: none; }
.track-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--gold); flex-shrink: 0; }

.download-pill {
  margin-top: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: rgba(200,151,63,.12);
  border: 1px solid rgba(200,151,63,.3);
  border-radius: 40px;
  padding: 9px 18px;
  color: var(--gold-light);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .5px;
}

.value-note {
  text-align: center;
  font-size: 14px;
  color: var(--muted);
  line-height: 1.6;
  max-width: 400px;
  margin: 0 auto;
}
.value-note strong { color: var(--text); }

/* ─── BENEFITS ────────────────────────────────────────── */
.benefits-section {
  background: var(--cream-dark);
  padding: 36px 20px;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.section-eyebrow {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--gold);
  text-align: center;
  margin-bottom: 22px;
}
.benefit-grid { display: flex; flex-direction: column; gap: 4px; max-width: 440px; margin: 0 auto; }
.benefit-row {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 13px 16px;
  background: var(--cream);
  border-radius: 10px;
  border: 1px solid var(--border);
}
.benefit-icon {
  width: 36px; height: 36px;
  border-radius: 8px;
  background: var(--wood);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 17px;
  flex-shrink: 0;
}
.benefit-text { font-size: clamp(14px, 3.8vw, 16px); line-height: 1.5; color: var(--text); padding-top: 6px; }

/* ─── URGENCY ─────────────────────────────────────────── */
.urgency-section {
  background: linear-gradient(160deg, var(--wood) 0%, var(--wood-deep) 100%);
  padding: 36px 20px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.urgency-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='300' height='300'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.75' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='300' height='300' filter='url(%23n)' opacity='.07'/%3E%3C/svg%3E");
  pointer-events: none;
  opacity: .4;
}
.urgency-inner { position: relative; z-index: 1; }
.urgency-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #C4A060;
  margin-bottom: 20px;
}
.urgency-blink { animation: blink 1.4s ease-in-out infinite; }
.urgency-text {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(20px, 5vw, 26px);
  font-weight: 600;
  color: #F5E4C0;
  margin-bottom: 24px;
  line-height: 1.3;
}
.countdown {
  display: inline-flex;
  align-items: stretch;
  background: rgba(0,0,0,.35);
  border: 1px solid rgba(200,151,63,.25);
  border-radius: 12px;
  overflow: hidden;
}
.cd-unit { padding: 18px 32px; text-align: center; min-width: 90px; }
.cd-unit + .cd-unit { border-left: 1px solid rgba(200,151,63,.15); }
.cd-num {
  display: block;
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(44px, 12vw, 64px);
  font-weight: 700;
  color: var(--gold-light);
  line-height: 1;
  letter-spacing: -2px;
}
.cd-lbl {
  display: block;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #8A7060;
  margin-top: 4px;
}

/* ─── FORM SECTION ────────────────────────────────────── */
.form-section {
  background: var(--cream);
  padding: 48px 20px 52px;
}
.form-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 36px 28px 32px;
  box-shadow: 0 1px 0 rgba(255,255,255,.8) inset, 0 16px 48px rgba(74,44,10,.08);
  max-width: 460px;
  margin: 0 auto;
}
.form-headline {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(24px, 6vw, 32px);
  font-weight: 700;
  text-align: center;
  line-height: 1.2;
  margin-bottom: 8px;
  color: var(--text);
}
.form-headline span { color: var(--gold); }
.form-sub {
  text-align: center;
  font-size: 14px;
  color: var(--muted);
  margin-bottom: 28px;
  line-height: 1.5;
}
.form-rule {
  height: 2px;
  background: linear-gradient(to right, transparent, var(--gold), transparent);
  margin: 0 auto 28px;
  width: 80px;
}

/* ─── FIELDS ──────────────────────────────────────────── */
.field-group { margin-bottom: 16px; }

.field-label {
  display: block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 7px;
}

.field-input {
  width: 100%;
  height: 52px;
  padding: 0 16px;
  font-size: clamp(15px, 4vw, 16px);
  font-family: 'Inter', sans-serif;
  color: var(--text);
  background: var(--cream);
  border: 2px solid var(--border);
  border-radius: 10px;
  outline: none;
  transition: border-color .2s, background .2s, box-shadow .2s;
  -webkit-appearance: none;
  appearance: none;
}
.field-input::placeholder { color: #B0A080; }
.field-input:focus {
  border-color: var(--gold);
  background: #fff;
  box-shadow: 0 0 0 4px rgba(200,151,63,.12);
}
.field-input.field-error {
  border-color: #C62828;
  background: #FFF5F5;
  box-shadow: 0 0 0 3px rgba(198,40,40,.10);
}

/* Select custom arrow */
.field-select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23C8973F' stroke-width='2' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 44px;
  cursor: pointer;
}
.field-select option { background: #fff; color: var(--text); }

/* Error message */
.form-msg-erro {
  background: #FFF0F0;
  border: 1px solid #E8B4B4;
  color: #C62828;
  border-radius: 8px;
  padding: 11px 14px;
  font-size: 14px;
  margin-bottom: 16px;
}

/* ─── CTA BUTTON ──────────────────────────────────────── */
.cta-btn {
  display: block;
  width: 100%;
  height: 58px;
  font-family: 'Inter', sans-serif;
  font-size: clamp(15px, 4vw, 17px);
  font-weight: 800;
  letter-spacing: .5px;
  color: #fff;
  border: none;
  border-radius: 10px;
  cursor: pointer;
  background: linear-gradient(
    120deg,
    #2E7D32 0%,
    var(--green-cta) 35%,
    #256227 50%,
    var(--green-cta) 65%,
    #2E7D32 100%
  );
  background-size: 200% auto;
  animation: shimmer-green 3s linear infinite, pulse-green 2.5s ease-in-out infinite;
  transition: transform .15s, filter .15s;
  margin-top: 4px;
}
.cta-btn:hover  { transform: translateY(-2px); filter: brightness(1.08); }
.cta-btn:active { transform: translateY(0); }
.cta-btn:disabled {
  animation: none;
  opacity: .65;
  cursor: default;
  transform: none;
  filter: none;
  background: #888;
}

/* ─── TRUST / SUPPORT ─────────────────────────────────── */
.trust-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  margin-top: 14px;
  font-size: 12px;
  color: #9A8070;
  text-align: center;
}
.suporte-row {
  text-align: center;
  margin-top: 10px;
  font-size: 13px;
  color: var(--muted);
}
.suporte-row a {
  color: var(--green-cta);
  font-weight: 600;
  text-decoration: none;
}
.suporte-row a:hover { text-decoration: underline; }

/* ─── FOOTER ──────────────────────────────────────────── */
.footer {
  background: var(--wood);
  padding: 20px 16px;
  text-align: center;
  font-size: 12px;
  color: #6B5030;
}
