:root{
  /* Paleta baseada na logo (metal + fogo) */
  --bg: #0B0B0D;
  --bg2:#121319;
  --card:#121319;
  --text:#E6E6E8;
  --muted:#B7BCC6;
  --line: rgba(255,255,255,.10);

  --accent:#FF7A00;   /* laranja fogo */
  --accent2:#E53935;  /* vermelho brasa */

  --shadow: 0 12px 40px rgba(0,0,0,.55);
  --radius: 18px;
  --max: 1120px;
}

*{box-sizing:border-box}
html{scroll-behavior:smooth}
body{
  margin:0;
  font-family: system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  background:
    radial-gradient(1100px 560px at 15% 0%, rgba(255,122,0,.22), transparent 55%),
    radial-gradient(900px 560px at 95% 10%, rgba(229,57,53,.18), transparent 55%),
    linear-gradient(180deg, var(--bg), #07070A 70%);
  color:var(--text);
}

.container{max-width:var(--max); margin:0 auto; padding:0 18px}

.topbar{
  border-bottom:1px solid var(--line);
  background: rgba(7,7,10,.70);
  backdrop-filter: blur(10px);
}
.topbar-inner{
  display:flex; justify-content:space-between; gap:12px;
  padding:10px 0; font-size:14px; color:var(--muted);
}
.topbar .sep{opacity:.6; padding:0 8px}
.topbar .dot{
  width:10px; height:10px; border-radius:50%;
  background: var(--accent);
  display:inline-block; margin-right:8px;
  box-shadow: 0 0 18px rgba(255,122,0,.55);
}
.topbar a{color:var(--muted); text-decoration:none}
.topbar a:hover{color:var(--text)}

.header{
  position:sticky; top:0; z-index:50;
  background: rgba(7,7,10,.60);
  backdrop-filter: blur(12px);
  border-bottom:1px solid var(--line);
}
.header-inner{
  display:flex; align-items:center; justify-content:space-between;
  padding:14px 0;
}
.brand{display:flex; align-items:center; gap:12px; text-decoration:none; color:var(--text)}
.brand-mark{
  width:44px; height:44px; border-radius:14px;
  background: linear-gradient(135deg, rgba(255,122,0,.22), rgba(229,57,53,.18));
  display:grid; place-items:center;
  border:1px solid rgba(255,255,255,.12);
  box-shadow: 0 10px 30px rgba(0,0,0,.35);
}
.brand-logo{
  width: 100%;
  height: 100%;
  object-fit: cover;      /* preenche bonito */
  border-radius: 14px;    /* igual ao quadrado */
  display: block;
}
.brand-name{font-weight:900; letter-spacing:.2px}
.brand-sub{font-size:13px; color:var(--muted)}

.nav{display:flex; align-items:center; gap:18px}
.nav a{color:var(--muted); text-decoration:none; font-weight:800}
.nav a:hover{color:var(--text)}

.menu-btn{
  display:none;
  width:42px; height:42px; border-radius:14px;
  border:1px solid rgba(255,255,255,.14);
  background: rgba(255,255,255,.06);
  cursor:pointer;
}
.menu-btn span{
  display:block; height:2px; width:18px; margin:4px auto;
  background: rgba(255,255,255,.88);
  border-radius:2px;
}

.mobile-nav{
  padding: 10px 0 16px;
  display: flex;
  flex-wrap: wrap;        /* quebra linha se faltar espaço */
  gap: 10px;
  align-items: center;
  justify-content: center; /* centraliza */
}

.mobile-nav a{
  display: inline-flex;
  padding: 10px 12px;
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.06);
  color: var(--muted);
  text-decoration: none;
  font-weight: 900;
}

.mobile-nav a:hover{
  color: var(--text);
  background: rgba(255,255,255,.09);
}
.mobile-nav a.btn{
  background: linear-gradient(135deg, var(--accent), var(--accent2));
  color: #0B0B0D;
  border: 1px solid rgba(255,255,255,.14);
}

.hero{padding:44px 0 18px}
.hero-grid{
  display:grid;
  grid-template-columns: 1.3fr .9fr;
  gap:26px;
  align-items:stretch;
}
.pill{
  display:inline-flex; align-items:center; gap:8px;
  border:1px solid rgba(255,255,255,.14);
  background: rgba(255,255,255,.06);
  padding:8px 12px;
  border-radius:999px;
  color:var(--muted);
  font-weight:900;
  margin:0 0 10px;
}
h1{font-size:44px; line-height:1.05; margin:10px 0 12px}
.lead{font-size:18px; color:var(--muted); line-height:1.6; margin:0 0 18px}

.hero-cta{display:flex; gap:12px; flex-wrap:wrap; margin:16px 0 18px}

.btn{
  display:inline-flex; align-items:center; justify-content:center;
  gap:10px;
  border-radius: 14px;
  padding:12px 16px;
  border:1px solid rgba(255,255,255,.14);
  background: linear-gradient(135deg, var(--accent), var(--accent2));
  color:#0B0B0D;
  font-weight:1000;
  text-decoration:none;
  box-shadow: 0 16px 40px rgba(0,0,0,.32);
}
.btn:hover{filter:brightness(1.04)}
.btn.small{padding:10px 12px; border-radius:12px; font-weight:1000}
.btn.big{padding:14px 18px; border-radius:16px; font-size:16px}

.btn.ghost{
  background: rgba(255,255,255,.06);
  color: var(--text);
}
.btn.ghost:hover{background: rgba(255,255,255,.09)}

.link{color:var(--muted); text-decoration:none; font-weight:900}
.link:hover{color:var(--text)}

.stats{
  display:grid; grid-template-columns:repeat(3, 1fr);
  gap:10px; margin-top:18px;
}
.stat{
  border:1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.04);
  border-radius: var(--radius);
  padding:12px 14px;
}
.stat-n{font-weight:1000}
.stat-d{color:var(--muted); font-size:13px; margin-top:4px}

.hero-card{
  position:relative;
  border:1px solid rgba(255,255,255,.14);
  background: rgba(255,255,255,.05);
  border-radius: calc(var(--radius) + 6px);
  padding:18px;
  box-shadow: var(--shadow);
  overflow:hidden;
}
.card-glow{
  position:absolute; inset:-2px;
  background:
    radial-gradient(420px 240px at 20% 10%, rgba(255,122,0,.35), transparent 55%),
    radial-gradient(380px 240px at 90% 25%, rgba(229,57,53,.25), transparent 55%);
  filter: blur(12px);
  opacity:.55;
  pointer-events:none;
}
.card-title{margin:0 0 10px; font-size:20px}
.steps{margin:0 0 14px; padding-left:18px; color:var(--muted); line-height:1.55}
.card-actions{display:flex; gap:10px; align-items:center; flex-wrap:wrap}
.mini-note{
  margin-top:14px;
  padding-top:14px;
  border-top:1px solid rgba(255,255,255,.12);
  display:grid; gap:6px;
}
.badge{
  display:inline-flex; width:max-content;
  padding:6px 10px; border-radius:999px;
  border:1px solid rgba(255,255,255,.14);
  background: rgba(255,255,255,.06);
  color:var(--muted); font-weight:1000; font-size:12px;
}
.price{font-size:22px; font-weight:1000}
.muted{color:var(--muted)}
.tiny{font-size:12px; opacity:.9}

.section{padding:56px 0}
.section.alt{
  background: linear-gradient(180deg, rgba(255,255,255,.03), rgba(255,255,255,0));
  border-top:1px solid rgba(255,255,255,.08);
  border-bottom:1px solid rgba(255,255,255,.08);
}
.section-head{margin-bottom:18px}
.section-head h2{margin:0 0 8px; font-size:30px}
.section-head p{margin:0}

.grid{
  display:grid;
  grid-template-columns: repeat(2, 1fr);
  gap:14px;
}
.card{
  border:1px solid rgba(255,255,255,.12);
  background: rgba(7,7,10,.35);
  border-radius: var(--radius);
  padding:16px;
}
.card h3{margin:0 0 8px}
.card p{margin:0 0 12px; color:var(--muted); line-height:1.55}
.list{margin:0; padding-left:18px; color:var(--muted); line-height:1.55}

.callout{
  margin-top:16px;
  border:1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.05);
  border-radius: var(--radius);
  padding:16px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:12px;
  flex-wrap:wrap;
}

.gallery{
  display:grid;
  grid-template-columns: repeat(4, 1fr);
  gap:12px;
}
.shot{
  margin:0;
  border:1px solid rgba(255,255,255,.12);
  background: rgba(7,7,10,.35);
  border-radius: var(--radius);
  overflow:hidden;
}
.ph{
  height:160px;
  display:grid;
  place-items:center;
  color: rgba(255,255,255,.80);
  background: linear-gradient(135deg, rgba(255,122,0,.12), rgba(229,57,53,.12));
  font-weight:1000;
  letter-spacing:1px;
}
.shot figcaption{
  padding:10px 12px;
  color: var(--muted);
  font-weight:900;
  font-size:13px;
}
.note{
  margin-top:12px;
  color: var(--muted);
  font-size:14px;
}

.testimonials{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap:14px;
}
.quote{
  margin:0;
  border:1px solid rgba(255,255,255,.12);
  background: rgba(7,7,10,.35);
  border-radius: var(--radius);
  padding:16px;
}
.quote p{margin:0 0 12px; line-height:1.6}
.quote footer{color:var(--muted); font-weight:900}

/* Vídeos do YouTube */
.video-grid{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap:14px;
  margin-top:16px;
}
.video{
  border:1px solid rgba(255,255,255,.12);
  background: rgba(7,7,10,.35);
  border-radius: var(--radius);
  overflow:hidden;
  box-shadow: var(--shadow);
}
.video iframe{
  width:100%;
  aspect-ratio: 16 / 9;
  display:block;
}

.faq{
  border:1px solid rgba(255,255,255,.12);
  background: rgba(7,7,10,.35);
  border-radius: var(--radius);
  overflow:hidden;
}
details{
  padding:14px 16px;
  border-bottom:1px solid rgba(255,255,255,.10);
}
details:last-child{border-bottom:none}
summary{
  cursor:pointer;
  font-weight:1000;
}
details p{
  margin:10px 0 0;
  color: var(--muted);
  line-height:1.55;
}

.contact-grid{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap:14px;
}
.contact-card{
  border:1px solid rgba(255,255,255,.12);
  background: rgba(7,7,10,.35);
  border-radius: var(--radius);
  padding:16px;
}
.contact-info{
  margin-top:14px;
  display:grid;
  gap:8px;
  color: var(--muted);
}
form{display:grid; gap:10px; margin-top:10px}
label{display:grid; gap:6px; font-weight:1000}
input, textarea{
  width:100%;
  border-radius: 14px;
  padding:12px 12px;
  border:1px solid rgba(255,255,255,.14);
  background: rgba(255,255,255,.06);
  color: var(--text);
  outline:none;
}
input:focus, textarea:focus{
  border-color: rgba(255,122,0,.70);
  box-shadow: 0 0 0 4px rgba(255,122,0,.12);
}

.footer{
  border-top:1px solid rgba(255,255,255,.10);
  background: rgba(7,7,10,.70);
  padding:22px 0;
}
.footer-inner{
  display:flex; align-items:center; justify-content:space-between;
  gap:12px; flex-wrap:wrap;
}
.footer-links{display:flex; gap:12px}
.footer-links a{color:var(--muted); text-decoration:none; font-weight:900}
.footer-links a:hover{color:var(--text)}

@media (max-width: 960px){
  .hero-grid{grid-template-columns:1fr}
  h1{font-size:38px}
  .gallery{grid-template-columns:repeat(2, 1fr)}
  .testimonials{grid-template-columns:1fr}
  .grid{grid-template-columns:1fr}
  .video-grid{grid-template-columns:1fr}
  .contact-grid{grid-template-columns:1fr}
  .nav{display:none}
  .menu-btn{display:inline-grid; place-items:center}
}
@media (max-width: 520px){
  h1{font-size:32px}
  .stats{grid-template-columns:1fr}
  .topbar-inner{flex-direction:column; align-items:flex-start}
}
.map{
  margin-top: 10px;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.04);
}

.map iframe{
  width: 100%;
  height: 320px;
  border: 0;
  display: block;
}

@media (max-width: 520px){
  .map iframe{ height: 260px; }
}
.map-wide{
  grid-column: 1 / -1; /* ocupa a linha toda */
}

.map{
  margin-top: 10px;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.04);
}

.map iframe{
  width: 100%;
  height: 360px;
  border: 0;
  display: block;
}

@media (max-width: 960px){
  .map iframe{ height: 280px; }
}
