:root{
  /* Brand */
  --purple-900:#240734;
  --purple-800:#320b49;
  --purple-700:#45105f;
  --purple-600:#5b2a86;
  --purple-500:#6f2da8;

  --orange-600:#ff6a00;
  --orange-500:#ff7b1f;

  --gold:#ffd45a;

  /* UI */
  --bg:#ffffff;
  --text:#0b1020;
  --muted:#5b6475;

  --nav:#f6ecec;
  --border: rgba(15, 23, 42, .10);

  --radius-sm: 14px;
  --radius-md: 20px;
  --radius-lg: 26px;

  --shadow-soft: 0 10px 22px rgba(0,0,0,.10);
  --shadow-deep: 0 20px 50px rgba(0,0,0,.18);

  --container: 1180px;

  --grad-main: linear-gradient(90deg, var(--orange-600) 0%, var(--purple-500) 100%);
  --grad-alt:  linear-gradient(90deg, var(--purple-500) 0%, var(--orange-600) 100%);
}

*{ box-sizing: border-box; }
html, body{ height: 100%; }
html{ scroll-behavior: smooth; }
body{
  margin: 0;
  font-family: "Poppins", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

a{ color: inherit; text-decoration: none; }
img{ display:block; max-width:100%; }

.container{
  width: min(var(--container), calc(100% - 40px));
  margin-inline: auto;
}

/* ---------- NAV ---------- */
.nav{
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(246, 236, 236, .90);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(0,0,0,.06);
}
.nav-inner{
  height: 72px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap: 14px;
}
.brand{
  display:flex;
  align-items:center;
  gap: 12px;
  font-weight: 800;
  letter-spacing:.2px;
  color: var(--purple-600);
  font-size: 22px;
  line-height: 1;
}
.brand-badge{
  width: 12px; height: 12px;
  border-radius: 999px;
  background: var(--grad-main);
  box-shadow: 0 10px 20px rgba(91,42,134,.20);
}

/* ---------- BOTÕES ---------- */
.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap: 10px;
  cursor:pointer;
  border: 0;
  border-radius: 14px;
  padding: 12px 18px;
  font-weight: 800;
  user-select:none;
  white-space:nowrap;
  transition: transform .18s ease, box-shadow .18s ease, filter .18s ease, background .18s ease;
  outline: none;
}
.btn:active{ transform: translateY(1px); }
.btn:focus-visible{ box-shadow: 0 0 0 4px rgba(111,45,168,.25); }

.btn-primary{
  color:#fff;
  background: linear-gradient(180deg, rgba(255,255,255,.10), rgba(255,255,255,0)) , var(--purple-600);
  box-shadow: 0 14px 26px rgba(91,42,134,.25);
}
.btn-primary:hover{ filter: brightness(1.05); transform: translateY(-1px); }

.btn-ghost{
  color:#fff;
  background: rgba(255,255,255,.14);
  border: 1px solid rgba(255,255,255,.22);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: 0 16px 30px rgba(0,0,0,.14);
}
.btn-ghost:hover{ filter: brightness(1.06); transform: translateY(-1px); }

.btn-light{
  background: #fff;
  color: var(--purple-600);
  box-shadow: var(--shadow-soft);
}
.btn-light:hover{ transform: translateY(-1px); box-shadow: 0 16px 32px rgba(0,0,0,.14); }

.icon{
  width: 18px; height: 18px;
  display:inline-block;
}

/* ---------- HERO ---------- */
.hero{
  background: var(--grad-main);
  position: relative;
  overflow: hidden;
  padding: 64px 0 62px;
}
.hero::before,
.hero::after{
  content:"";
  position:absolute;
  width: 520px;
  height: 520px;
  border-radius: 999px;
  filter: blur(45px);
  opacity: .25;
  pointer-events:none;
}
.hero::before{ background: rgba(255,255,255,.50); top:-260px; right:-220px; }
.hero::after { background: rgba(255,255,255,.28); bottom:-260px; left:-240px; }

.hero-grid{
  position: relative;
  z-index: 1;
  display:grid;
  grid-template-columns: 1.08fr .92fr;
  gap: 36px;
  align-items:center;
  min-height: 390px;
}
.hero h1{
  margin: 0 0 16px;
  color: #fff;
  font-size: 58px;
  line-height: 1.05;
  font-weight: 800;
  letter-spacing: .2px;
  text-shadow: 0 14px 30px rgba(0,0,0,.12);
}
.hero p{
  margin: 0 0 26px;
  color: rgba(255,255,255,.90);
  max-width: 560px;
  font-size: 16px;
  line-height: 1.7;
  font-weight: 400;
}
.hero-actions{
  display:flex;
  gap: 12px;
  flex-wrap: wrap;
  align-items:center;
}
.hero-visual{
  display:flex;
  align-items:center;
  justify-content:center;
}

/* quadro da logo (no lugar do boneco) */
.logo-card{
  width: min(520px, 100%);
  aspect-ratio: 16 / 10;
  border-radius: var(--radius-lg);
  background: rgba(255,255,255,.12);
  border: 1px solid rgba(255,255,255,.20);
  box-shadow: var(--shadow-deep);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  display:grid;
  place-items:center;
  position: relative;
  overflow:hidden;
}
.logo-card::before{
  content:"";
  position:absolute;
  inset:-60px -40px auto auto;
  width: 240px; height: 240px;
  background: radial-gradient(circle at 30% 30%, rgba(255,255,255,.34), rgba(255,255,255,0) 70%);
  transform: rotate(18deg);
  pointer-events:none;
}
.logo{
  width: min(420px, 86%);
  height: auto;
  filter: drop-shadow(0 18px 22px rgba(0,0,0,.20));
  animation: floaty 4.6s ease-in-out infinite;
}
@keyframes floaty{
  0%,100%{ transform: translateY(0); }
  50%{ transform: translateY(-8px); }
}

/* ---------- SEÇÃO (2 TITULOS + 2 CARDS) ---------- */
.section{
  padding: 60px 0;
  background: #fff;
}

.titles-row{
  display:grid;
  grid-template-columns: minmax(0, 640px);
  justify-content: center;
  gap: 26px;
  align-items:end;
  text-align: center;
  margin-bottom: 18px;
}
.section-title{
  margin:0;
  font-size: 30px;
  font-weight: 800;
  color: var(--purple-600);
  letter-spacing:.2px;
  text-align: center;
}
.section-title.right{ text-align:center; }

/* ---------- CARDS (REFEITOS E BONITOS) ---------- */
.cards-2{
  display:grid;
  grid-template-columns: minmax(0, 620px);
  justify-content: center;
  gap: 26px;
  align-items: stretch;
}

.promo-card{
  border-radius: var(--radius-lg);
  padding: 22px 22px 20px;
  position: relative;
  overflow:hidden;
  background: var(--grad-main);
  color:#fff;
  box-shadow: var(--shadow-deep);
  border: 1px solid rgba(255,255,255,.16);
  transition: transform .18s ease, box-shadow .18s ease, filter .18s ease;
  min-height: 140px;
}

/* glow + textura */
.promo-card::before{
  content:"";
  position:absolute;
  inset:-2px;
  background:
radial-gradient(circle at 18% 22%, rgba(255,255,255,.28), transparent 55%),
radial-gradient(circle at 90% 35%, rgba(255,255,255,.14), transparent 60%),
linear-gradient(135deg, rgba(255,255,255,.18), rgba(255,255,255,0) 42%);
  pointer-events:none;
  mix-blend-mode: screen;
  opacity:.95;
}

/* bolha escura no canto (profissional) */
.promo-card::after{
  content:"";
  position:absolute;
  width: 320px;
  height: 320px;
  border-radius: 999px;
  right: -140px;
  bottom: -160px;
  background: radial-gradient(circle at 30% 30%, rgba(0,0,0,.18), rgba(0,0,0,0) 68%);
  pointer-events:none;
}

.promo-card:hover{
  transform: translateY(-3px);
  box-shadow: 0 26px 64px rgba(0,0,0,.22);
  filter: brightness(1.02);
}

.promo-head{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap: 12px;
  margin-bottom: 12px;
  position: relative;
  z-index: 1;
}

.badge{
  display:inline-flex;
  align-items:center;
  gap: 10px;
  font-weight: 900;
  letter-spacing:.2px;
  font-size: 14px;
  color: rgba(255,255,255,.94);
}
.badge .dot{
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: var(--gold);
  box-shadow: 0 10px 22px rgba(255,212,90,.22);
}

.chip{
  font-size: 12px;
  font-weight: 900;
  padding: 8px 10px;
  border-radius: 999px;
  color: rgba(255,255,255,.92);
  background: rgba(255,255,255,.14);
  border: 1px solid rgba(255,255,255,.22);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.promo-card p{
  margin:0;
  font-size: 15px;
  line-height: 1.8;
  color: rgba(255,255,255,.92);
  position: relative;
  z-index: 1;
}
.promo-card p strong{
  color: var(--gold);
  font-weight: 900;
}

/* ---------- SEÇÃO GLASS (segurança + mapa) ---------- */
.glass-section{
  background: var(--grad-alt);
  padding: 64px 0;
  position: relative;
  overflow:hidden;
}
.glass-section::before{
  content:"";
  position:absolute;
  inset:0;
  background:
radial-gradient(circle at 15% 25%, rgba(255,255,255,.18), transparent 52%),
radial-gradient(circle at 85% 30%, rgba(255,255,255,.12), transparent 55%),
radial-gradient(circle at 60% 120%, rgba(255,255,255,.10), transparent 60%);
  pointer-events:none;
}

.glass-grid{
  position: relative;
  z-index: 1;
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  align-items:stretch;
}

.glass-card{
  border-radius: var(--radius-lg);
  padding: 32px 32px 28px;
  background: rgba(255,255,255,.14);
  border: 1px solid rgba(255,255,255,.20);
  box-shadow: var(--shadow-deep);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  color: rgba(255,255,255,.92);
  position: relative;
  overflow:hidden;
  min-height: 360px;
}
.glass-card::after{
  content:"";
  position:absolute;
  right:-80px;
  bottom:-90px;
  width: 260px;
  height: 260px;
  border-radius: 999px;
  background: radial-gradient(circle at 30% 30%, rgba(255,255,255,.16), rgba(255,255,255,0) 70%);
  pointer-events:none;
}

.glass-card h3{
  margin: 0 0 12px;
  text-align:center;
  font-size: 28px;
  font-weight: 800;
  color: var(--gold);
  letter-spacing:.2px;
}

.glass-card .lead{
  margin: 0 auto 18px;
  max-width: 560px;
  text-align:center;
  font-size: 14px;
  line-height: 1.75;
  color: rgba(255,255,255,.88);
}

.hl{
  color: var(--gold);
  font-weight: 900;
}

.center{
  text-align:center;
  margin-top: 6px;
}
.center .meta{
  font-size: 14px;
  opacity: .90;
}
.center .big{
  margin-top: 6px;
  font-size: 18px;
  font-weight: 900;
  color: var(--gold);
}

.turnos{
  margin: 22px auto 0;
  max-width: 380px;
  text-align:center;
}
.turnos h4{
  margin: 0 0 10px;
  font-size: 16px;
  font-weight: 900;
  color: rgba(255,255,255,.96);
}
.turnos .days{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap: 10px;
  font-size: 14px;
  opacity: .92;
}
.turnos ul{
  list-style:none;
  padding:0;
  margin: 14px 0 0;
  display:grid;
  gap: 10px;
  font-size: 14px;
  opacity: .96;
}
.turnos li{
  display:flex;
  align-items:center;
  justify-content:center;
  gap: 10px;
}
.dot{
  width: 8px; height: 8px;
  border-radius: 999px;
  background: rgba(255,255,255,.90);
  box-shadow: 0 10px 18px rgba(0,0,0,.14);
}

.map-frame{
  margin-top: 14px;
  
  border-radius: 18px;
  overflow:hidden;
  background: rgba(0,0,0,.18);
  border: 1px solid rgba(255,255,255,.18);
  box-shadow: 0 18px 30px rgba(0,0,0,.18);
}
.map-frame iframe{
  width: 100%;
  height: 100%;
  border: 0;
  display:block;
  filter: saturate(1.08) contrast(1.06);
}

.map-cta{
  margin-top: 14px;
  display:flex;
  justify-content:flex-end;
}
.pill{
  border-radius: 999px;
  padding: 10px 14px;
  background: rgba(255,255,255,.88);
  color: var(--purple-800);
  font-weight: 900;
  font-size: 12px;
  box-shadow: var(--shadow-soft);
  transition: transform .18s ease, box-shadow .18s ease, filter .18s ease;
}
.pill:hover{
  transform: translateY(-1px);
  box-shadow: 0 16px 32px rgba(0,0,0,.14);
  filter: brightness(1.02);
}

/* ---------- ABOUT ---------- */
.about{
  padding: 66px 0;
  background: #fff;
}
.about h2{
  margin: 0 0 14px;
  text-align:center;
  font-size: 34px;
  font-weight: 800;
  color: var(--purple-600);
  letter-spacing:.2px;
}
.about p{
  margin: 0 auto;
  max-width: 780px;
  text-align:center;
  color: var(--text);
  opacity: .78;
  font-size: 14px;
  line-height: 1.9;
}

/* ---------- CTA FINAL ---------- */
.cta{
  background: var(--grad-main);
  padding: 74px 0 70px;
  position: relative;
  overflow:hidden;
}
.cta::before{
  content:"";
  position:absolute;
  inset:0;
  background: radial-gradient(circle at 50% -30%, rgba(255,255,255,.24), transparent 58%);
  pointer-events:none;
}

.cta-inner{
  position: relative;
  z-index: 1;
  text-align:center;
  color:#fff;
}
.cta h2{
  margin: 0 0 10px;
  font-size: 38px;
  font-weight: 800;
  letter-spacing:.2px;
  text-shadow: 0 14px 30px rgba(0,0,0,.12);
}
.cta p{
  margin: 0 0 20px;
  font-size: 14px;
  opacity:.92;
  line-height: 1.7;
}

/* ---------- FOOTER ---------- */
footer{
  background: var(--purple-900);
  color: rgba(255,255,255,.88);
  text-align:center;
  padding: 18px 0;
  font-size: 13px;
}

/* ---------- RESPONSIVO ---------- */
@media (max-width: 980px){
  .hero-grid{ grid-template-columns: 1fr; gap: 26px; }
  .hero h1{ font-size: 46px; }
  .titles-row{ grid-template-columns: 1fr; gap: 10px; }
  .section-title.right{ text-align:left; }
  .cards-2{ grid-template-columns: 1fr; }
  .glass-grid{ grid-template-columns: 1fr; }
  .glass-card{ min-height: auto; }
  .map-cta{ justify-content:flex-start; }
}
@media (max-width: 520px){
  .nav-inner{ height: 64px; }
  .brand{ font-size: 18px; }
  .hero{ padding: 52px 0 50px; }
  .hero h1{ font-size: 36px; }
  .promo-card{ padding: 20px; }
  .glass-card{ padding: 26px 22px; }
  .about h2{ font-size: 30px; }
  .cta h2{ font-size: 30px; }
}
