:root{
  --camel:#E7C685;
  --red:#C63C2F;
  --black:#0B0D0E;
  --off:#F2F3F4;
  --whatsapp:#25D366;
  --bg1:#0B0D0E;
  --bg2:#121416;
}
*{box-sizing:border-box}
html,body{height:100%}
body{
  margin:0;
  font-family:Inter,system-ui,-apple-system,Segoe UI,Roboto,Ubuntu,'Helvetica Neue',Arial;
  color:var(--off);
  background-color:var(--bg1); background-image: linear-gradient(160deg,var(--bg1),var(--bg2));
  /* subtle texture */
  background-image:
    radial-gradient(rgba(255,255,255,0.03) 1px, transparent 1px);
  background-size: 8px 8px;
  letter-spacing:0.1px;
}
.container{width:min(1180px,92%);margin:0 auto}

.site-header{
  position:sticky; top:0; z-index:50;
  background:rgba(13,15,16,0.85); backdrop-filter: blur(8px);
  border-bottom:1px solid rgba(255,255,255,0.06);
}
.nav{display:flex; align-items:center; justify-content:space-between; padding:10px 0}
.logo-wrap{
  display:inline-flex; align-items:center; gap:12px;
  background:var(--camel); border-radius:14px; padding:6px 10px;
}
.logo{height:96px; width:auto; display:block}
.nav-links{display:flex; gap:14px; align-items:center}
.icon-link{color:var(--off); opacity:.9}
.icon-link:hover{opacity:1}

.btn{
  display:inline-flex; align-items:center; gap:10px;
  height:44px; padding:0 16px; border-radius:16px;
  text-decoration:none; font-weight:600; border:1px solid rgba(0,0,0,.25)
}
.btn-camel{ background:var(--camel); color:var(--black)}
.btn-camel:hover{ filter:brightness(0.98)}
.btn-outline-red{ background:transparent; color:var(--off); border:2px solid var(--red)}
.btn-outline-red:hover{ background:rgba(198,60,47,0.10)}

.wa-pill{
  display:inline-flex; align-items:center; justify-content:center;
  width:28px; height:28px; border-radius:50%; background:transparent;
}
/* Hero */
.hero{padding:32px 0 10px}
.hero-grid{display:grid; grid-template-columns:1.2fr auto; gap:36px 36px; align-items:center; position:relative}
.hero-copy h1{
  font-weight:800; font-size:clamp(40px,4.2vw,64px); line-height:1.02; margin:0 0 12px;
  letter-spacing:-0.5px;
}
.hero-copy p{font-size:18px; color:#e9e9e9; margin:0 0 18px}
.cta-row{display:flex; gap:14px; flex-wrap:wrap}

.hero-media{position:relative; max-width:780px; place-self:center; margin:18px auto 0}
.hero-media img{width:100%; height:auto; border-radius:18px; box-shadow:0 20px 60px rgba(0,0,0,.35); display:block}

.badge{
  position:absolute; right:12px; bottom:12px;
  background:var(--camel); color:var(--black);
  transform:rotate(8deg);
  border:1px solid rgba(255,140,0,.35);
  padding:10px 14px; border-radius:12px; width:max-content;
  box-shadow:0 6px 20px rgba(0,0,0,.25);
}
.badge strong{display:block; font-size:14px}
.badge-sub{ text-align:center; color:var(--red); font-weight:700; font-size:13px}

/* Cards */
.info-cards{padding:24px 0 6px}
.cards{display:grid; grid-template-columns:repeat(3,1fr); gap:16px}
.card{
  background:#1E2427;
  border:1px solid #2C3236;
  padding:18px;
  border-radius:16px;
  box-shadow:0 10px 24px rgba(0,0,0,.30);
}
.card h2{margin:0 0 8px; font-size:22px}

/* Equip */
.equip{padding:8px 0}
.equip h2, .specs h2, .plan h2, .gallery h2{font-size:28px}
.equip-list{columns:2; column-gap:24px; margin:10px 0; padding-left:1.2rem}
.equip-list li{break-inside:avoid; margin:6px 0; position:relative; list-style:none; padding-left:18px}
.equip-list li::before{
  content:''; position:absolute; left:0; top:0.6em; width:8px; height:8px; border-radius:50%; background:var(--red);
}

/* Specs */
.specs{padding:6px 0 6px}
.table-wrap{background:#15181a; border:1px solid rgba(255,255,255,0.06); border-radius:16px; overflow:hidden; max-width:720px}
table{width:100%; border-collapse:collapse}
th,td{padding:12px 14px; text-align:left; font-size:16px}
th{color:#cfd3d6; width:46%}
tr:not(:last-child) td, tr:not(:last-child) th{border-bottom:1px solid rgba(255,255,255,0.06)}
.note{font-size:14px; color:#c2c6c9; margin:8px 2px 0}

/* Plan - zoom */
.zoomable{margin-top:10px; background:#0b0d0e; border:1px solid rgba(255,255,255,0.07); border-radius:14px; overflow:hidden; max-width:980px}
.zoomable img{display:block; width:100%; transform-origin:center; transition:transform .15s ease-out}
.zoomable:hover img{transform:scale(1.3)}

.gallery{padding:10px 0 36px}
.grid{display:grid; gap:12px; grid-template-columns:repeat(3,1fr)}
.grid img{width:100%; height:auto; display:block; border-radius:14px; border:1px solid rgba(255,255,255,0.06)}

/* Footer */
.site-footer{border-top:1px solid rgba(255,255,255,0.06); padding:18px 0 80px; background:rgba(0,0,0,0.12)}
.footer-inner{display:flex; align-items:center; justify-content:space-between; gap:16px}
.footer-links{display:flex; gap:12px}

/* FAB WhatsApp */
.fab-wa{
  position:fixed; right:18px; bottom:18px;
  width:56px; height:56px; border-radius:50%;
  display:inline-flex; align-items:center; justify-content:center; text-decoration:none;
  background:transparent;
  filter: drop-shadow(0 8px 24px rgba(0,0,0,.35));
}
.fab-wa svg{filter:drop-shadow(0 0 2px rgba(0,0,0,.3))}
.fab-wa:hover{transform:translateY(-2px)}

@media (max-width: 960px){
  .hero-grid{display:grid; grid-template-columns:1.2fr auto; gap:36px 36px; align-items:center; position:relative}
  .badge{right:10px; bottom:10px}
  .hero-media{max-width:92%; place-self:center; margin:18px auto 0}
  .cards{grid-template-columns:1fr}
  .equip-list{columns:1}
  .grid{grid-template-columns:repeat(2,1fr)}
  .footer-inner{flex-direction:column; align-items:flex-start}
}
  .badge{
  position:absolute; right:12px; bottom:12px;
  background:var(--camel); color:var(--black);
  transform:rotate(8deg);
  border:1px solid rgba(255,140,0,.35);
  padding:10px 14px; border-radius:12px; width:max-content;
  box-shadow:0 6px 20px rgba(0,0,0,.25);
}
  .cards{grid-template-columns:1fr}
  .equip-list{columns:1}
  .grid{grid-template-columns:repeat(2,1fr)}
  .footer-inner{flex-direction:column; align-items:flex-start}
}
@media (max-width: 520px){
  .grid{grid-template-columns:1fr}
}

@media (max-width: 520px){ .badge{right:10px; bottom:10px; transform:rotate(6deg)} }

.badge-mini{font-size:10px; line-height:1.2; color:rgba(15,17,18,.75); margin-top:2px; font-weight:700; text-align:center}

.details{padding-top:8px}
