
:root{
  --bg:#09101a;
  --bg-soft:#101826;
  --card:#121d2c;
  --card-2:#f5f7fb;
  --text:#0c1220;
  --text-soft:#5d6778;
  --white:#ffffff;
  --line:rgba(255,255,255,.09);
  --line-dark:rgba(12,18,32,.08);
  --accent:#7aa7ff;
  --accent-2:#ff6b5f;
  --shadow:0 24px 80px rgba(2,8,23,.18);
  --radius:28px;
}

*{box-sizing:border-box}
html{scroll-behavior:smooth}
body{
  margin:0;
  font-family:"Inter",system-ui,-apple-system,sans-serif;
  color:var(--text);
  background:#ecf0f6;
}

img{max-width:100%;display:block}
a{text-decoration:none;color:inherit}
button{font:inherit}

.page-bg{
  position:fixed;
  inset:0;
  background:
    radial-gradient(circle at top left, rgba(122,167,255,.22), transparent 22%),
    radial-gradient(circle at top right, rgba(255,107,95,.14), transparent 20%),
    linear-gradient(180deg, #eef2f8 0%, #edf1f7 55%, #e7edf4 100%);
  z-index:-2;
}

.container{width:min(1180px, calc(100% - 32px)); margin:0 auto}

.site-header{
  position:sticky;
  top:0;
  z-index:100;
  backdrop-filter:blur(14px);
  background:rgba(246,248,252,.72);
  border-bottom:1px solid rgba(12,18,32,.06);
}
.nav-wrap{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:18px;
  min-height:84px;
}
.brand img{
  width:180px;
  height:auto;
}
.nav{
  display:flex;
  gap:24px;
  font-weight:600;
  color:#364152;
}
.nav a{position:relative}
.nav a::after{
  content:"";
  position:absolute;
  left:0;bottom:-8px;
  width:0;height:2px;
  background:linear-gradient(90deg,var(--accent),var(--accent-2));
  transition:.25s ease;
}
.nav a:hover::after{width:100%}
.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding:14px 22px;
  border-radius:999px;
  font-weight:700;
  transition:.22s ease;
  border:1px solid transparent;
  cursor:pointer;
}
.btn:hover{transform:translateY(-1px)}
.btn-primary{
  color:var(--white);
  background:linear-gradient(135deg,#111c2e,#1a315e 55%, #3e63b6);
  box-shadow:0 18px 40px rgba(24,49,94,.22);
}
.btn-secondary{
  background:rgba(255,255,255,.68);
  color:#13203a;
  border-color:rgba(19,32,58,.12);
}
.btn-header{white-space:nowrap}
.menu-toggle{
  display:none;
  width:48px;height:48px;
  border-radius:16px;
  border:1px solid rgba(12,18,32,.08);
  background:#fff;
}

.hero{
  padding:72px 0 36px;
}
.hero-grid{
  display:grid;
  grid-template-columns:1.05fr .95fr;
  gap:44px;
  align-items:center;
}
.eyebrow{
  display:inline-flex;
  align-items:center;
  gap:8px;
  padding:8px 14px;
  border-radius:999px;
  background:rgba(255,255,255,.74);
  border:1px solid rgba(12,18,32,.08);
  color:#4d5870;
  font-size:13px;
  font-weight:700;
  letter-spacing:.08em;
  text-transform:uppercase;
}
.hero h1{
  font-family:"Cormorant Garamond", serif;
  font-size:clamp(3rem, 7vw, 5.8rem);
  line-height:.92;
  letter-spacing:-.03em;
  margin:18px 0 18px;
}
.hero-text{
  font-size:1.12rem;
  line-height:1.8;
  color:var(--text-soft);
  max-width:680px;
}
.hero-actions{
  display:flex;
  gap:14px;
  flex-wrap:wrap;
  margin-top:28px;
}
.hero-points{
  margin-top:28px;
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:14px;
}
.point-card{
  background:rgba(255,255,255,.7);
  border:1px solid rgba(12,18,32,.08);
  border-radius:24px;
  padding:18px;
  box-shadow:var(--shadow);
}
.point-card strong{
  display:block;
  font-size:1rem;
  color:#152544;
  margin-bottom:8px;
}
.point-card span{
  display:block;
  font-size:.93rem;
  line-height:1.55;
  color:#5d6778;
}

.hero-visual{
  position:relative;
  min-height:620px;
}
.hero-card{
  position:absolute;
  background:
    linear-gradient(180deg, rgba(255,255,255,.92), rgba(241,245,251,.7));
  border:1px solid rgba(12,18,32,.08);
  border-radius:36px;
  box-shadow:0 28px 90px rgba(9,16,26,.18);
  overflow:hidden;
}
.hero-card img{
  width:100%;
  height:100%;
  object-fit:contain;
}
.hero-card-front{
  inset:10% 2% 0 20%;
  transform:rotate(5deg);
}
.hero-card-back{
  inset:0 24% 14% 0;
  transform:rotate(-8deg);
  background:
    linear-gradient(180deg, rgba(15,20,34,.98), rgba(27,35,57,.96));
}
.hero-card-back img{filter:drop-shadow(0 20px 40px rgba(0,0,0,.35))}

.logos-strip{padding:18px 0 36px}
.logos-inner{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:20px;
}
.logo-pill{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:24px;
  padding:20px 24px;
  border-radius:28px;
  background:rgba(255,255,255,.7);
  border:1px solid rgba(12,18,32,.08);
  box-shadow:var(--shadow);
}
.logo-pill span{
  font-size:.8rem;
  text-transform:uppercase;
  letter-spacing:.12em;
  color:#5d6778;
  font-weight:800;
}
.logo-pill img{
  height:52px;
  width:auto;
  object-fit:contain;
}

.section{padding:92px 0}
.section-light{background:transparent}
.section-dark{
  background:
    radial-gradient(circle at top right, rgba(122,167,255,.18), transparent 24%),
    linear-gradient(180deg, #0d1524 0%, #111b2c 100%);
  color:#eef3ff;
}
.section-heading{
  max-width:760px;
  margin-bottom:36px;
}
.section-heading.center{
  margin-left:auto;
  margin-right:auto;
  text-align:center;
}
.section-heading.split{
  max-width:none;
  display:flex;
  justify-content:space-between;
  align-items:end;
  gap:24px;
}
.section h2{
  font-family:"Cormorant Garamond", serif;
  font-size:clamp(2.3rem, 5vw, 4rem);
  line-height:1;
  letter-spacing:-.03em;
  margin:16px 0 0;
}
.two-col{
  display:grid;
  grid-template-columns:.9fr 1.1fr;
  gap:40px;
  align-items:start;
}
.rich-copy{
  display:grid;
  gap:18px;
  font-size:1.06rem;
  line-height:1.85;
  color:#516074;
}
.features-grid{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:18px;
}
.feature-card{
  padding:28px;
  border-radius:28px;
  background:rgba(255,255,255,.05);
  border:1px solid var(--line);
  min-height:220px;
}
.feature-card h3{
  margin:0 0 14px;
  font-size:1.08rem;
}
.feature-card p{
  margin:0;
  line-height:1.75;
  color:rgba(238,243,255,.78);
}
.showcase-grid{
  display:grid;
  grid-template-columns:1.2fr .8fr .8fr;
  gap:18px;
}
.showcase{
  position:relative;
  overflow:hidden;
  min-height:520px;
  border-radius:32px;
  background:linear-gradient(180deg, rgba(255,255,255,.92), rgba(243,246,252,.72));
  border:1px solid rgba(12,18,32,.08);
  box-shadow:var(--shadow);
}
.showcase.large{min-height:560px}
.showcase img{
  position:absolute;
  right:-8%;
  bottom:-2%;
  width:72%;
  height:auto;
  object-fit:contain;
}
.showcase.large img{
  width:58%;
  right:1%;
}
.showcase-copy{
  position:relative;
  z-index:2;
  max-width:52%;
  padding:30px 28px;
}
.showcase.large .showcase-copy{max-width:44%}
.tag{
  display:inline-flex;
  padding:8px 12px;
  border-radius:999px;
  background:#edf3ff;
  color:#355aa4;
  font-size:.75rem;
  font-weight:800;
  letter-spacing:.08em;
  text-transform:uppercase;
}
.showcase h3{
  margin:14px 0 10px;
  font-size:1.8rem;
}
.showcase p{
  margin:0;
  color:#5d6778;
  line-height:1.7;
}
.showcase ul{
  list-style:none;
  padding:0;
  margin:18px 0 0;
  display:grid;
  gap:10px;
  color:#1b2947;
  font-weight:600;
}

.filter-bar{
  display:flex;
  gap:10px;
  flex-wrap:wrap;
}
.filter-btn{
  padding:12px 16px;
  border-radius:999px;
  border:1px solid rgba(12,18,32,.1);
  background:rgba(255,255,255,.76);
  color:#354154;
  font-weight:700;
  cursor:pointer;
}
.filter-btn.active{
  color:#fff;
  background:linear-gradient(135deg,#111c2e,#294c8a);
  border-color:transparent;
}

.product-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:20px;
}
.product-card{
  position:relative;
  overflow:hidden;
  min-height:560px;
  border-radius:32px;
  border:1px solid rgba(12,18,32,.08);
  background:
    linear-gradient(180deg, rgba(255,255,255,.92), rgba(243,246,252,.72));
  box-shadow:var(--shadow);
}
.product-card.hidden{display:none}
.product-card .card-top{
  position:relative;
  padding:26px 24px 0;
  z-index:2;
}
.product-card .card-top .tag{background:#f1f5ff}
.product-card h3{
  font-size:1.7rem;
  margin:14px 0 6px;
}
.product-card p{
  margin:0;
  color:#5f6a7d;
  line-height:1.6;
}
.product-card img{
  position:absolute;
  inset:auto 0 0 0;
  width:100%;
  height:100%;
  object-fit:cover;
  cursor:pointer;
}
.product-card .specs{
  position:absolute;
  left:20px;
  right:20px;
  bottom:18px;
  z-index:2;
  display:flex;
  gap:10px;
  flex-wrap:wrap;
}
.spec-chip{
  padding:10px 12px;
  border-radius:999px;
  background:rgba(255,255,255,.84);
  border:1px solid rgba(12,18,32,.08);
  color:#243552;
  font-size:.83rem;
  font-weight:800;
  backdrop-filter: blur(10px);
}

.revendedor-grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:24px;
  align-items:start;
}
.revendedor h2{max-width:700px}
.revendedor p{
  max-width:680px;
  line-height:1.85;
  color:rgba(238,243,255,.78);
}
.revendedor-box{
  padding:32px;
  border-radius:32px;
  border:1px solid var(--line);
  background:rgba(255,255,255,.06);
}
.revendedor-box h3{margin:0 0 16px}
.revendedor-box ol{
  margin:0 0 24px 20px;
  padding:0;
  display:grid;
  gap:14px;
  line-height:1.7;
  color:rgba(238,243,255,.84);
}

.contact-grid{
  display:grid;
  grid-template-columns:1.02fr .98fr;
  gap:24px;
  align-items:stretch;
}
.contact-card,
.info-list{
  background:rgba(255,255,255,.72);
  border:1px solid rgba(12,18,32,.08);
  border-radius:32px;
  box-shadow:var(--shadow);
}
.contact-card{padding:34px}
.contact-card p{
  color:#5d6778;
  line-height:1.8;
  max-width:560px;
}
.contact-actions{
  display:flex;
  gap:14px;
  flex-wrap:wrap;
  margin-top:20px;
}
.info-list{
  padding:10px;
  display:grid;
  gap:10px;
}
.info-item{
  padding:22px;
  border-radius:24px;
  background:rgba(244,247,252,.9);
}
.info-item span{
  display:block;
  margin-bottom:10px;
  font-size:.78rem;
  font-weight:800;
  text-transform:uppercase;
  letter-spacing:.1em;
  color:#6a768a;
}
.info-item strong{
  display:block;
  line-height:1.7;
  color:#1d2a45;
}

.site-footer{
  padding:24px 0 36px;
}
.footer-wrap{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:18px;
  padding:24px;
  border-radius:28px;
  background:rgba(255,255,255,.64);
  border:1px solid rgba(12,18,32,.08);
}
.footer-brand img{
  width:160px;
  height:auto;
}
.footer-copy{
  display:grid;
  gap:4px;
  color:#5d6778;
  text-align:right;
}

.lightbox{
  position:fixed;
  inset:0;
  background:rgba(6,10,18,.82);
  display:none;
  align-items:center;
  justify-content:center;
  padding:22px;
  z-index:120;
}
.lightbox.open{display:flex}
.lightbox img{
  max-width:min(1200px,92vw);
  max-height:88vh;
  border-radius:24px;
  box-shadow:0 30px 90px rgba(0,0,0,.45);
}
.lightbox-close{
  position:absolute;
  top:18px;
  right:18px;
  width:48px;
  height:48px;
  border:none;
  border-radius:50%;
  background:#fff;
  font-size:2rem;
  line-height:1;
  cursor:pointer;
}

@media (max-width: 1120px){
  .hero-grid,
  .two-col,
  .revendedor-grid,
  .contact-grid,
  .showcase-grid,
  .product-grid,
  .features-grid,
  .logos-inner{
    grid-template-columns:1fr 1fr;
  }
  .hero-grid{grid-template-columns:1fr}
  .hero-visual{min-height:520px}
  .section-heading.split{align-items:start; flex-direction:column}
  .showcase.large,
  .showcase{min-height:500px}
}
@media (max-width: 860px){
  .nav{display:none; position:absolute; left:16px; right:16px; top:82px; padding:18px; border-radius:24px; background:#fff; border:1px solid rgba(12,18,32,.08); box-shadow:var(--shadow); flex-direction:column}
  .nav.open{display:flex}
  .btn-header{display:none}
  .menu-toggle{display:inline-flex; align-items:center; justify-content:center}
  .hero-points,
  .features-grid,
  .product-grid,
  .logos-inner,
  .two-col,
  .contact-grid,
  .revendedor-grid,
  .showcase-grid{
    grid-template-columns:1fr;
  }
  .hero-card-front{inset:14% 4% 0 16%}
  .hero-card-back{inset:0 20% 16% 0}
  .showcase-copy,.showcase.large .showcase-copy{max-width:100%; padding-right:24px}
  .showcase img,.showcase.large img{
    position:relative;
    width:100%;
    right:auto;
    bottom:auto;
    margin-top:12px;
  }
  .product-card{min-height:540px}
  .footer-wrap{flex-direction:column; text-align:center}
  .footer-copy{text-align:center}
}
@media (max-width: 560px){
  .hero{padding-top:42px}
  .brand img{width:150px}
  .hero h1{font-size:3.1rem}
  .point-card{padding:16px}
  .hero-visual{min-height:420px}
  .hero-card-front{inset:18% 0 0 16%}
  .hero-card-back{inset:0 18% 14% 0}
  .contact-card,.revendedor-box{padding:24px}
  .product-card{min-height:510px}
}
