:root{
  --violet:#6D28D9;
  --pink:#EC4899;
  --slate:#0f172a;
  --border: rgb(226 232 240);
  --muted: rgb(100 116 139);
  --text: rgb(15 23 42);
}

*{ box-sizing:border-box; font-family:"Poppins",system-ui,-apple-system,Segoe UI,Roboto,Arial,sans-serif; }
html, body{ margin:0; padding:0; }
img, video{ max-width:100%; height:auto; }
a{ color:inherit; text-decoration:none; }
button{ font:inherit; }

::-webkit-scrollbar{ display:none; }
html{ scrollbar-width:none; -ms-overflow-style:none; }

body{
  color: var(--text);
  background: rgb(248 250 252);
  overflow-x: hidden;
  padding-bottom: 92px; /* evita CTA flutuante cobrir conteúdo */
}

.container-page{
  max-width: 1200px;
  margin: 0 auto;
  padding-left: 1rem;
  padding-right: 1rem;
}

.hero-gradient{
  background:
    radial-gradient(circle at 10% 0%, rgba(236,72,153,0.25), transparent 45%),
    radial-gradient(circle at 90% 20%, rgba(109,40,217,0.35), transparent 55%),
    linear-gradient(135deg, rgba(15,23,42,1), rgba(30,41,59,1));
}

.section{ padding: 4rem 0; }
.section-head{ text-align:center; margin-bottom: 2.5rem; }

.section-title{
  font-size: clamp(1.8rem, 2.6vw, 2.6rem);
  font-weight: 800;
  letter-spacing: -0.02em;
}
.section-subtitle{ margin-top:.5rem; color: var(--muted); }

.card{
  background:#fff;
  border: 1px solid var(--border);
  border-radius: 1.25rem;
  box-shadow: 0 18px 45px rgba(2,6,23,0.08);
}

/* ===== Botões base ===== */
.btn-primary{
  display:inline-flex; align-items:center; justify-content:center;
  gap:.5rem;
  padding:.9rem 1.1rem;
  border-radius: 1rem;
  background: linear-gradient(135deg, var(--violet), var(--pink));
  color:#fff;
  font-weight:800;
  border: 0;
  box-shadow: 0 12px 25px rgba(109,40,217,0.25);
  transition: transform .15s ease, opacity .15s ease;
}
.btn-primary:hover{ transform: translateY(-1px); opacity:.95; }

.btn-secondary{
  display:inline-flex; align-items:center; justify-content:center;
  padding:.85rem 1.1rem;
  border-radius: 1rem;
  background:#fff;
  color: rgb(51 65 85);
  font-weight:800;
  border:1px solid var(--border);
  transition: background .15s ease, transform .15s ease;
}
.btn-secondary:hover{ background: rgb(248 250 252); transform: translateY(-1px); }

.btn-hero-primary{
  display:inline-flex; align-items:center; justify-content:center;
  padding: 1rem 1.2rem;
  border-radius: 1rem;
  background: #fff;
  color: var(--text);
  font-weight:900;
  box-shadow: 0 16px 35px rgba(0,0,0,0.25);
  transition: transform .15s ease, opacity .15s ease;
}
.btn-hero-primary:hover{ transform: translateY(-1px); opacity:.95; }

.btn-hero-secondary{
  display:inline-flex; align-items:center; justify-content:center;
  padding: 1rem 1.2rem;
  border-radius: 1rem;
  background: rgba(255,255,255,0.12);
  color:#fff;
  font-weight:900;
  border: 1px solid rgba(255,255,255,0.18);
  transition: transform .15s ease, background .15s ease;
}
.btn-hero-secondary:hover{ transform: translateY(-1px); background: rgba(255,255,255,0.16); }

.btn-footer{
  display:inline-flex; align-items:center; justify-content:center;
  padding:.75rem 1rem;
  border-radius: .9rem;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.12);
  transition: transform .15s ease, opacity .15s ease;
}
.btn-footer:hover{ transform: translateY(-1px); opacity:.95; }

/* ===== Links nav ===== */
.navlink{ position:relative; transition: color .15s ease; }
.navlink:hover{ color: var(--violet); }
.navlink:after{
  content:""; position:absolute; left:0; bottom:-6px;
  height:2px; width:0;
  background: linear-gradient(90deg, var(--violet), var(--pink));
  transition: width .2s ease;
}
.navlink:hover:after{ width:100%; }

.moblink{
  padding: .7rem .75rem;
  border-radius: .9rem;
  font-weight:800;
}
.moblink:hover{ background: rgb(248 250 252); }

/* ===== Hero cards ===== */
.trust-item{
  background: rgba(255,255,255,0.10);
  border: 1px solid rgba(255,255,255,0.14);
  padding: .75rem .85rem;
  border-radius: 1rem;
}
.feature-card{
  background: rgb(248 250 252);
  border: 1px solid var(--border);
  border-radius: 1rem;
  padding: .9rem 1rem;
}
.feature-title{ font-weight:900; }
.feature-desc{ color: rgb(71 85 105); font-size:.95rem; margin-top:.15rem; }

/* ===== Vídeo ===== */
.video-frame{ padding: 1rem; }
.video-el{
  width:100%;
  height:auto;
  max-height: 640px;
  border-radius: 1rem;
  background:#000;
}

/* ===== Cards serviços ===== */
.service-card{
  background:#fff;
  border: 1px solid var(--border);
  border-radius: 1.25rem;
  padding: 1.4rem;
  box-shadow: 0 18px 45px rgba(2,6,23,0.06);
  transition: transform .15s ease, box-shadow .15s ease;
}
.service-card:hover{
  transform: translateY(-2px);
  box-shadow: 0 22px 55px rgba(2,6,23,0.10);
}
.service-icon{ font-size: 2rem; }
.service-title{ font-weight: 900; font-size: 1.2rem; margin-top: .5rem; }
.service-text{ color: rgb(71 85 105); margin-top: .35rem; }

/* ===== Steps ===== */
.step-card{
  background:#fff;
  border:1px solid var(--border);
  border-radius: 1.25rem;
  padding: 1.2rem;
}
.step-number{
  width:44px; height:44px;
  border-radius: 999px;
  display:flex; align-items:center; justify-content:center;
  font-weight: 900;
  color:#fff;
  background: linear-gradient(135deg, var(--violet), var(--pink));
}
.step-title{ font-weight: 900; margin-top:.75rem; }
.step-text{ color: rgb(71 85 105); margin-top:.25rem; font-size:.95rem; }

/* ===== Bullet / stats ===== */
.bullet{
  background: rgb(248 250 252);
  border: 1px solid var(--border);
  border-radius: 1rem;
  padding: 1rem;
}
.bullet-title{ font-weight: 900; }
.bullet-text{ color: rgb(71 85 105); margin-top:.2rem; font-size:.95rem; }

.mini-stat{
  background: rgb(248 250 252);
  border: 1px solid var(--border);
  border-radius: 1rem;
  padding: .8rem;
}
.mini-stat-k{ color: var(--muted); font-size:.8rem; font-weight:800; }
.mini-stat-v{ font-weight:900; margin-top:.15rem; }

/* ===== Preços ===== */
.price-card{
  background:#fff;
  border: 1px solid var(--border);
  border-radius: 1.25rem;
  padding: 1.6rem;
  box-shadow: 0 18px 45px rgba(2,6,23,0.06);
  position: relative;
}
.price-card-featured{
  border-color: rgba(109,40,217,0.35);
  box-shadow: 0 28px 70px rgba(109,40,217,0.12);
}
.price-badge{
  display:inline-flex;
  font-size:.72rem;
  font-weight:900;
  padding:.35rem .6rem;
  border-radius:999px;
  border:1px solid var(--border);
  background: rgb(248 250 252);
  color: rgb(51 65 85);
}
.price-badge.featured{
  background: rgba(109,40,217,0.10);
  border-color: rgba(109,40,217,0.18);
  color: rgb(109 40 217);
}
.price-title{ font-weight: 900; font-size: 1.35rem; margin-top: .8rem; }
.price-sub{ color: var(--muted); margin-top:.35rem; }
.price-list{ margin-top: 1rem; display:grid; gap:.6rem; color: rgb(51 65 85); font-size:.95rem; }
.price-list li{ padding-left: 1.1rem; position: relative; }
.price-list li:before{
  content:"✓";
  position:absolute; left:0; top:0;
  font-weight:900;
  color: rgb(16 185 129);
}

/* ===== FAQ ===== */
.faq{
  background:#fff;
  border: 1px solid var(--border);
  border-radius: 1.1rem;
  padding: 1rem 1.1rem;
}
.faq summary{ cursor:pointer; font-weight:900; }
.faq p{ margin-top:.75rem; color: rgb(71 85 105); }

/* ===== Form ===== */
.label{
  display:block;
  font-size:.85rem;
  font-weight:900;
  color: rgb(51 65 85);
  margin-bottom:.35rem;
}
.input{
  width:100%;
  padding: .85rem 1rem;
  border-radius: 1rem;
  border: 1px solid var(--border);
  background:#fff;
  outline:none;
  transition: box-shadow .15s ease, border-color .15s ease;
}
.input:focus{
  border-color: rgba(109,40,217,0.45);
  box-shadow: 0 0 0 4px rgba(109,40,217,0.12);
}
.error{
  margin-top:.35rem;
  color: rgb(220 38 38);
  font-size:.8rem;
  min-height: 1rem;
}

.hint{
  background: rgb(248 250 252);
  border: 1px solid var(--border);
  border-radius: 1rem;
  padding: .75rem .9rem;
}

/* ===== Galeria thumbs ===== */
.scrollbar-hide::-webkit-scrollbar{ display:none; }
.thumb-scroll-btn{
  position:absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 5;
  width:38px; height:38px;
  border-radius:999px;
  background: rgba(255,255,255,0.92);
  border: 1px solid var(--border);
  box-shadow: 0 14px 30px rgba(2,6,23,0.12);
  font-size: 22px;
  display:flex; align-items:center; justify-content:center;
}

/* ===== CTA flutuante ===== */
.floating-cta{
  position: fixed;
  right: 16px;
  bottom: 16px;
  display:flex;
  flex-direction: column;
  gap: 10px;
  z-index: 60;
}
.floating-whats, .floating-form{
  display:flex;
  align-items:center;
  justify-content:center;
  padding: .85rem 1rem;
  border-radius: 999px;
  box-shadow: 0 18px 45px rgba(2,6,23,0.18);
  border: 1px solid rgba(255,255,255,0.18);
  backdrop-filter: blur(8px);
}
.floating-whats{ background: rgba(16,185,129,0.95); color:#fff; }
.floating-form{ background: rgba(109,40,217,0.95); color:#fff; }

/* Responsividade real em grids */
.min-w-0 { min-width: 0; }

/* Chips */
.quick-chip{
  width:100%;
  padding:.75rem .9rem;
  border-radius: 999px;
  font-weight:900;
  font-size:.9rem;
  border: 1px solid var(--border);
  background: rgb(248 250 252);
  color: rgb(51 65 85);
  transition: transform .15s ease, background .15s ease, border-color .15s ease;
}
.quick-chip:hover{ transform: translateY(-1px); background: rgb(241 245 249); }

/* Estado selecionado dos chips (CORREÇÃO) */
.quick-chip.is-selected{
  background: rgba(109,40,217,0.10);
  border-color: rgba(109,40,217,0.40);
  box-shadow: 0 10px 24px rgba(109,40,217,0.12);
}

/* Evitar CTA cobrir ao navegar */
#contato { scroll-margin-top: 110px; }

/* ===== TOP MENU COMPACTO ===== */
.topbar{
  background: #0b1220;
  color: rgba(255,255,255,.88);
  font-size: 12px;
}
.topbar-inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap: 12px;
  padding: 6px 0;
}
.topbar-text{
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  opacity:.92;
}
.topbar-actions{
  display:flex;
  align-items:center;
  gap: 10px;
  flex-shrink: 0;
}
.topbar-link{ color: rgba(255,255,255,.9); }
.topbar-link:hover{ opacity:.9; text-decoration: underline; text-underline-offset: 3px; }
.topbar-sep{ opacity:.55; }

.header-compact{
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255,255,255,.88);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
}
.nav-compact{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap: 12px;
  padding: 10px 0;
}

.brand{
  display:flex;
  align-items:center;
  gap: 10px;
  min-width: 0;
}
.brand-logo{ height: 34px; width:auto; }
.brand-text{ line-height: 1.05; min-width:0; }
.brand-title{
  font-weight: 900;
  font-size: 15px;
  letter-spacing: -0.02em;
  white-space: nowrap;
}
.brand-sub{
  font-size: 11px;
  color: var(--muted);
  white-space: nowrap;
}

.nav-links{
  display:none;
  align-items:center;
  gap: 18px;
  color: rgb(51 65 85);
  font-weight: 800;
}
.nav-actions{ display:flex; align-items:center; gap: 10px; }

.btn-mini{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding: 8px 12px;
  border-radius: 999px;
  font-weight: 900;
  font-size: 13px;
  transition: transform .15s ease, opacity .15s ease, background .15s ease;
}
.btn-mini:hover{ transform: translateY(-1px); opacity:.95; }

.btn-solid{
  color:#fff;
  background: linear-gradient(135deg, var(--violet), var(--pink));
  box-shadow: 0 14px 30px rgba(109,40,217,0.18);
}
.btn-ghost{
  color: rgb(51 65 85);
  background: #fff;
  border: 1px solid var(--border);
}

.btn-menu{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding: 8px 10px;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: #fff;
}
.btn-menu:hover{ background: rgb(248 250 252); }

.mobile{
  border-top: 1px solid var(--border);
  background: #fff;
}
.mobile-inner{
  padding: 10px 0 14px;
  display:grid;
  gap: 6px;
}
.mobile-actions{
  margin-top: 8px;
  display:grid;
  gap: 8px;
}

/* Breakpoint */
@media (min-width: 1024px){
  .nav-links{ display:flex; }
  .btn-menu{ display:none; }
}

/* Mobile ajustes */
@media (max-width: 640px){
  .section{ padding: 3rem 0; }
  .floating-cta{ right: 12px; bottom: 12px; }
  .floating-whats, .floating-form{ padding:.8rem .95rem; }
  .topbar-text{ display:none; }
  .topbar-inner{ justify-content:flex-end; }
}
