:root{
  --royal-purple:#7801E8;
  --royal-green:#50D87A;
  --royal-deep:#20093A;
  --bg:#07070a;
  --panel:rgba(255,255,255,.06);
  --panel2:rgba(255,255,255,.08);
  --text:#EDEDF3;
  --muted:rgba(237,237,243,.72);
  --stroke:rgba(255,255,255,.10);
  --shadow: 0 18px 60px rgba(0,0,0,.55);
}

*{box-sizing:border-box}
html,body{margin:0;padding:0}
body{
  font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  background:
    radial-gradient(1200px 600px at 20% 10%, rgba(120,1,232,.20), transparent 60%),
    radial-gradient(900px 500px at 80% 40%, rgba(80,216,122,.14), transparent 60%),
    linear-gradient(180deg, #050508, #090910);
  color:var(--text);
}

a{color:inherit;text-decoration:none}
.container{width:min(1200px, 92%); margin:0 auto}
.accent{color:var(--royal-purple)}
.kicker{
  display:inline-block;
  font-weight:800;
  letter-spacing:.12em;
  font-size:.78rem;
  color:var(--royal-green);
  margin-bottom:14px;
}

.topbar{
  position:sticky; top:0; z-index:50;
  background:rgba(0,0,0,.55);
  backdrop-filter: blur(10px);
  border-bottom:1px solid var(--stroke);
}
.topbar__inner{
  display:flex; align-items:center; justify-content:space-between;
  padding:12px 0;
}
.brand{display:flex; align-items:center; gap:10px}
.brand__logo{height:150px; width:auto; display:block}

.nav{display:flex; gap:18px; align-items:center}
.nav__link{
  font-weight:600;
  color:rgba(237,237,243,.86);
  padding:10px 10px;
  border-radius:10px;
}
.nav__link:hover{background:rgba(255,255,255,.06)}
.nav__link--pill{
  border:1px solid rgba(80,216,122,.35);
  background:rgba(80,216,122,.08);
}
.nav__toggle{
  display:none; border:0; background:transparent; cursor:pointer;
  width:40px; height:40px; border-radius:10px;
}
.nav__toggle span{display:block;height:2px;background:#fff;margin:6px 8px;opacity:.9}

.hero{padding:44px 0 34px}
/* ===== HERO: carrossel full width em cima, conteúdo embaixo ===== */
.hero__grid{
  display: grid;
  grid-template-columns: 1fr;   /* vira 1 coluna */
  gap: 24px;
  align-items: start;
}

/* coloca o carrossel em cima e o texto embaixo */
.hero__right{ order: 1; }
.hero__left{  order: 2; }

/* carrossel ocupar toda a largura e ficar “hero-like” */
.hero__right .carousel{
  width: 100%;
}

/* altura de destaque do carrossel no topo (ajuste se quiser mais/menos) */
.hero__right .slide{
  aspect-ratio: auto;   /* libera o aspect ratio antigo */
  height: 56vh;         /* topo grande */
  min-height: 360px;
  max-height: 620px;
}

/* em telas pequenas, aumenta um pouco a presença */
@media (max-width: 1900px){
  .hero__right .slide{
    height: 48vh;
    min-height: 580px;
  }
}

.hero__title{
  margin:0 0 18px;
  font-size: clamp(2.0rem, 4vw, 3.1rem);
  line-height:1.05;
}
.hero__title--strong{color:#fff; font-weight:800}
.hero__ctaRow{display:flex; gap:12px; margin:18px 0 20px; flex-wrap:wrap}

.btn{
  display:inline-flex; align-items:center; justify-content:center;
  border-radius:12px;
  padding:12px 18px;
  font-weight:800;
  border:1px solid transparent;
  cursor:pointer;
  transition:.18s ease;
}
.btn--primary{
  background: linear-gradient(90deg, var(--royal-purple), rgba(120,1,232,.75));
  box-shadow: 0 14px 40px rgba(120,1,232,.25);
}
.btn--primary:hover{transform: translateY(-1px)}
.btn--ghost{
  border-color: rgba(255,255,255,.18);
  background: rgba(255,255,255,.04);
}
.btn--ghost:hover{background: rgba(255,255,255,.07)}
.btn--wide{width:100%}

.stepCard{
  display:flex; gap:14px; align-items:flex-start;
  background: linear-gradient(180deg, rgba(255,255,255,.07), rgba(255,255,255,.04));
  border:1px solid var(--stroke);
  border-radius:16px;
  padding:18px;
  box-shadow: var(--shadow);
  margin:12px 0;
}
.stepCard__badge{
  width:34px;height:34px;border-radius:10px;
  background: rgba(80,216,122,.14);
  border: 1px solid rgba(80,216,122,.35);
  display:flex;align-items:center;justify-content:center;
  font-weight:900; color: var(--royal-green);
  flex:0 0 auto;
}
.stepCard h3{margin:0 0 6px; font-size:1.05rem}
.stepCard p{margin:0; color:var(--muted); line-height:1.5}

.carousel{
  position:relative;
  background: rgba(255,255,255,.03);
  border:1px solid var(--stroke);
  border-radius:18px;
  overflow:hidden;
  box-shadow: var(--shadow);
}
.carousel__track{
  display:flex; width:100%;
  transform: translateX(0);
  transition: transform .35s ease;
}
.slide{min-width:100%; position:relative; aspect-ratio: 16/10; background:#000}
.slide img{width:100%; height:100%; object-fit:cover; display:block; filter: saturate(1.05) contrast(1.05)}
.slide__overlay{
  position:absolute; inset:0;
  background: linear-gradient(180deg, transparent 45%, rgba(0,0,0,.65));
  display:flex; align-items:flex-end; padding:18px;
}
.slide__title{
  font-weight:900; font-size:1.15rem;
  text-shadow: 0 6px 24px rgba(0,0,0,.6);
}
.slide--video{aspect-ratio: 16/9}
.slide--video iframe,.slide--video video{width:100%; height:100%; display:block}

.carousel__btn{
  position:absolute; top:50%; transform: translateY(-50%);
  width:40px; height:40px; border-radius:14px;
  border:1px solid rgba(255,255,255,.16);
  background: rgba(0,0,0,.35);
  backdrop-filter: blur(8px);
  cursor:pointer;
}
.carousel__btn:hover{background: rgba(0,0,0,.55)}
.carousel__btn--prev{left:12px}
.carousel__btn--next{right:12px}
.carousel__btn--prev:before, .carousel__btn--next:before{
  content:"";
  display:block; width:10px; height:10px; margin:14px auto 0;
  border-right:2px solid #fff; border-bottom:2px solid #fff;
}
.carousel__btn--prev:before{transform: rotate(135deg)}
.carousel__btn--next:before{transform: rotate(-45deg)}

.carousel__dots{
  position:absolute; left:50%; transform: translateX(-50%);
  bottom:12px; display:flex; gap:8px;
}
.carousel__dots button{
  width:8px;height:8px;border-radius:999px;border:0; cursor:pointer;
  background: rgba(255,255,255,.35);
}
.carousel__dots button.is-active{background: var(--royal-green)}

.carousel__centerCta{
  position:absolute; left:50%; transform: translateX(-50%);
  bottom:46px;
  width:min(420px, 80%);
}

.section{padding:54px 0}
.section--alt{
  background:
    radial-gradient(900px 420px at 20% 20%, rgba(120,1,232,.12), transparent 55%),
    radial-gradient(900px 420px at 80% 40%, rgba(80,216,122,.10), transparent 55%),
    rgba(255,255,255,.02);
  border-top:1px solid var(--stroke);
  border-bottom:1px solid var(--stroke);
}
.section__head{margin-bottom:18px}
.section__head--tight{margin-top:26px; margin-bottom:10px}
.section__title{margin:0 0 8px; font-size: clamp(1.55rem, 2.4vw, 2.2rem)}
.section__subtitle{margin:0 0 6px; font-size:1.1rem}
.section__desc{margin:0; color:var(--muted); line-height:1.6}
.section__foot{margin-top:18px}

.featureGrid{display:grid; grid-template-columns: repeat(3, 1fr); gap:16px}
.card{
  background: linear-gradient(180deg, rgba(255,255,255,.07), rgba(255,255,255,.04));
  border:1px solid var(--stroke);
  border-radius:18px;
  padding:18px;
  box-shadow: var(--shadow);
}
.card h3{margin:0 0 12px}
.checklist{list-style:none; padding:0; margin:0; display:grid; gap:10px}
.checklist li{color:var(--muted); line-height:1.5; position:relative; padding-left:26px}
.checklist li:before{
  content:"✓";
  position:absolute; left:0; top:0;
  width:18px;height:18px;border-radius:8px;
  display:flex; align-items:center; justify-content:center;
  background: rgba(80,216,122,.14);
  border: 1px solid rgba(80,216,122,.35);
  color: var(--royal-green);
  font-size:.85rem;
  font-weight:900;
}

.reviews{
  display:flex; gap:14px; overflow:auto; scroll-behavior:smooth;
}
.reviewCard{
  min-width: min(360px, 86%);
  background: rgba(255,255,255,.04);
  border:1px solid var(--stroke);
  border-radius:16px;
  padding:16px;
}
.reviewHead{display:flex; align-items:center; justify-content:space-between; gap:10px}
.reviewName{font-weight:800}
.reviewStars{color: var(--royal-green); font-weight:900}
.reviewText{color:var(--muted); line-height:1.55; margin-top:8px}

.about{display:grid; grid-template-columns: .95fr 1.05fr; gap:18px; align-items:center}
.polaroids{display:grid; gap:12px}
.polaroid{
  border-radius:18px;
  background: rgba(255,255,255,.04);
  border:1px solid var(--stroke);
  padding:26px;
  min-height:120px;
  box-shadow: var(--shadow);
  color: rgba(237,237,243,.78);
}

.faqGrid{display:grid; grid-template-columns: .85fr 1.15fr; gap:16px; align-items:start}
.accordion{display:grid; gap:12px}
.accItem{border-radius:16px; overflow:hidden; border:1px solid var(--stroke); background: rgba(255,255,255,.04)}
.accBtn{
  width:100%; text-align:left;
  padding:14px 16px;
  background: transparent; border:0; cursor:pointer;
  color:#fff; font-weight:800;
  display:flex; align-items:center; gap:10px; justify-content:space-between;
}
.accIcon{
  width:26px;height:26px;border-radius:10px;
  display:inline-flex; align-items:center; justify-content:center;
  background: rgba(120,1,232,.15);
  border:1px solid rgba(120,1,232,.35);
  color: var(--royal-purple);
  font-weight:900;
  margin-right:10px;
  flex:0 0 auto;
}
.accArrow{width:10px;height:10px;border-right:2px solid rgba(237,237,243,.85);border-bottom:2px solid rgba(237,237,243,.85);transform: rotate(45deg); margin-left:12px}
.accPanel{max-height:0; overflow:hidden; transition: max-height .25s ease}
.accPanel p{margin:0; padding:0 16px 14px; color:var(--muted); line-height:1.6}

.contact{display:grid; grid-template-columns: .9fr 1.1fr; gap:16px; align-items:start}
.contact__info{display:grid; gap:12px; margin:14px 0 10px}
.infoRow{display:flex; gap:12px; align-items:flex-start}
.infoIcon{opacity:.9}
.infoLabel{font-weight:800}
.infoText{color:var(--muted)}
.contact__actions{display:flex; gap:12px; margin-top:14px; flex-wrap:wrap}

.form{
  background: rgba(255,255,255,.04);
  border:1px solid var(--stroke);
  border-radius:18px;
  padding:18px;
  box-shadow: var(--shadow);
}
.form__row{display:grid; grid-template-columns: 1fr 1fr; gap:12px}
.form__field{display:grid; gap:6px; margin-bottom:12px}
label{font-weight:700; color: rgba(237,237,243,.86)}
input,textarea{
  width:100%;
  border-radius:12px;
  border:1px solid rgba(255,255,255,.16);
  background: rgba(0,0,0,.35);
  color:#fff;
  padding:12px;
  outline:none;
}
input:focus,textarea:focus{border-color: rgba(80,216,122,.45)}
.form__note{color:rgba(237,237,243,.62); margin:10px 0 0; font-size:.92rem}

.footer{
  border-top:1px solid var(--stroke);
  background: rgba(0,0,0,.50);
  backdrop-filter: blur(10px);
  padding:18px 0;
}
.footer__inner{display:flex; align-items:center; justify-content:space-between; gap:14px; flex-wrap:wrap}
.footer__brand img{height:150px}
.socialBtn{
  width:40px;height:40px;border-radius:14px;
  display:inline-flex; align-items:center; justify-content:center;
  border:1px solid rgba(255,255,255,.16);
  background: rgba(255,255,255,.04);
  font-weight:900;
}
.footer__copy{color:rgba(237,237,243,.60)}

/* Responsivo */
@media (max-width: 980px){
  .hero__grid{grid-template-columns: 1fr; }
  .featureGrid{grid-template-columns: 1fr}
  .about{grid-template-columns: 1fr}
  .contact{grid-template-columns: 1fr}
  .faqGrid{grid-template-columns: 1fr}
  .nav{display:none}
  .nav__toggle{display:block}
  .nav.is-open{
    display:flex; position:absolute; right:4%; top:62px;
    background: rgba(0,0,0,.80);
    border:1px solid var(--stroke);
    padding:12px; border-radius:16px;
    flex-direction:column; width:min(260px, 92vw);
  }
}