:root{
  /* Tema claro */
  --bg0:#F6F8FC;
  --bg1:#FFFFFF;
  --card:rgba(255,255,255,.92);
  --text:#0B1220;
  --muted:#556070;
  --line:rgba(12,18,32,.10);
  --line2:rgba(12,18,32,.08);
  --shadow:0 18px 50px rgba(12,18,32,.10);
  --r2:24px;
  --max:1120px;

  /* Accent premium */
  --accent:#2DB9C6;
  --accent2:#1C9AA6;
  --ok:#22C55E;
}

*{box-sizing:border-box}
html,body{height:100%}

body{
  margin:0;
  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Arial, "Helvetica Neue", sans-serif;
  color:var(--text);
  background:
    radial-gradient(1000px 560px at 18% 10%, rgba(45,185,198,.10), transparent 60%),
    radial-gradient(900px 520px at 86% 18%, rgba(34,197,94,.07), transparent 60%),
    linear-gradient(180deg, var(--bg0), var(--bg1));
  letter-spacing:.2px;
}

a{color:inherit;text-decoration:none}
.wrap{max-width:var(--max);margin:0 auto;padding:26px 16px 64px}

/* ✅ animações suaves */
@keyframes fadeUp{
  from{opacity:0; transform:translateY(10px)}
  to{opacity:1; transform:translateY(0)}
}
@keyframes fadeIn{
  from{opacity:0}
  to{opacity:1}
}
.reveal{opacity:0; transform:translateY(10px)}
.reveal.in{animation:fadeUp .55s ease both}

/* Header */
.top{
  display:flex;align-items:center;justify-content:space-between;gap:16px;
  padding:14px 16px;
  border:1px solid var(--line2);
  border-radius:var(--r2);
  background: rgba(255,255,255,.78);
  box-shadow: var(--shadow);
  backdrop-filter: blur(10px);
  animation: fadeUp .55s ease both;
}
.brand{display:flex;align-items:center;gap:12px;min-width:240px}
.logo{
  width:44px;height:44px;border-radius:14px;
  background:
    radial-gradient(18px 18px at 30% 30%, rgba(255,255,255,.50), transparent 60%),
    linear-gradient(135deg, rgba(45,185,198,1), rgba(28,154,166,1));
  display:grid;place-items:center;
  font-weight:950;
  color:#052026;
  box-shadow: 0 12px 28px rgba(45,185,198,.20);
  border:1px solid rgba(12,18,32,.10);
}
.brand h1{margin:0;font-size:15px;font-weight:950;letter-spacing:.3px}
.brand p{margin:3px 0 0;font-size:13px;color:var(--muted)}

/* Hero / Cards */
.hero{margin-top:16px}
.heroGrid{display:grid;grid-template-columns:1.25fr .75fr;gap:16px}

.card{
  border:1px solid var(--line2);
  background: rgba(255,255,255,.82);
  border-radius:var(--r2);
  box-shadow: var(--shadow);
  padding:18px;
  animation: fadeUp .55s ease both;
}
.headline{margin:0 0 10px;font-size:30px;line-height:1.06;font-weight:980}
.sub{margin:0;color:var(--muted);line-height:1.60;font-size:15px}

.pill{
  display:inline-flex;gap:10px;align-items:center;
  margin-top:14px;
  padding:10px 12px;
  border-radius:999px;
  border:1px solid rgba(45,185,198,.22);
  background: rgba(45,185,198,.10);
  color:#0B1220;
  font-size:13px;
}
.dot{
  width:10px;height:10px;border-radius:999px;
  background: linear-gradient(135deg, var(--ok), #60E6FF);
  box-shadow: 0 0 0 6px rgba(34,197,94,.12);
}

.miniTitle{margin:0 0 10px;font-size:16px;font-weight:950}
.badge{
  display:flex;gap:10px;align-items:flex-start;
  padding:12px;
  border-radius:18px;
  border:1px solid var(--line2);
  background: rgba(255,255,255,.72);
}
.badge .ico{
  width:36px;height:36px;border-radius:14px;
  display:grid;place-items:center;
  background: rgba(45,185,198,.12);
  border:1px solid rgba(12,18,32,.10);
  flex:0 0 auto;
}
.badge p{margin:0;color:var(--muted);line-height:1.50;font-size:13px}

/* Buttons */
.btn{
  display:inline-flex;gap:8px;align-items:center;
  padding:10px 12px;
  border-radius:14px;
  border:1px solid var(--line2);
  background: rgba(255,255,255,.65);
  font-size:13px;
  transition:.2s transform,.2s background,.2s border,.2s box-shadow;
  white-space:nowrap;
  cursor:pointer;
}
.btn:hover{
  transform:translateY(-1px);
  background: rgba(255,255,255,.88);
  border-color: rgba(12,18,32,.14);
  box-shadow:0 10px 24px rgba(12,18,32,.10);
}
.btn.primary{
  border:0;
  background: linear-gradient(135deg, var(--accent), var(--accent2));
  color:#062027;
  font-weight:950;
}
.btn.ghost{background: rgba(255,255,255,.72)}

/* Sections */
.section{margin-top:16px}
.sectionHeader{
  display:flex;align-items:center;justify-content:space-between;gap:14px;
  margin-bottom:10px;
}
.sectionHeader h2{margin:0;font-size:18px;font-weight:950}
.sectionHeader .hint{color:var(--muted);font-size:13px}

/* Steps */
.steps{display:grid;grid-template-columns:1fr;gap:10px}
.step{
  display:grid;
  grid-template-columns:44px 1fr;
  gap:14px;
  padding:14px;
  border-radius:18px;
  border:1px solid var(--line2);
  background: rgba(255,255,255,.72);
  align-items:start;
}
.n{
  width:38px;height:38px;border-radius:14px;
  display:grid;place-items:center;
  font-weight:950;
  color:#062027;
  background: linear-gradient(135deg, var(--accent), var(--accent2));
}
.stepHead{display:flex;align-items:baseline;justify-content:space-between;gap:12px}
.stepHead b{font-size:14px;font-weight:950}
.stepBody{margin-top:6px}
.stepBody p{margin:0;color:var(--muted);font-size:13px;line-height:1.60}
.stepList{
  margin:10px 0 0;
  padding:0;
  list-style:none;
  display:grid;
  gap:8px;
}
.stepList li{
  display:grid;
  grid-template-columns:18px 1fr;
  gap:10px;
  align-items:start;
  color:var(--muted);
  font-size:13px;
  line-height:1.55;
}
.tick{
  width:18px;height:18px;border-radius:8px;
  display:grid;place-items:center;
  background: rgba(45,185,198,.14);
  border:1px solid rgba(12,18,32,.10);
  color:#0B1220;
  font-weight:950;
  font-size:12px;
}
.callout{
  margin-top:10px;
  padding:10px 12px;
  border-radius:16px;
  border:1px dashed rgba(12,18,32,.16);
  background: rgba(255,255,255,.60);
  color:var(--muted);
  font-size:12px;
  line-height:1.50;
}

/* Thumbs */
.thumbRow{
  display:flex;
  gap:10px;
  overflow:auto;
  padding:8px 2px 2px;
  scroll-snap-type:x mandatory;
  -webkit-overflow-scrolling:touch;
}
.thumbRow::-webkit-scrollbar{height:8px}
.thumbRow::-webkit-scrollbar-thumb{background: rgba(12,18,32,.12); border-radius:999px}

.thumb{flex:0 0 auto;width:110px;scroll-snap-align:start}
.thumbBtn{
  width:110px;
  border:1px solid var(--line2);
  background: rgba(255,255,255,.62);
  border-radius:16px;
  overflow:hidden;
  cursor:pointer;
  padding:0;
  transition:.2s transform,.2s box-shadow;
}
.thumbBtn:hover{transform:translateY(-2px); box-shadow:0 10px 22px rgba(12,18,32,.10)}
.thumbFrame{
  width:110px;
  aspect-ratio:9 / 16;
  display:block;
  position:relative;
  background: rgba(12,18,32,.04);
}
.thumbFrame img{width:100%;height:100%;object-fit:cover;display:block}
.thumbLabel{margin-top:8px;color:var(--muted);font-size:12px;line-height:1.25}
.placeholder{
  width:100%;
  height:100%;
  display:grid;
  place-items:center;
  color: rgba(85,96,112,.70);
  font-size:11px;
  text-align:center;
  padding:10px;
}

/* Tour */
.tourSpot{
  position:fixed;
  border-radius:18px;
  box-shadow:
    0 0 0 6px rgba(45,185,198,.16),
    0 0 0 2px rgba(12,18,32,.10);
  outline:1px solid rgba(12,18,32,.08);
  pointer-events:none;
  z-index:9999;
  display:none;
}
.tourCard{
  position:fixed;
  z-index:10000;
  width:min(440px, calc(100vw - 24px));
  border-radius:18px;
  border:1px solid rgba(12,18,32,.10);
  background: rgba(255,255,255,.94);
  box-shadow: var(--shadow);
  padding:14px;
  display:none;
  animation: fadeUp .30s ease both;
}
.tourTop{display:flex;align-items:center;justify-content:space-between;gap:10px}
.tourTop b{font-size:14px;font-weight:950}
.tourTop span{font-size:12px;color:var(--muted)}
.tourText{margin:10px 0 12px;color:var(--muted);font-size:13px;line-height:1.60}

.tourMedia{
  display:none;
  margin:10px 0 12px;
  border:1px solid rgba(12,18,32,.10);
  border-radius:16px;
  overflow:hidden;
  background: rgba(12,18,32,.03);
}
.tourMedia .mini{
  width:100%;
  aspect-ratio:16 / 9;
  background: rgba(12,18,32,.04);
  position:relative;
  overflow:hidden;
}
.tourMedia img{width:100%;height:100%;object-fit:cover;display:block}
.tourMedia .cap{
  padding:10px 12px;
  color:var(--muted);
  font-size:12px;
  border-top:1px solid rgba(12,18,32,.08);
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:10px;
}
.tourMedia .cap button{
  padding:8px 10px;
  border-radius:12px;
  border:1px solid rgba(12,18,32,.12);
  background: rgba(255,255,255,.78);
  color:var(--text);
  font-weight:900;
  font-size:12px;
  cursor:pointer;
  white-space:nowrap;
}

.tourBtns{display:flex;gap:8px;justify-content:flex-end;flex-wrap:wrap}
.tourBtn{
  padding:9px 11px;
  border-radius:14px;
  border:1px solid rgba(12,18,32,.12);
  background: rgba(255,255,255,.78);
  color:var(--text);
  font-weight:900;
  font-size:13px;
  cursor:pointer;
}
.tourBtn.primary{
  border:0;
  background:linear-gradient(135deg, var(--accent), var(--accent2));
  color:#062027;
}

/* Lightbox */
.lightbox{
  position:fixed;
  inset:0;
  background: rgba(0,0,0,.72);
  display:none;
  z-index:20000;
  padding:16px;
  animation: fadeIn .18s ease both;
}
.lightboxInner{
  max-width:980px;
  margin:0 auto;
  height:100%;
  display:flex;
  flex-direction:column;
  gap:12px;
}
.lightboxTop{
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap:10px;
  color: rgba(255,255,255,.85);
  font-size:13px;
}
.lightboxTop button{
  padding:10px 12px;
  border-radius:14px;
  border:1px solid rgba(255,255,255,.22);
  background: rgba(255,255,255,.12);
  color:#fff;
  font-weight:950;
  cursor:pointer;
}
.lightboxFigure{
  flex:1;
  border-radius:18px;
  border:1px solid rgba(255,255,255,.18);
  background: rgba(255,255,255,.06);
  overflow:hidden;
  display:grid;
  place-items:center;
}
.lightboxFigure img{max-width:100%;max-height:100%;width:auto;height:auto;display:block}

/* Modal */
.modal{
  position:fixed;
  inset:0;
  display:none;
  z-index:25000;
  padding:16px;
  background: rgba(0,0,0,.42);
  animation: fadeIn .18s ease both;
}
.modalInner{
  max-width:520px;
  margin:8vh auto 0;
  border-radius:22px;
  border:1px solid rgba(12,18,32,.10);
  background: rgba(255,255,255,.96);
  box-shadow: var(--shadow);
  overflow:hidden;
  animation: fadeUp .25s ease both;
}
.modalHead{
  padding:16px 16px 12px;
  display:flex;
  justify-content:space-between;
  align-items:flex-start;
  gap:12px;
  border-bottom:1px solid rgba(12,18,32,.08);
}
.modalHead b{font-size:15px;font-weight:950}
.modalHead p{margin:6px 0 0;color:var(--muted);font-size:13px;line-height:1.45}
.modalClose{
  padding:10px 12px;
  border-radius:14px;
  border:1px solid rgba(12,18,32,.12);
  background: rgba(255,255,255,.78);
  color:var(--text);
  font-weight:950;
  cursor:pointer;
  white-space:nowrap;
}
.modalBody{padding:14px 16px 16px}
.storeGrid{display:grid;grid-template-columns:1fr;gap:10px;margin-top:10px}
.storeBtn{
  display:flex;
  gap:12px;
  align-items:center;
  justify-content:space-between;
  padding:14px 14px;
  border-radius:18px;
  border:1px solid rgba(12,18,32,.10);
  background: rgba(255,255,255,.80);
  cursor:pointer;
  transition:.2s transform,.2s background,.2s border,.2s box-shadow;
}
.storeBtn:hover{
  transform:translateY(-1px);
  background: rgba(255,255,255,.95);
  border-color: rgba(12,18,32,.14);
  box-shadow:0 10px 24px rgba(12,18,32,.10);
}
.storeLeft{display:flex;gap:12px;align-items:center}
.storeIcon{
  width:40px;height:40px;border-radius:16px;
  display:grid;place-items:center;
  background: rgba(45,185,198,.12);
  border:1px solid rgba(12,18,32,.10);
  font-size:18px;
}
.storeTxt b{display:block;font-size:14px;font-weight:950}
.storeTxt span{display:block;margin-top:3px;color:var(--muted);font-size:12px}
.arrow{color:rgba(12,18,32,.55);font-weight:950}

/* Responsive */
@media (max-width:980px){ .heroGrid{grid-template-columns:1fr} }
@media (max-width:520px){
  .headline{font-size:26px}
  .thumb{width:96px}
  .thumbBtn,.thumbFrame{width:96px}
}
/* FAQ */
.faq{display:grid;gap:10px}
.faqItem{
  border:1px solid var(--line2);
  background:rgba(255,255,255,.72);
  border-radius:18px;
  overflow:hidden;
}
.faqQ{
  cursor:pointer;
  list-style:none;
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap:14px;
  padding:14px 14px;
  font-weight:900;
  font-size:14px;
}
.faqQ::-webkit-details-marker{display:none}
.faqIcon{
  width:30px;height:30px;
  border-radius:12px;
  display:grid;
  place-items:center;
  border:1px solid var(--line2);
  background:rgba(255,255,255,.75);
  transition:.2s transform;
  font-weight:950;
}
.faqA{
  padding:0 14px 14px;
  color:var(--muted);
  font-size:13px;
  line-height:1.6;
}
.faqA p{margin:0}
.faqItem[open] .faqIcon{transform:rotate(45deg)}
}