*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
:root {
  --chocolate: #2C1A0E;
  --caramel: #9B5E28;
  --gold: #C8903F;
  --gold-light: rgba(200,144,63,0.12);
  --cream: #F9F3EA;
  --parchment: #EDE4D3;
  --mocha: #6B3E1F;
  --text: #1E0F05;
  --muted: #7A6355;
  --white: #FDFAF6;
  --border: rgba(44,26,14,0.13);
  --border-md: rgba(44,26,14,0.22);
  --success: #2d7a2d;
  --error: #c0392b;
}
html { scroll-behavior: smooth; }
body { background: var(--cream); color: var(--text); font-family: 'DM Sans', sans-serif; font-weight: 300; min-height: 100vh; overflow-x: hidden; }

/* ── TOAST ── */
.toast {
  position: fixed; bottom: 24px; left: 50%; transform: translateX(-50%) translateY(20px);
  background: var(--chocolate); color: var(--cream);
  padding: 12px 22px; border-radius: 100px; font-size: 0.82rem;
  opacity: 0; pointer-events: none; z-index: 9999;
  transition: opacity 0.3s, transform 0.3s;
  white-space: nowrap;
}
.toast.show { opacity: 1; transform: translateX(-50%) translateY(0); }

/* ── NAV ── */
nav {
  display: flex; align-items: center; justify-content: space-between;
  padding: 1.1rem 3rem;
  border-bottom: 1px solid var(--border);
  position: sticky; top: 0;
  background: rgba(249,243,234,0.95);
  backdrop-filter: blur(14px);
  z-index: 200;
}
.nav-logo { font-family:'Cormorant Garamond',serif; font-size:1.05rem; font-weight:400; letter-spacing:0.12em; color:var(--chocolate); text-transform:uppercase; }
.nav-logo span { color:var(--gold); font-style:italic; }
.nav-pill { font-size:0.65rem; font-weight:400; letter-spacing:0.16em; text-transform:uppercase; color:var(--mocha); border:1px solid rgba(155,94,40,0.3); padding:5px 14px; border-radius:100px; }

/* ── HERO ── */
.hero { display:grid; grid-template-columns:1fr 1fr; min-height:88vh; overflow:hidden; }
.hero-left { padding:5rem 4rem 5rem 3rem; display:flex; flex-direction:column; justify-content:center; }
.hero-eyebrow { font-size:0.63rem; letter-spacing:0.24em; text-transform:uppercase; color:var(--gold); font-weight:400; margin-bottom:1.5rem; display:flex; align-items:center; gap:10px; }
.hero-eyebrow::before { content:''; display:block; width:24px; height:1px; background:var(--gold); }
.hero-title { font-family:'Cormorant Garamond',serif; font-size:clamp(2.8rem,4.8vw,4.2rem); font-weight:300; line-height:1.08; color:var(--chocolate); margin-bottom:1.4rem; }
.hero-title em { font-style:italic; color:var(--caramel); }
.hero-subtitle { font-size:0.92rem; line-height:1.85; color:var(--muted); max-width:400px; margin-bottom:2.5rem; }

.hero-pills { display:flex; flex-wrap:wrap; gap:8px; margin-bottom:2.5rem; }
.hero-pill {
  display:inline-flex; align-items:center; gap:6px;
  background:var(--white); border:1px solid var(--border-md);
  padding:6px 14px; border-radius:100px;
  font-size:0.75rem; color:var(--mocha); font-weight:400;
}
.hero-pill-dot { width:6px; height:6px; border-radius:50%; background:var(--gold); flex-shrink:0; }

.hero-cta { display:inline-flex; align-items:center; gap:10px; background:var(--chocolate); color:var(--cream); text-decoration:none; padding:14px 28px; font-size:0.76rem; letter-spacing:0.14em; text-transform:uppercase; font-weight:400; transition:background 0.25s,transform 0.2s; align-self:flex-start; }
.hero-cta:hover { background:var(--caramel); transform:translateY(-1px); }

.hero-right { background:var(--chocolate); display:flex; align-items:center; justify-content:center; position:relative; overflow:hidden; }
.hero-right::before { content:''; position:absolute; inset:0; background:radial-gradient(ellipse at 30% 60%,rgba(200,144,63,0.16) 0%,transparent 65%); }
.hero-right::after { content:''; position:absolute; bottom:-60px; right:-60px; width:300px; height:300px; border-radius:50%; border:1px solid rgba(200,144,63,0.08); }

.price-card { background:rgba(249,243,234,0.05); border:1px solid rgba(200,144,63,0.3); padding:2.5rem 3rem; text-align:center; position:relative; z-index:1; }
.price-card::after { content:''; position:absolute; inset:7px; border:1px solid rgba(200,144,63,0.1); pointer-events:none; }
.price-value { font-family:'Cormorant Garamond',serif; font-size:3.4rem; font-weight:300; color:var(--cream); line-height:1; margin-bottom:0.25rem; }
.price-label { font-size:0.62rem; letter-spacing:0.2em; text-transform:uppercase; color:var(--gold); margin-bottom:2rem; }
.price-details { display:flex; gap:1.8rem; justify-content:center; }
.price-detail { text-align:center; }
.price-detail-val { font-family:'Cormorant Garamond',serif; font-size:1.5rem; font-weight:300; color:var(--cream); }
.price-detail-lbl { font-size:0.6rem; letter-spacing:0.14em; text-transform:uppercase; color:rgba(249,243,234,0.38); margin-top:2px; }

/* ── SOCIAL PROOF BAR ── */
.proof-bar {
  background: var(--white);
  border-bottom: 1px solid var(--border);
  padding: 1rem 3rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 3rem;
  flex-wrap: wrap;
}
.proof-item { display:flex; align-items:center; gap:8px; font-size:0.78rem; color:var(--muted); }
.proof-item strong { color:var(--chocolate); font-weight:500; font-size:0.9rem; }

/* ── HOW IT WORKS ── */
.how-section { background:var(--chocolate); padding:5rem 3rem; position:relative; overflow:hidden; }
.how-section::before { content:''; position:absolute; top:-100px; right:-100px; width:500px; height:500px; border-radius:50%; background:radial-gradient(circle,rgba(200,144,63,0.07) 0%,transparent 70%); }
.steps-grid { display:grid; grid-template-columns:repeat(4,1fr); gap:2.5rem; position:relative; max-width:1100px; margin:2.5rem auto 0; }
.steps-grid::before { content:''; position:absolute; top:17px; left:calc(12.5% + 17px); right:calc(12.5% + 17px); height:1px; background:rgba(200,144,63,0.18); }
.flow-step-number { width:34px; height:34px; border:1px solid rgba(200,144,63,0.4); border-radius:50%; display:flex; align-items:center; justify-content:center; font-family:'Cormorant Garamond',serif; font-size:0.95rem; color:var(--gold); margin-bottom:1.2rem; background:var(--chocolate); position:relative; z-index:1; }
.flow-step-title { font-family:'Cormorant Garamond',serif; font-size:1rem; color:var(--cream); margin-bottom:0.5rem; }
.flow-step-desc { font-size:0.78rem; line-height:1.7; color:rgba(249,243,234,0.42); }

/* ── SECTION COMMONS ── */
.section-tag { font-size:0.6rem; letter-spacing:0.22em; text-transform:uppercase; color:var(--gold); font-weight:400; margin-bottom:0.6rem; display:flex; align-items:center; gap:8px; }
.section-tag::before { content:''; display:block; width:18px; height:1px; background:var(--gold); }
.section-title { font-family:'Cormorant Garamond',serif; font-size:clamp(1.7rem,2.6vw,2.5rem); font-weight:300; color:var(--chocolate); line-height:1.12; }
.section-title em { font-style:italic; color:var(--caramel); }
.step-badge { display:inline-flex; align-items:center; gap:8px; margin-bottom:1.2rem; }
.step-num { width:28px; height:28px; border-radius:50%; background:var(--gold); color:#fff; font-size:0.75rem; font-weight:500; display:flex; align-items:center; justify-content:center; flex-shrink:0; }
.step-label { font-size:0.62rem; letter-spacing:0.2em; text-transform:uppercase; color:var(--gold); font-weight:400; }

.divider { display:flex; align-items:center; gap:1.5rem; padding:0 3rem; margin:4.5rem 0 3rem; }
.divider-line { flex:1; height:1px; background:var(--border); }
.divider-text { font-family:'Cormorant Garamond',serif; font-size:0.82rem; font-style:italic; color:var(--muted); letter-spacing:0.1em; white-space:nowrap; }

/* ── FLAVORS ── */
.flavors-section { padding:0 3rem; max-width:1100px; margin:0 auto 1.5rem; }
.flavor-counter { display:flex; align-items:center; gap:12px; margin:1rem 0 1.5rem; }
.flavor-counter-text { font-size:0.8rem; color:var(--muted); }
.flavor-dots { display:flex; gap:5px; }
.flavor-dot-indicator { width:10px; height:10px; border-radius:50%; border:1.5px solid var(--border-md); background:transparent; transition:all 0.2s; }
.flavor-dot-indicator.filled { background:var(--gold); border-color:var(--gold); }

.flavors-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:14px; margin-bottom:1rem; }

.flavor-card {
  background:var(--white); border:1.5px solid var(--border); border-radius:10px;
  overflow:hidden; cursor:pointer;
  transition:border-color 0.2s, box-shadow 0.2s, transform 0.18s;
  position:relative;
}
.flavor-card:hover { border-color:rgba(200,144,63,0.5); transform:translateY(-3px); box-shadow:0 6px 24px rgba(44,26,14,0.1); }
.flavor-card.selected { border-color:var(--gold); box-shadow:0 0 0 1px var(--gold), 0 6px 24px rgba(200,144,63,0.15); }
.flavor-card.disabled { opacity:0.38; cursor:not-allowed; pointer-events:none; }

.flavor-img-wrap { width:100%; height:155px; overflow:hidden; background:var(--parchment); position:relative; }
.flavor-img-wrap img { width:100%; height:100%; object-fit:cover; transition:transform 0.4s; }
.flavor-card:hover .flavor-img-wrap img { transform:scale(1.04); }
.flavor-img-placeholder { width:100%; height:155px; display:flex; align-items:center; justify-content:center; font-size:3rem; background:var(--parchment); }

.flavor-select-indicator {
  position:absolute; top:10px; right:10px;
  width:24px; height:24px; border-radius:50%;
  border:1.5px solid rgba(255,255,255,0.7);
  background:rgba(255,255,255,0.75);
  display:flex; align-items:center; justify-content:center;
  transition:all 0.2s; backdrop-filter:blur(4px);
}
.flavor-card.selected .flavor-select-indicator { background:var(--gold); border-color:var(--gold); }
.flavor-select-indicator svg { display:none; }
.flavor-card.selected .flavor-select-indicator svg { display:block; }

.flavor-body { padding:14px 16px 16px; }
.flavor-tag { display:inline-block; font-size:0.58rem; letter-spacing:0.14em; text-transform:uppercase; color:var(--caramel); background:rgba(200,144,63,0.1); padding:3px 8px; border-radius:4px; margin-bottom:7px; }
.flavor-name { font-family:'Cormorant Garamond',serif; font-size:1.1rem; font-weight:400; color:var(--chocolate); margin-bottom:5px; }
.flavor-desc { font-size:0.74rem; line-height:1.62; color:var(--muted); margin-bottom:10px; }
.flavor-select-btn { font-size:0.63rem; letter-spacing:0.14em; text-transform:uppercase; color:var(--caramel); font-weight:400; background:none; border:none; cursor:pointer; font-family:'DM Sans',sans-serif; padding:0; }
.flavor-card.selected .flavor-select-btn { color:var(--gold); }

.selected-summary {
  background:var(--parchment); border:1px solid rgba(200,144,63,0.22); border-radius:8px;
  padding:13px 18px; min-height:46px; display:flex; align-items:center; gap:8px; flex-wrap:wrap;
}
.selected-item { background:var(--white); border:1px solid rgba(200,144,63,0.3); border-radius:100px; padding:4px 12px; font-size:0.78rem; color:var(--chocolate); display:flex; align-items:center; gap:6px; }
.selected-item button { background:none; border:none; cursor:pointer; color:var(--muted); font-size:0.95rem; line-height:1; padding:0; }

/* ── PARTNER IDENTITY (cupom section) ── */
.identity-section { padding:2.5rem 3rem 3rem; max-width:1100px; margin:0 auto; }

.identity-grid { display:grid; grid-template-columns:1fr 1fr; gap:16px; margin-top:1.5rem; }

.identity-box {
  background:var(--white); border:1px solid var(--border);
  border-radius:10px; padding:1.5rem 1.75rem;
  transition:border-color 0.2s;
}
.identity-box:focus-within { border-color:var(--gold); }
.identity-box-icon { font-size:1.4rem; margin-bottom:10px; }
.identity-box h4 { font-family:'Cormorant Garamond',serif; font-size:1rem; font-weight:400; color:var(--chocolate); margin-bottom:5px; }
.identity-box p { font-size:0.76rem; color:var(--muted); line-height:1.6; margin-bottom:12px; }

.id-input {
  border:1px solid var(--border-md);
  background:var(--cream);
  border-radius:5px;
  padding:9px 14px;
  font-family:'DM Sans',sans-serif;
  font-size:0.88rem;
  color:var(--text);
  width:100%;
  transition:border-color 0.2s, box-shadow 0.2s;
}
.id-input:focus { outline:none; border-color:var(--gold); box-shadow:0 0 0 3px rgba(200,144,63,0.1); background:var(--white); }
.id-input::placeholder { color:rgba(122,99,85,0.4); }
.id-input.cupom-input { text-transform:uppercase; letter-spacing:0.06em; font-family:monospace; }

.cupom-input-row { display:flex; gap:8px; margin-top:10px; }
.cupom-apply-btn { padding:9px 18px; background:var(--chocolate); color:var(--cream); border:none; border-radius:5px; font-family:'DM Sans',sans-serif; font-size:0.78rem; cursor:pointer; transition:background 0.2s; white-space:nowrap; }
.cupom-apply-btn:hover { background:var(--caramel); }
.cupom-feedback { font-size:0.73rem; margin-top:6px; display:none; }
.cupom-feedback.success { color:var(--success); display:block; }
.cupom-feedback.error { color:var(--error); display:block; }

.label-preview {
  margin-top:12px; padding:10px 14px;
  background:var(--parchment); border:1px dashed rgba(200,144,63,0.35); border-radius:6px;
  font-size:0.78rem; color:var(--mocha); line-height:1.5; display:none;
}
.label-preview.show { display:block; }
.label-preview strong { color:var(--chocolate); }

/* ── FORM ── */
.form-section { padding:3.5rem 3rem 2rem; max-width:1100px; margin:0 auto; display:grid; grid-template-columns:1fr 360px; gap:3rem; align-items:start; }
.form-grid { display:grid; grid-template-columns:1fr 1fr; gap:14px; margin-top:2rem; }
.form-group { display:flex; flex-direction:column; gap:5px; }
.form-group.full { grid-column:span 2; }
.form-label { font-size:0.62rem; letter-spacing:0.16em; text-transform:uppercase; color:var(--muted); font-weight:400; }
.required-star { color:var(--gold); }

.form-input, .form-select {
  border:1px solid var(--border-md); background:var(--white); border-radius:5px;
  padding:10px 14px; font-family:'DM Sans',sans-serif; font-size:0.87rem; font-weight:300;
  color:var(--text); transition:border-color 0.2s, box-shadow 0.2s; width:100%; appearance:none;
}
.form-input::placeholder { color:rgba(122,99,85,0.4); }
.form-input:focus, .form-select:focus { outline:none; border-color:var(--gold); box-shadow:0 0 0 3px rgba(200,144,63,0.1); }
.form-input[readonly] { background:var(--parchment); color:var(--muted); }
.form-input.err { border-color:var(--error); }

.cep-row { display:flex; gap:8px; }
.cep-row .form-input { flex:1; }
.cep-info { font-size:0.73rem; margin-top:5px; min-height:18px; }
.cep-loading { color:var(--muted); }
.cep-success { color:var(--success); font-weight:500; }
.cep-err { color:var(--error); font-weight:500; }

.form-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='%237A6355' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E"); background-repeat:no-repeat; background-position:right 14px center; padding-right:36px; cursor:pointer; }
.field-error { font-size:0.67rem; color:var(--error); margin-top:2px; display:none; }
.field-error.show { display:block; }

/* ── SUMMARY CARD ── */
.summary-card { background:var(--white); border:1px solid var(--border); border-radius:10px; padding:1.5rem; position:sticky; top:80px; }
.summary-title { font-size:0.6rem; letter-spacing:0.2em; text-transform:uppercase; color:var(--gold); margin-bottom:1.25rem; display:flex; align-items:center; gap:6px; }
.summary-title::before { content:''; display:block; width:14px; height:1px; background:var(--gold); }

.summary-row { display:flex; justify-content:space-between; align-items:flex-start; padding:9px 0; border-bottom:1px solid rgba(44,26,14,0.06); font-size:0.8rem; gap:10px; }
.summary-row:last-child { border-bottom:none; }
.summary-row-label { color:var(--muted); flex-shrink:0; }
.summary-row-value { color:var(--text); font-weight:400; text-align:right; font-size:0.8rem; }

.summary-total { margin-top:1rem; padding-top:1rem; border-top:1.5px solid var(--border-md); display:flex; justify-content:space-between; align-items:center; }
.summary-total-label { font-family:'Cormorant Garamond',serif; font-size:1.1rem; color:var(--chocolate); }
.summary-total-value { font-family:'Cormorant Garamond',serif; font-size:1.5rem; font-weight:400; color:var(--gold); }

.whatsapp-btn {
  display:flex; align-items:center; justify-content:center; gap:10px;
  width:100%; margin-top:1.25rem; padding:14px;
  background:#25D366; color:#fff; border:none; border-radius:7px;
  font-family:'DM Sans',sans-serif; font-size:0.9rem; font-weight:500;
  cursor:pointer; transition:background 0.2s, transform 0.15s, box-shadow 0.2s;
}
.whatsapp-btn:hover { background:#1ebe5d; transform:translateY(-1px); box-shadow:0 6px 20px rgba(37,211,102,0.3); }
.whatsapp-note { font-size:0.69rem; color:var(--muted); text-align:center; margin-top:9px; line-height:1.6; }

/* ── WHY SECTION ── */
.why-section { background:var(--parchment); padding:5rem 3rem; border-top:1px solid var(--border); border-bottom:1px solid var(--border); }
.why-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:2px; background:var(--border); max-width:1100px; margin:3rem auto 0; border:1px solid var(--border); }
.why-card { background:var(--white); padding:2.5rem 2rem; transition:background 0.2s; }
.why-card:hover { background:var(--cream); }
.why-icon { font-size:1.6rem; margin-bottom:1rem; }
.why-title { font-family:'Cormorant Garamond',serif; font-size:1.1rem; font-weight:400; color:var(--chocolate); margin-bottom:0.6rem; }
.why-desc { font-size:0.8rem; line-height:1.75; color:var(--muted); }
.why-number { font-family:'Cormorant Garamond',serif; font-size:2rem; font-weight:300; color:var(--gold); margin-bottom:0.2rem; }

/* ── FOOTER ── */
footer { border-top:1px solid var(--border); padding:1.75rem 3rem; display:flex; align-items:center; justify-content:space-between; }
.footer-logo { font-family:'Cormorant Garamond',serif; font-size:0.88rem; font-weight:400; letter-spacing:0.12em; color:var(--chocolate); text-transform:uppercase; }
.footer-logo span { color:var(--gold); font-style:italic; }
.footer-note { font-size:0.7rem; color:var(--muted); }

/* ── RESPONSIVE ── */
@media (max-width:960px) {
  nav, footer { padding:1rem 1.5rem; }
  .hero { grid-template-columns:1fr; min-height:auto; }
  .hero-left { padding:3.5rem 1.5rem 2.5rem; }
  .hero-right { min-height:280px; }
  .flavors-section, .identity-section { padding-left:1.5rem; padding-right:1.5rem; }
  .flavors-grid { grid-template-columns:repeat(2,1fr); }
  .identity-grid { grid-template-columns:1fr; }
  .form-section { grid-template-columns:1fr; padding:3rem 1.5rem 1.5rem; gap:2rem; }
  .summary-card { position:static; }
  .steps-grid { grid-template-columns:1fr 1fr; gap:2rem; }
  .steps-grid::before { display:none; }
  .how-section, .why-section { padding:3.5rem 1.5rem; }
  .why-grid { grid-template-columns:1fr; }
  .divider { padding:0 1.5rem; }
  .proof-bar { padding:1rem 1.5rem; gap:1.5rem; }
}
@media (max-width:560px) {
  .flavors-grid { grid-template-columns:1fr; }
  .form-grid { grid-template-columns:1fr; }
  .form-group.full { grid-column:span 1; }
  .steps-grid { grid-template-columns:1fr; }
  .hero-title { font-size:2.4rem; }
  footer { flex-direction:column; gap:0.5rem; text-align:center; }
}