
:root{
  --bg:#f8f1ec;
  --bg-soft:#fbf7f4;
  --card:#fffaf7;
  --ink:#2a151c;
  --muted:#6e5b61;
  --line:#ead9d0;
  --accent:#6f2434;
  --accent-2:#aa7d69;
  --gold:#c79c5c;
  --gold-soft:#e8cf9a;
  --green:#25d366;
  --green-dark:#103220;
  --shadow:0 24px 64px rgba(44,18,26,.12);
  --shadow-strong:0 32px 90px rgba(44,18,26,.16);
  --radius-xl:34px;
  --radius-lg:24px;
  --radius-md:18px;
  --serif:"Iowan Old Style","Palatino Linotype","Book Antiqua",Georgia,serif;
  --sans:-apple-system,BlinkMacSystemFont,"SF Pro Display","Segoe UI",sans-serif;
}
*{box-sizing:border-box}
html{scroll-behavior:smooth}
body{
  margin:0;
  color:var(--ink);
  background:
    radial-gradient(circle at 10% 0%, #ffffff 0 16%, transparent 34%),
    radial-gradient(circle at 90% 12%, #f6ddd2 0 14%, transparent 28%),
    linear-gradient(180deg, #fbf7f4 0%, #f6eee8 100%);
  font-family:var(--sans);
}
img{max-width:100%;display:block}
a{text-decoration:none;color:inherit}
.wrap{width:min(1160px,92vw);margin:auto}
.topbar{
  background:#321019;
  color:#fff7f4;
  text-align:center;
  font-size:.92rem;
  padding:10px 16px;
  letter-spacing:.01em;
}
.nav{
  position:sticky;
  top:0;
  z-index:100;
  backdrop-filter:blur(14px);
  background:rgba(248,241,236,.82);
  border-bottom:1px solid rgba(111,36,52,.08);
}
.nav-inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:18px;
  min-height:82px;
}
.brand{
  display:flex;
  align-items:center;
  gap:12px;
  font-weight:900;
  letter-spacing:.02em;
}
.brand-mark{
  width:42px;
  height:42px;
  border-radius:50%;
  display:grid;
  place-items:center;
  background:linear-gradient(135deg,#d8a994,#8b3b4b);
  color:#fff;
  font-family:var(--serif);
  font-size:1.25rem;
  box-shadow:0 10px 20px rgba(111,36,52,.18);
}
.brand-name{
  font-size:1.12rem;
}
.nav-links{
  display:flex;
  align-items:center;
  gap:22px;
  color:var(--muted);
  font-size:.98rem;
}
.nav-links a:hover{color:var(--ink)}
.nav-cta{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-height:48px;
  padding:0 26px;
  border-radius:999px;
  background:linear-gradient(180deg,#7d3041,#61202f);
  color:#fff;
  font-weight:800;
  box-shadow:0 14px 28px rgba(111,36,52,.18);
}
.hero{
  padding:72px 0 40px;
}
.hero-grid{
  display:grid;
  grid-template-columns:1.05fr .95fr;
  gap:42px;
  align-items:center;
}
.eyebrow{
  display:inline-flex;
  align-items:center;
  gap:8px;
  padding:10px 16px;
  border-radius:999px;
  border:1px solid var(--line);
  background:rgba(255,255,255,.7);
  color:#8c5a66;
  font-size:.83rem;
  font-weight:800;
  letter-spacing:.08em;
  text-transform:uppercase;
}
.hero h1{
  margin:22px 0 18px;
  font-family:var(--serif);
  font-weight:700;
  font-size:clamp(3.6rem,7vw,6.3rem);
  line-height:.92;
  letter-spacing:-.06em;
}
.hero .lead{
  color:var(--muted);
  font-size:clamp(1.08rem,1.9vw,1.45rem);
  line-height:1.68;
  max-width:760px;
}
.hero-actions{
  display:flex;
  flex-wrap:wrap;
  gap:14px;
  margin:28px 0 18px;
}
.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-height:58px;
  padding:0 28px;
  border-radius:999px;
  font-weight:850;
  letter-spacing:.01em;
  transition:transform .18s ease, box-shadow .18s ease, opacity .18s ease;
  border:1px solid transparent;
}
.btn:hover{
  transform:translateY(-1px);
  box-shadow:0 16px 30px rgba(42,21,28,.12);
}
.btn-primary{
  background:linear-gradient(135deg,var(--gold),var(--gold-soft));
  color:#2d1a10;
}
.btn-secondary{
  background:#f4ece7;
  color:var(--ink);
  border-color:#e5d7cf;
}
.btn-dark{
  background:var(--accent);
  color:#fff;
}
.btn-whatsapp{
  background:var(--green);
  color:var(--green-dark);
}
.meta{
  display:flex;
  flex-wrap:wrap;
  gap:18px;
  margin-top:18px;
  color:var(--muted);
  font-size:.96rem;
}
.meta strong{color:var(--ink)}
.cover-card{
  position:relative;
  border-radius:38px;
  padding:18px;
  background:linear-gradient(145deg,#3c1520,#12090f);
  box-shadow:var(--shadow-strong);
}
.cover-shell{
  border-radius:28px;
  border:1px solid rgba(255,255,255,.09);
  background:linear-gradient(180deg,rgba(255,255,255,.06),rgba(255,255,255,.02));
  padding:18px;
}
.section{
  padding:42px 0;
}
.section-grid{
  display:grid;
  grid-template-columns:1.04fr .96fr;
  gap:38px;
  align-items:start;
}
.section h2{
  margin:0 0 14px;
  font-family:var(--serif);
  font-weight:700;
  font-size:clamp(2.5rem,5vw,4.5rem);
  line-height:.98;
  letter-spacing:-.05em;
}
.section .text{
  color:var(--muted);
  font-size:1.08rem;
  line-height:1.72;
}
.stack{
  display:grid;
  gap:18px;
}
.card{
  background:rgba(255,255,255,.75);
  border:1px solid var(--line);
  border-radius:28px;
  padding:22px 22px 20px;
  box-shadow:var(--shadow);
}
.card .tag{
  display:inline-block;
  margin-bottom:10px;
  font-size:.78rem;
  font-weight:900;
  text-transform:uppercase;
  letter-spacing:.08em;
  color:#a06f78;
}
.card h3{
  margin:0 0 10px;
  font-size:1.55rem;
  line-height:1.22;
}
.card p{
  margin:0;
  color:var(--muted);
  line-height:1.65;
}
.includes{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:16px;
  margin-top:22px;
}
.include-card{
  background:#fffaf8;
  border:1px solid var(--line);
  border-radius:24px;
  padding:22px;
  box-shadow:var(--shadow);
}
.include-card .num{
  display:inline-grid;
  place-items:center;
  width:38px;
  height:38px;
  margin-bottom:12px;
  border-radius:50%;
  background:#f0e0d8;
  color:var(--accent);
  font-weight:900;
}
.include-card h4{
  margin:0 0 8px;
  font-size:1.08rem;
}
.include-card p{
  margin:0;
  color:var(--muted);
  line-height:1.6;
  font-size:.96rem;
}
.path{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:16px;
  margin-top:18px;
}
.path-card{
  background:linear-gradient(180deg,#fffaf7,#fff3ee);
  border:1px solid var(--line);
  border-radius:26px;
  padding:20px;
}
.path-card b{
  display:inline-grid;
  place-items:center;
  width:36px;
  height:36px;
  border-radius:50%;
  background:var(--accent);
  color:#fff;
  margin-bottom:12px;
}
.path-card h4{
  margin:0 0 8px;
  font-size:1.02rem;
}
.path-card p{
  margin:0;
  color:var(--muted);
  line-height:1.56;
  font-size:.95rem;
}
.whatsapp-highlight{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:20px;
  margin-top:24px;
}
.whatsapp-card{
  background:linear-gradient(145deg,#0f2517,#16331f);
  color:#f2fff7;
  border-radius:28px;
  padding:24px;
  box-shadow:0 24px 60px rgba(22,51,31,.22);
}
.whatsapp-card p{
  color:#d6f7e0;
  line-height:1.7;
}
.whatsapp-bullets{
  display:grid;
  gap:12px;
  margin:16px 0 0;
}
.whatsapp-bullets div{
  padding:14px 16px;
  background:rgba(255,255,255,.07);
  border:1px solid rgba(255,255,255,.08);
  border-radius:18px;
}
.faq{
  display:grid;
  gap:14px;
  margin-top:18px;
}
.faq-item{
  background:#fff;
  border:1px solid var(--line);
  border-radius:22px;
  padding:20px;
}
.faq-item h4{
  margin:0 0 8px;
  font-size:1.04rem;
}
.faq-item p{
  margin:0;
  color:var(--muted);
  line-height:1.68;
}
.cta-band{
  margin:32px 0 0;
  padding:28px;
  border-radius:30px;
  background:linear-gradient(135deg,#2d1018,#4a1b28);
  color:#fff;
  box-shadow:var(--shadow-strong);
}
.cta-band .row{
  display:flex;
  flex-wrap:wrap;
  align-items:center;
  justify-content:space-between;
  gap:18px;
}
.cta-band h3{
  margin:0 0 8px;
  font-family:var(--serif);
  font-size:2.1rem;
}
.cta-band p{
  margin:0;
  color:#f3dfe6;
  max-width:720px;
}
.checkout-hero{
  padding:58px 0 40px;
}
.checkout-grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:24px;
}
.price-panel{
  background:linear-gradient(145deg,#fffdfb,#fff4ee);
  border:1px solid var(--line);
  border-radius:30px;
  padding:28px;
  box-shadow:var(--shadow);
}
.price-panel .price-big{
  display:flex;
  align-items:flex-end;
  gap:10px;
  margin:18px 0 8px;
}
.price-panel .price-big strong{
  font-family:var(--serif);
  font-size:4.4rem;
  line-height:.9;
}
.price-panel .price-big span{
  color:var(--muted);
  padding-bottom:10px;
}
.checkout-actions{
  display:grid;
  gap:14px;
  margin-top:22px;
}
.note-box{
  margin-top:18px;
  padding:18px;
  border-radius:22px;
  background:#f5f0ff;
  border:1px solid #dbceff;
  color:#503c77;
  line-height:1.65;
}
.notice-box{
  margin-top:18px;
  padding:18px;
  border-radius:22px;
  background:#fff6dc;
  border:1px solid #edd68d;
  color:#715211;
  line-height:1.65;
}
.micro{
  color:var(--muted);
  font-size:.95rem;
}
.footer{
  padding:42px 0 70px;
  color:var(--muted);
  font-size:.93rem;
}
.footer-grid{
  display:grid;
  grid-template-columns:1.1fr .9fr;
  gap:26px;
}
.footer small{
  display:block;
  line-height:1.7;
}
.floating-wa{
  position:fixed;
  right:18px;
  bottom:18px;
  z-index:140;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-height:56px;
  padding:0 22px;
  border-radius:999px;
  background:var(--green);
  color:var(--green-dark);
  font-weight:900;
  box-shadow:0 18px 48px rgba(37,211,102,.35);
}
.reveal{
  opacity:0;
  transform:translateY(22px);
  transition:opacity .55s ease, transform .55s ease;
}
.reveal.is-visible{
  opacity:1;
  transform:translateY(0);
}
@media (max-width:1000px){
  .hero-grid,.section-grid,.checkout-grid,.footer-grid,.whatsapp-highlight,.includes,.path{
    grid-template-columns:1fr 1fr;
  }
}
@media (max-width:780px){
  .nav-inner{min-height:74px}
  .nav-links{display:none}
  .hero-grid,.section-grid,.checkout-grid,.footer-grid,.whatsapp-highlight,.includes,.path{
    grid-template-columns:1fr;
  }
  .hero{padding:46px 0 28px}
  .section{padding:28px 0}
  .hero h1{font-size:3.35rem}
  .topbar{font-size:.82rem}
}
