:root{
  --bg1:#6b5f86;
  --bg2:#8aa0b8;
  --ink:#2a2140;
  --ink2:#4b3b63;
  --purple:#3a275f;
  --purple2:#2f1f4e;
  --card:#ffffff;
  --line:rgba(60,45,90,.18);
  --shadow:0 22px 60px rgba(0,0,0,.18);
  --radius:22px;
}

*{box-sizing:border-box}
html,body{height:100%}
body{
  margin:0;
  font-family:Inter,system-ui,-apple-system,Segoe UI,Roboto,Arial,sans-serif;
  color:var(--ink);
  background:#f7f7fb;
}

a{color:inherit;text-decoration:none}

.wrap{
  width:min(1100px,92%);
  margin-inline:auto;
}
.center{text-align:center}

/* HEADER */
.header{
  position:sticky;
  top:0;
  z-index:120;
  background:rgba(250,250,255,.86);
  backdrop-filter: blur(10px);
  border-bottom:1px solid rgba(0,0,0,.06);
}
.header-inner{
  display:flex;
  align-items:center;
  gap:18px;
  padding:16px 0;
}
.brand{
  font-family:"Playfair Display",serif;
  font-weight:700;
  color:var(--purple);
  letter-spacing:.2px;
  font-size:18px;
  white-space:nowrap;
}
.navlinks{
  display:flex;
  gap:26px;
  align-items:center;
  margin-left:auto;
}
.navlinks a{
  font-weight:600;
  color:rgba(45,30,70,.78);
  font-size:14px;
  padding:10px 6px;
  border-radius:12px;
}
.navlinks a:hover{background:rgba(58,39,95,.07)}

.cta-top{
  margin-left:14px;
  border:0;
  background:var(--purple);
  color:#fff;
  font-weight:800;
  padding:12px 16px;
  border-radius:999px;
  cursor:pointer;
  box-shadow:0 18px 40px rgba(58,39,95,.26);
  white-space:nowrap;
}
.cta-top:hover{background:var(--purple2)}

/* HAMBURGER (mobile only) */
.hamburger {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  border: 1px solid rgba(0,0,0,.08);
  background: #f5f5f7;
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  cursor: pointer;
}

.hamburger span {
  width: 18px;
  height: 2px;
  background: #3a2a63; /* mesma cor do seu roxo */
  border-radius: 2px;
  display: block;
}


/* HERO */
.hero{
  background: radial-gradient(1000px 500px at 85% 40%, rgba(255,255,255,.55), rgba(255,255,255,0) 55%),
              linear-gradient(115deg, var(--bg1), var(--bg2));
  color:#fff;
  padding:56px 0 66px;
}
.hero .wrap{
  display:grid;
  grid-template-columns: 1.05fr .95fr;
  gap:42px;
  align-items:center;
}
.hero-copy h1{
  margin:16px 0 14px;
  font-family:"Playfair Display",serif;
  font-weight:700;
  letter-spacing:.2px;
  font-size:54px;
  line-height:1.02;
}
.hero-copy p{
  margin:0;
  max-width:520px;
  font-size:18px;
  line-height:1.55;
  opacity:.92;
}
.pill{
  display:inline-flex;
  align-items:center;
  gap:10px;
  padding:8px 14px;
  border-radius:999px;
  background:rgba(255,255,255,.20);
  border:1px solid rgba(255,255,255,.24);
  font-weight:700;
  font-size:13px;
}
.leaf{filter:drop-shadow(0 10px 14px rgba(0,0,0,.2))}

.hero-media .frame{
  border-radius:24px;
  padding:14px;
  background:rgba(255,255,255,.16);
  border:1px solid rgba(255,255,255,.22);
  box-shadow:0 30px 70px rgba(0,0,0,.25);
}
.video-embed{
  border-radius:18px;
  overflow:hidden;
  background:rgba(255,255,255,.18);
  aspect-ratio: 16/9;
}
.video-embed iframe{
  width:100%;
  height:100%;
  border:0;
  display:block;
}

.hero-cta{
  display:flex;
  gap:14px;
  margin-top:16px;
  flex-wrap:wrap;
}
.hero-cta .btn{
  flex:1 1 240px;
}

.btn{
  border:0;
  border-radius:999px;
  padding:16px 22px;
  font-weight:800;
  cursor:pointer;
  font-size:14px;
  letter-spacing:.2px;
}
.btn.primary{
  background:#fff;
  color:var(--purple);
  box-shadow:0 22px 55px rgba(0,0,0,.18);
}
.btn.primary:hover{filter:brightness(.98)}
.btn.outline{
  background:transparent;
  border:1.8px solid rgba(255,255,255,.34);
  color:#fff;
}
.btn.outline:hover{background:rgba(255,255,255,.10)}
.btn.wide{
  width:100%;
  background:var(--purple);
  color:#fff;
  padding:16px 18px;
  box-shadow:0 18px 40px rgba(58,39,95,.24);
}

/* SECTIONS */
.section{padding:72px 0; background:#f7f7fb}
.section:nth-of-type(even){background:#fbfbff}
.section h2{
  margin:0 0 10px;
  font-family:"Playfair Display",serif;
  color:var(--purple);
  font-size:40px;
}
.sub{
  margin:0 auto;
  max-width:820px;
  color:rgba(45,30,70,.72);
  line-height:1.7;
  font-size:15px;
}

.grid{display:grid; gap:18px; margin-top:26px}
.grid.cards{grid-template-columns:repeat(3,1fr)}
.grid.steps{grid-template-columns:repeat(3,1fr)}
.grid.two{grid-template-columns:1.1fr .9fr; gap:22px; align-items:stretch}

.card, .step, .photo-card{
  background:rgba(255,255,255,.78);
  border:1px solid var(--line);
  border-radius:var(--radius);
  padding:22px;
  box-shadow:0 12px 38px rgba(0,0,0,.06);
}
.card h3, .step h3{margin:8px 0 8px; color:var(--purple); font-size:18px}
.card p, .step p{margin:0; color:rgba(45,30,70,.72); line-height:1.6}

.step .num{
  width:42px;height:42px;border-radius:14px;
  display:flex;align-items:center;justify-content:center;
  background:rgba(58,39,95,.10);
  color:var(--purple);
  font-weight:900;
}

/* ===== Ajuste de alinhamento interno dos STEPS (somente isso) ===== */
.step{
  display:flex;
  flex-direction:column;
  align-items:center;
  text-align:center;
  gap:14px;
}
.step h3{
  margin:0;
  color:var(--purple);
  font-size:20px;
}
.step p{
  margin:0;
  max-width:260px;
}

/* (opcional) leve ajuste no quadrado do número para centralizar melhor */
.step .num{
  width:48px;
  height:48px;
  border-radius:16px;
  font-size:18px;
}

.photo-card{padding:0; overflow:hidden}
.photo-card img{width:100%; height:100%; object-fit:cover; display:block}

/* CTA FINAL */
.cta-final{padding:90px 0; background:#f7f7fb}
.cta-box{
  background:rgba(255,255,255,.80);
  border:1px solid var(--line);
  border-radius:28px;
  padding:30px 28px;
  box-shadow:0 18px 55px rgba(0,0,0,.10);
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:22px;
}
.cta-box h2{margin:0 0 8px; font-size:30px}
.cta-box p{margin:0; color:rgba(45,30,70,.72); line-height:1.6}
.cta-row{display:flex; gap:14px; align-items:center; flex-wrap:wrap}

.footer{padding:30px 0; color:rgba(45,30,70,.60)}

/* MODAL */
.modal-overlay{
  position:fixed;
  inset:0;
  background:rgba(20,10,40,.55);
  backdrop-filter: blur(6px);
  display:none;
  align-items:center;
  justify-content:center;
  z-index:200;
  padding:20px;
}
.modal-overlay.show{display:flex}

.modal{
  width:min(720px, 96vw);
  max-height: min(86vh, 820px);
  overflow:auto;
  background:#fff;
  border-radius:22px;
  padding:22px 22px 20px;
  box-shadow:0 30px 80px rgba(0,0,0,.35);
}
.modal-head{
  position:sticky;
  top:0;
  background:rgba(255,255,255,.92);
  backdrop-filter: blur(10px);
  border-bottom:1px solid rgba(0,0,0,.06);
  margin:-22px -22px 14px;
  padding:18px 22px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:14px;
}
.modal h3{
  margin:0;
  font-family:"Playfair Display",serif;
  color:var(--purple);
  font-size:28px;
}
.modal p{margin:0 0 16px; color:#555; line-height:1.5}
.modal-close{
  width:40px;height:40px;
  border-radius:14px;
  border:1px solid rgba(60,45,90,.16);
  background:rgba(240,240,248,.9);
  color:rgba(45,30,70,.75);
  font-size:22px;
  cursor:pointer;
}

.form-grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:14px;
}
.field{display:flex; flex-direction:column; gap:8px}
.field span{font-weight:700; color:rgba(45,30,70,.86)}
.field.full{grid-column:1 / -1}

.field input,
.field textarea,
.field select{
  width:100%;
  padding:14px 14px;
  border-radius:14px;
  border:1px solid rgba(60,45,90,.22);
  font-size:14px;
  font-family:Inter, sans-serif;
  background:#fff;
}
.field textarea{resize:vertical; min-height:110px}
.field select{appearance:none; background-image:linear-gradient(45deg, transparent 50%, rgba(45,30,70,.65) 50%), linear-gradient(135deg, rgba(45,30,70,.65) 50%, transparent 50%); background-position: calc(100% - 18px) calc(1em + 8px), calc(100% - 13px) calc(1em + 8px); background-size:5px 5px; background-repeat:no-repeat; padding-right:40px}

.success{
  margin-top:14px;
  text-align:center;
  font-weight:700;
  color:var(--purple);
}
.muted{display:block; margin-top:10px; color:rgba(45,30,70,.60); text-align:center}

/* RESPONSIVE */
@media (max-width: 980px){
  .hero .wrap{grid-template-columns:1fr;}
  .hero-copy h1{font-size:44px}
  .hero-cta{margin-top:10px}
  .grid.cards, .grid.steps{grid-template-columns:1fr}
  .grid.two{grid-template-columns:1fr}
  .cta-box{flex-direction:column; text-align:center}
}

@media (max-width: 720px){
  .header-inner{gap:12px}
  .hamburger{display:flex}
  .navlinks{
    display:none;
    position:absolute;
    left:4%;
    right:4%;
    top:70px;
    background:rgba(255,255,255,.95);
    border:1px solid rgba(0,0,0,.08);
    border-radius:18px;
    padding:10px;
    box-shadow:0 22px 60px rgba(0,0,0,.14);
    flex-direction:column;
    gap:6px;
    margin-left:0;
  }
  .navlinks.open{display:flex}
  .navlinks a{width:100%}

  .cta-top{margin-left:auto; padding:12px 14px; font-size:13px}

  .hero{padding:44px 0 54px}
  .hero-copy h1{font-size:38px}
  .hero-cta{flex-direction:column}
  .hero-cta .btn{flex:0 0 auto;}
  .btn{width:100%}

  .form-grid{grid-template-columns:1fr}
}



/* WhatsApp button (apenas estilo do CTA) */
.btn.whatsapp{
  background:#25D366;
  border:1px solid #25D366;
  color:#fff;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:10px;
}
.btn.whatsapp:hover{ filter:brightness(.96); }
.btn.whatsapp .wa-ico{ width:18px; height:18px; flex:0 0 18px; }



@media (max-width: 420px){
  .header-inner{gap:8px; padding:12px 0;}
  .hamburger{width:38px; height:38px; border-radius:10px; gap:4px;}
  .hamburger span{width:16px;}
  .brand{font-size:16px;}
  .cta-top{padding:10px 12px; font-size:12px;}
}
