:root{
  --bg:#0b0b0b;
  --card:#121212;
  --text:#f6f6f6;
  --muted:#cfcfcf;
  --accent:#f58220; /* laranja */
  --accent2:#ffb15c;
  --line:rgba(255,255,255,.10);
  --shadow: 0 14px 40px rgba(0,0,0,.35);
  --radius: 18px;
  --max: 1180px;
  --headerH: 78px;
}
*{box-sizing:border-box}
html{scroll-behavior:smooth}
body{
  margin:0;
  font-family: system-ui, -apple-system, Segoe UI, Roboto, Ubuntu, Cantarell, Noto Sans, Arial, "Helvetica Neue", sans-serif;
  background: radial-gradient(1200px 800px at 15% 10%, rgba(245,130,32,.20), transparent 60%),
              radial-gradient(900px 700px at 90% 0%, rgba(255,177,92,.18), transparent 55%),
              var(--bg);
  color:var(--text);
  line-height:1.5;
}
a{color:inherit; text-decoration:none}
img{max-width:100%; display:block}
.container{width:100%; max-width:var(--max); margin:0 auto; padding:0 18px}
.btn{
  display:inline-flex; align-items:center; justify-content:center;
  gap:10px;
  padding:12px 16px;
  border-radius:999px;
  border:1px solid rgba(255,255,255,.14);
  background: rgba(255,255,255,.06);
  color:var(--text);
  font-weight:700;
  letter-spacing:.2px;
  transition: transform .15s ease, background .15s ease, border-color .15s ease;
  cursor:pointer;
}
.btn:hover{transform: translateY(-1px); background: rgba(255,255,255,.10); border-color: rgba(255,255,255,.22)}
.btn.primary{background: linear-gradient(135deg, var(--accent), #ff9f44); border-color: rgba(0,0,0,.10); color:#1a1a1a}
.btn.primary:hover{background: linear-gradient(135deg, #ff9f44, var(--accent));}
.badge{
  display:inline-flex; align-items:center; gap:8px;
  padding:6px 10px; border-radius:999px;
  background: rgba(245,130,32,.16);
  border:1px solid rgba(245,130,32,.35);
  color: #ffd8b4;
  font-weight:700;
  font-size:13px;
}
header{
  position:sticky; top:0; z-index:50;
  height:var(--headerH);
  background: rgba(11,11,11,.70);
  backdrop-filter: blur(10px);
  border-bottom:1px solid var(--line);
}
.nav{
  height:var(--headerH);
  display:flex; align-items:center; justify-content:space-between;
  gap:16px;
}
.brand{
  display:flex; align-items:center; gap:12px;
  min-width: 210px;
}
.brand img{height:40px; width:auto; border-radius:10px}
.brand .name{font-weight:900; letter-spacing:.5px}
.menu{
  display:flex; gap:18px; align-items:center;
}
.menu a{
  font-weight:800;
  color: rgba(255,255,255,.88);
  padding:10px 10px;
  border-radius:12px;
}
.menu a:hover{background: rgba(255,255,255,.06)}
.navRight{display:flex; align-items:center; gap:10px}
.burger{
  display:none;
  width:44px; height:44px;
  border-radius:14px;
  border:1px solid rgba(255,255,255,.14);
  background: rgba(255,255,255,.06);
  color:var(--text);
}
.burger svg{width:22px; height:22px}
.mobilePanel{
  display:none;
  position:fixed; inset: var(--headerH) 0 auto 0;
  background: rgba(11,11,11,.92);
  border-bottom:1px solid var(--line);
  padding:16px 18px 18px;
}
.mobilePanel a{
  display:block;
  padding:14px 12px;
  border-radius:14px;
  font-weight:900;
  border:1px solid rgba(255,255,255,.10);
  background: rgba(255,255,255,.04);
  margin-top:10px;
}
.mobilePanel a:hover{background: rgba(255,255,255,.08)}

.hero{
  padding: 34px 0 40px;
}
.heroGrid{
  display:grid;
  grid-template-columns: 1.15fr .85fr;
  gap:22px;
  align-items:stretch;
}
.heroCard{
  border-radius: var(--radius);
  overflow:hidden;
  box-shadow: var(--shadow);
  border:1px solid rgba(255,255,255,.10);
  background: linear-gradient(180deg, rgba(255,255,255,.06), rgba(255,255,255,.03));
  position:relative;
  min-height: 420px;
}
.heroSlide{
  position:absolute; inset:0;
  background-size:cover;
  background-position:center;
  opacity:0;
  transition: opacity .7s ease;
  filter:saturate(1.05) contrast(1.05);
}
.heroSlide.active{opacity:1}
.heroOverlay{
  position:absolute; inset:0;
  background: linear-gradient(90deg, rgba(0,0,0,.75) 0%, rgba(0,0,0,.45) 35%, rgba(0,0,0,.20) 65%, rgba(0,0,0,.15) 100%),
              linear-gradient(180deg, rgba(0,0,0,.05) 0%, rgba(0,0,0,.55) 100%);
}
.heroContent{
  position:relative;
  padding: 28px 26px;
  display:flex;
  flex-direction:column;
  height:100%;
}
.heroTitle{
  font-size: clamp(28px, 3.1vw, 44px);
  line-height:1.06;
  margin: 14px 0 10px;
  letter-spacing:-.8px;
}
.heroSubtitle{
  max-width: 52ch;
  color: rgba(255,255,255,.86);
  font-weight:600;
  margin:0 0 18px;
}
.heroActions{display:flex; gap:10px; flex-wrap:wrap; margin-top:auto}
.heroMini{
  border-radius: var(--radius);
  overflow:hidden;
  border:1px solid rgba(255,255,255,.10);
  background: rgba(255,255,255,.04);
  box-shadow: var(--shadow);
  display:flex;
  flex-direction:column;
}
.heroMiniTop{
  padding:14px 16px;
  border-bottom:1px solid var(--line);
  display:flex; align-items:center; justify-content:space-between; gap:10px;
}
.heroMiniTop strong{font-size:14px; letter-spacing:.2px}
.heroMiniTop span{font-size:12px; color: rgba(255,255,255,.70); font-weight:800}
.heroMiniImg{
  height: 170px;
  background-size:cover;
  background-position:center;
  position:relative;
}
.heroMiniImg::after{
  content:"";
  position:absolute; inset:0;
  background: linear-gradient(180deg, rgba(0,0,0,.05), rgba(0,0,0,.55));
}
.heroMiniBody{padding:14px 16px}
.kpis{display:grid; grid-template-columns: 1fr 1fr; gap:10px; margin-top:12px}
.kpi{
  border:1px solid rgba(255,255,255,.10);
  background: rgba(255,255,255,.04);
  border-radius:16px;
  padding:12px 12px;
}
.kpi b{display:block; font-size:18px}
.kpi small{color: rgba(255,255,255,.70); font-weight:700}

.section{padding: 42px 0}
.sectionHead{display:flex; align-items:flex-end; justify-content:space-between; gap:14px; margin-bottom:18px}
.sectionHead h2{margin:0; font-size: clamp(22px, 2vw, 30px); letter-spacing:-.5px}
.sectionHead p{margin:0; color: rgba(255,255,255,.75); font-weight:600; max-width: 60ch}
.grid3{display:grid; grid-template-columns: repeat(3,1fr); gap:14px}
.card{
  border:1px solid rgba(255,255,255,.10);
  background: rgba(255,255,255,.04);
  border-radius: var(--radius);
  padding:16px;
  box-shadow: var(--shadow);
}
.card h3{margin:0 0 6px; font-size:18px}
.card p{margin:0; color: rgba(255,255,255,.74); font-weight:600}
.icon{
  width:44px; height:44px;
  border-radius:16px;
  display:grid; place-items:center;
  background: rgba(245,130,32,.16);
  border:1px solid rgba(245,130,32,.30);
  margin-bottom:10px;
}
.icon svg{width:22px; height:22px}
.split{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap:16px;
  align-items:stretch;
}
.photoCard{
  border-radius: var(--radius);
  overflow:hidden;
  border:1px solid rgba(255,255,255,.10);
  background: rgba(255,255,255,.04);
  box-shadow: var(--shadow);
  min-height: 320px;
  position:relative;
}
.photoCard .bg{position:absolute; inset:0; background-size:cover; background-position:center; filter:saturate(1.05) contrast(1.05)}
.photoCard .shade{position:absolute; inset:0; background: linear-gradient(90deg, rgba(0,0,0,.65), rgba(0,0,0,.10))}
.photoCard .inner{position:relative; padding:18px}
.list{
  display:grid; gap:10px; margin-top:12px
}
.listItem{
  display:flex; gap:10px; align-items:flex-start;
  border:1px solid rgba(255,255,255,.10);
  background: rgba(255,255,255,.04);
  border-radius:16px;
  padding:12px 12px;
}
.check{
  width:22px; height:22px;
  border-radius:8px;
  background: rgba(245,130,32,.16);
  border:1px solid rgba(245,130,32,.35);
  display:grid; place-items:center; flex: 0 0 auto;
  margin-top:2px;
}
.check svg{width:14px; height:14px}
.listItem b{display:block}
.listItem span{color: rgba(255,255,255,.72); font-weight:650; font-size:14px}
.brands{
  display:flex; flex-wrap:wrap; gap:10px;
}
.pill{
  padding:10px 14px;
  border-radius:999px;
  border:1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.04);
  font-weight:900;
  color: rgba(255,255,255,.85);
}
.contactGrid{
  display:grid;
  grid-template-columns: .9fr 1.1fr;
  gap:16px;
}
.form{
  display:grid; gap:10px;
}
input, textarea{
  width:100%;
  border-radius:16px;
  border:1px solid rgba(255,255,255,.14);
  background: rgba(255,255,255,.04);
  color:var(--text);
  padding:12px 14px;
  font-weight:650;
  outline:none;
}
textarea{min-height:110px; resize:vertical}
input:focus, textarea:focus{border-color: rgba(245,130,32,.55)}
iframe{width:100%; border:0; border-radius: var(--radius); min-height: 360px}

footer{
  border-top:1px solid var(--line);
  padding: 26px 0;
  color: rgba(255,255,255,.70);
}
.footerGrid{display:flex; flex-wrap:wrap; align-items:center; justify-content:space-between; gap:10px}
.footerLinks{display:flex; gap:12px; flex-wrap:wrap}
.footerLinks a{padding:8px 10px; border-radius:12px; border:1px solid rgba(255,255,255,.10); background: rgba(255,255,255,.03)}
.footerLinks a:hover{background: rgba(255,255,255,.06)}

.whatsappFloat{
  position:fixed;
  right:18px;
  bottom:18px;
  z-index:80;
  width:58px; height:58px;
  border-radius: 999px;
  display:grid; place-items:center;
  box-shadow: 0 16px 34px rgba(0,0,0,.35);
  background: #25D366;
  border: 1px solid rgba(0,0,0,.18);
}
.whatsappFloat:hover{transform: translateY(-1px)}
.whatsappFloat svg{width:28px; height:28px; fill:white}

@media (max-width: 980px){
  .heroGrid{grid-template-columns: 1fr; }
  .heroCard{min-height: 420px}
  .split{grid-template-columns:1fr}
  .grid3{grid-template-columns:1fr}
  .contactGrid{grid-template-columns:1fr}
  .menu{display:none}
  .burger{display:grid; place-items:center}
  .mobilePanel.show{display:block}
}
