:root{
  --bg:#0b1020;
  --card:#121a33;
  --muted:#9aa7c7;
  --text:#eaf0ff;
  --line:rgba(255,255,255,.10);
  --accent:#6ee7ff;
  --accent2:#a78bfa;
  --shadow: 0 18px 60px rgba(0,0,0,.45);
  --radius:18px;
  --max:1120px;
}

*{box-sizing:border-box}
html,body{height:100%}

body{
  margin:0;
  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, "Apple Color Emoji","Segoe UI Emoji";
  color:var(--text);
  background:
    radial-gradient(1000px 600px at 15% 10%, rgba(167,139,250,.18), transparent 60%),
    radial-gradient(900px 600px at 85% 15%, rgba(110,231,255,.18), transparent 55%),
    radial-gradient(1200px 800px at 50% 120%, rgba(52,211,153,.10), transparent 55%),
    var(--bg);
  line-height:1.5;
}

a{color:inherit}
.container{max-width:var(--max); margin:0 auto; padding:0 20px}

/* Topbar */
.topbar{
  position:sticky; top:0; z-index:10;
  backdrop-filter: blur(10px);
  background: rgba(11,16,32,.65);
  border-bottom:1px solid var(--line);
}

.topbar-inner{
  display:flex; align-items:center; justify-content:space-between;
  height:70px;
  gap:12px;
}

.brand{
  display:flex; align-items:center;
  gap:8px;
  text-decoration:none;
}

.logo-img{
  width:38px;
  height:38px;
  border-radius:12px;
  object-fit:cover;
  display:block;
}

.brand-name{
  font-size:16px;
  font-weight:900;
  letter-spacing:.2px;
  white-space:nowrap;
}

nav{display:flex; gap:14px; align-items:center; flex-wrap:nowrap}
nav a{
  text-decoration:none;
  color:var(--muted);
  font-weight:800;
  font-size:14px;
  padding:10px 8px;
  border-radius:12px;
  white-space:nowrap;
}
nav a:hover{color:var(--text); background:rgba(255,255,255,.06)}

/* Buttons */
.btn{
  display:inline-flex; align-items:center; justify-content:center; gap:10px;
  padding:14px 18px;
  border-radius:14px;
  border:1px solid var(--line);
  background: rgba(255,255,255,.06);
  color: var(--text);
  text-decoration:none;
  font-weight:900;
  letter-spacing:.2px;
  cursor:pointer;
  transition:transform .12s ease, background .12s ease, border-color .12s ease, box-shadow .12s ease;
  user-select:none;
  white-space:nowrap;
}

.btn:hover{
  transform:translateY(-1px);
  background: rgba(255,255,255,.09);
  border-color:rgba(255,255,255,.18);
}

.btn-primary{
  border:none;
  background: linear-gradient(135deg, var(--accent), var(--accent2));
  color:#061022;
  box-shadow: 0 18px 55px rgba(167,139,250,.22);
}

.btn-primary:hover{
  background: linear-gradient(135deg, rgba(110,231,255,.95), rgba(167,139,250,.95));
  box-shadow: 0 18px 65px rgba(167,139,250,.28);
}

.btn-soft{
  background: rgba(52, 211, 153, .88);
  border:1px solid rgba(52,211,153,.25);
  color:#061022;
  box-shadow: 0 18px 55px rgba(52,211,153,.18);
}
.btn-soft:hover{
  background: rgb(52, 211, 153);
  border:1px solid rgba(52,211,153,.25);
}

.trust-badge{
  display:inline-flex;
  align-items:center;
  gap:8px;
  margin-top:18px;
  padding:10px 14px;
  border-radius:14px;
  background: rgba(110,231,255,.10);
  border:1px solid rgba(110,231,255,.25);
  font-weight:900;
  font-size:14px;
  color:#6ee7ff;
  letter-spacing:.2px;
}


/* Hero */
.pill{
  display:inline-flex; align-items:center; gap:10px;
  padding:10px 12px;
  border-radius:999px;
  border:1px solid var(--line);
  background:rgba(255,255,255,.05);
  color:var(--muted);
  font-weight:800;
  font-size:13px;
}

.hero{padding:72px 0 24px}

.hero-grid{
  display:grid;
  grid-template-columns: 1.1fr .9fr;
  gap:28px;
  align-items:stretch;
}

h1{
  margin:14px 0 10px;
  font-size: clamp(32px, 4.2vw, 54px);
  line-height:1.05;
  letter-spacing:-.8px;
}

.lead{
  font-size: clamp(16px, 1.35vw, 18.5px);
  color:rgba(154,167,199,.95);
  margin:0 0 18px;
  max-width: 58ch;
}

.cta-row{
  display:flex;
  gap:12px;
  flex-wrap:wrap;
  margin-top:36px
}

.fineprint{
  color:var(--muted);
  font-size:13px;
  margin-top:14px
}

/* Cards + sections */
.card{
  background: rgba(18,26,51,.72);
  border:1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.hero-card{
  padding:18px;
  display:flex;
  flex-direction:column;
  gap:14px;
  height:fit-content;   /* importante */
  min-height: 320px;
}

.hero-card .mini-title{
  font-weight:900;
  font-size:16px;
  color:rgba(234,240,255,.92);
  letter-spacing:.4px;
}

.stats{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap:12px;
}

.stat{
  padding:14px;
  border-radius:14px;
  border:1px solid var(--line);
  background:rgba(255,255,255,.04);
}

.stat b{display:block; font-size:18px; margin-bottom:4px}
.stat span{color:var(--muted); font-size:13px}

.list{
  margin:0;
  padding-left:18px;
  color:var(--muted)
}
.list li{
  margin:10px 0;
  list-style: none;
}

section{padding:44px 0}

.section-title{
  font-size: clamp(22px, 2.2vw, 30px);
  margin:0 0 10px;
  letter-spacing:-.4px;
}
.section-sub{
  color:var(--muted);
  margin:0 0 18px;
  max-width: 72ch
}

.grid-3{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap:14px;
}

.feature{
  padding:18px;
  border-radius: var(--radius);
  border:1px solid var(--line);
  background:rgba(255,255,255,.03);
}

.feature h3{margin:0 0 6px; font-size:16px}
.feature p{margin:0; color:var(--muted); font-size:14px}

.badge{
  display:inline-flex; align-items:center; justify-content:center;
  width:34px; height:34px;
  border-radius:12px;
  margin-bottom:10px;
  background:rgba(255,255,255,.06);
  border:1px solid var(--line);
  font-size:16px;
}

.split{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap:16px;
  align-items:start;
}

.box{
  padding:18px;
  border-radius: var(--radius);
  border:1px solid var(--line);
  background:rgba(255,255,255,.03);
}

.box h3{margin:0 0 10px; font-size:16px}
.box p{margin:0; color:var(--muted)}

.quote{
  padding:20px;
  border-radius: var(--radius);
  background: linear-gradient(135deg, rgba(110,231,255,.10), rgba(167,139,250,.10));
  border:1px solid rgba(255,255,255,.14);
}

blockquote{margin:0; color:rgba(234,240,255,.95); font-weight:700}
.quote small{display:block; margin-top:10px; color:var(--muted)}

.faq details{
  border:1px solid var(--line);
  background:rgba(255,255,255,.03);
  border-radius: 16px;
  padding:14px 16px;
  margin:10px 0;
}

.faq summary{
  cursor:pointer;
  font-weight:900;
  list-style:none;
}
.faq summary::-webkit-details-marker{display:none}
.faq p{margin:10px 0 0; color:var(--muted)}

.footer{
  padding:28px 0 60px;
  border-top:1px solid var(--line);
  margin-top:30px;
  color:var(--muted);
  font-size:13px;
}

.footer-row{
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap:12px;
  flex-wrap:wrap;
}

.form{
  display:flex; flex-direction:column; gap:10px;
  padding:18px;
  border-radius: var(--radius);
  border:1px solid var(--line);
  background:rgba(255,255,255,.03);
}

label{font-size:13px; color:var(--muted); font-weight:800}

input, textarea{
  width:100%;
  padding:12px 12px;
  border-radius:12px;
  border:1px solid rgba(255,255,255,.16);
  background: rgba(6,10,22,.35);
  color: var(--text);
  outline:none;
}

textarea{min-height:96px; resize:vertical}
input:focus, textarea:focus{border-color: rgba(110,231,255,.45)}

.divider{height:1px; background:var(--line); margin:18px 0}

/* ===== Galeria ===== */
.gallery{
  display:grid;
  grid-template-columns: repeat(12, 1fr);
  gap:14px;
}

.g-item{
  grid-column: span 4;
  position:relative;
  border-radius: var(--radius);
  overflow:hidden;
  border:1px solid var(--line);
  background: rgba(255,255,255,.03);
  cursor:pointer;
  height: auto;         
  min-height: 220px;

}

.g-item img{
  width:100%;
  height:100%;
  max-height: 260px; 
  object-fit: contain;
  display:block;
  background: rgba(0,0,0,.08);
}

.g-tag{
  position:absolute;
  left:12px;
  top:12px;                 
  bottom:auto;
  padding:8px 10px;
  border-radius: 999px;
  background: rgba(6,10,22,.75);
  border:1px solid rgba(255,255,255,.18);
  font-weight:900;
  font-size:12px;
}


.g-item.wide{
  grid-column: span 8;
  height: auto;
}


.g-block{
  padding-bottom: 40px;
  border-bottom: 1px solid var(--line);
  margin-bottom: 40px;
}

.print-title{
  font-size: 18px;
  font-weight: 900;
  margin: 0 0 6px;
  margin-top: 26px;
  letter-spacing: -.2px;
  line-height: 1.2;
}

.print-sub{
  font-size: 16px;
  color: var(--muted);
  margin: 0 0 14px;
  max-width: 70ch;
}

/* deixa a galeria “respirar” quando tem 1 item só */
.g-block .gallery{
  margin-top: 6px;
}

/* Vídeo */
.video-wrap{
  border-radius: var(--radius);
  overflow:hidden;
  border:1px solid var(--line);
  background: rgba(255,255,255,.03);
  box-shadow: var(--shadow);
}

.ratio{
  position:relative;
  width:100%;
  padding-top:56.25%;
}

.ratio iframe, .ratio video{
  position:absolute; inset:0;
  width:100%; height:100%;
  border:0;
}

/* ===== Depoimentos (prints reais) ===== */
.testimonials-grid{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap:14px;
  margin-top:14px;
}

.t-card{
  padding:18px;
  border-radius: var(--radius);
  border:1px solid var(--line);
  background:rgba(255,255,255,.03);
}

.t-head{
  display:flex;
  align-items:center;
  gap:12px;
  margin-bottom:12px;
}

.t-badge{
  width:38px;
  height:38px;
  display:flex;
  align-items:center;
  justify-content:center;
  border-radius:12px;
  border:1px solid rgba(255,255,255,.14);
  background: rgba(255,255,255,.06);
  font-weight:900;
}

.t-who strong{
  display:block;
  font-size:15px;
  font-weight:900;
}

.t-who span{
  display:block;
  font-size:12.5px;
  color:var(--muted);
  margin-top:2px;
}

/* print dentro do card */
.t-print{
  width:100%;
  border:1px solid rgba(255,255,255,.12);
  background: rgba(0,0,0,.15);
  border-radius: 18px;
  overflow:hidden;
  padding:14px;
  display:flex;
  align-items:center;
  justify-content:center;
}

.t-print img{
  width:100%;
  max-height:500px;
  object-fit:contain;
  border-radius:12px;
  box-shadow: 0 12px 35px rgba(0,0,0,.45);
}


.t-print img{
  width:100%;
  max-height:520px;
  object-fit:contain;
  display:block;
  background: rgba(255,255,255,.02);
  box-shadow: 0 10px 30px rgba(0,0,0,.45);
  border-radius:12px;
}


.t-zoom{
  position:absolute;
  right:12px;
  bottom:12px;
  font-size:12px;
  font-weight:900;
  color: rgba(234,240,255,.92);
  padding:8px 10px;
  border-radius: 999px;
  border:1px solid rgba(255,255,255,.16);
  background: rgba(6,10,22,.55);
}

@media (max-width: 960px){
  .testimonials-grid{ grid-template-columns: 1fr; }
  .t-print img{ height: 320px; }
}


/* ===== Modal (Lightbox) ===== */
.modal{
  position:fixed; inset:0; z-index:9999;
  display:none;
  background: rgba(0,0,0,.72);
  backdrop-filter: blur(6px);
  padding:20px;
}

.modal.open{display:flex; align-items:center; justify-content:center}

.modal-card{
  width:min(980px, 100%);
  border-radius: var(--radius);
  overflow:hidden;
  border:1px solid rgba(255,255,255,.16);
  background: rgba(10,14,28,.85);
  box-shadow: 0 30px 90px rgba(0,0,0,.55);
}

.modal-img{
  width:100%;
  max-height: 72vh;
  object-fit:contain;
  display:block;
  background: rgba(0,0,0,.25);
}

.modal-bar{
  display:flex; align-items:center; justify-content:space-between;
  gap:10px;
  padding:12px 14px;
  border-top:1px solid rgba(255,255,255,.10);
  color: var(--muted);
  font-size:13px;
  flex-wrap:wrap;
}

.modal-actions{display:flex; gap:10px; align-items:center}

.icon-btn{
  appearance:none;
  border:1px solid rgba(255,255,255,.16);
  background: rgba(255,255,255,.06);
  color: var(--text);
  border-radius: 12px;
  padding:10px 12px;
  font-weight:900;
  cursor:pointer;
}
.icon-btn:hover{background: rgba(255,255,255,.09)}

/* ===== PREÇO ===== */
.price-box{
  margin: 20px 0 10px;
  padding: 16px 18px;
  border-radius: 16px;
  background: linear-gradient(135deg, rgba(110,231,255,.15), rgba(167,139,250,.15));
  border: 1px solid rgba(255,255,255,.18);
  display: inline-flex;
  flex-direction: column;
  gap: 8px;
  max-width: fit-content;
}

.price-badge{
  align-self: flex-start;
  background: rgba(255,255,255,.12);
  border: 1px solid rgba(255,255,255,.2);
  padding: 6px 10px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .3px;
}

.price-values{
  display: flex;
  align-items: baseline;
  gap: 12px;
  flex-wrap: wrap;
}

.price-old{
  font-size: 15px;
  color: var(--muted);
  text-decoration: line-through;
}

.price-new{
  font-size: 32px;
  font-weight: 900;
  color: #6ee7ff;
}

.price-note{
  font-size: 12px;
  color: var(--muted);
}

/* Acessibilidade */
button, a, input, select, textarea {
  -webkit-text-fill-color: currentColor;
}

/* Responsive */
@media (max-width: 960px){
  .hero-grid{grid-template-columns:1fr}
  nav{display:none}
  .grid-3{grid-template-columns:1fr}
  .split{grid-template-columns:1fr}
  .stats{grid-template-columns:1fr 1fr}

  .g-item{grid-column: span 12; height: 260px}
  .g-item.wide{grid-column: span 12; height: 240px}
  .g-item.lancamentos{grid-column: span 12; height: 300px}

  .btn{width:100%}
  .cta-row{flex-direction:column}
}

@media (max-width: 560px){
  .stats{grid-template-columns:1fr}
  .topbar-inner{gap:10px}
  .brand-name{display:none}

  .g-item{height: 200px}
  .g-item.wide{height: 220px}
  .g-item.lancamentos{height: 240px}
}

/* ===== DESKTOP: 3 itens wide ocupam linha inteira ===== */
@media (min-width: 961px){
  .g-item.wide{
    grid-column: 1 / -1;
    height: 360px;
  }
  .g-item:not(.wide){
    grid-column: span 6;
    height: 320px;
  }
}
