/* ── RESET & BASE ── */
*, *::before, *::after { margin:0; padding:0; box-sizing:border-box; }
html { scroll-behavior:smooth; }
:root {
  --blue:    #1A9ADE;
  --blue-d:  #0f7db8;
  --blue-l:  #E8F6FD;
  --dark:    #0D1421;
  --text:    #374151;
  --muted:   #6B7280;
  --border:  #E0E8F0;
  --off:     #F7F9FC;
  --white:   #fff;
  --r:       8px;
  --font:    'Plus Jakarta Sans', sans-serif;
}
body { font-family:var(--font); color:var(--text); background:var(--white); overflow-x:hidden; }

/* ── NAV ── */
nav {
  position:fixed; top:0; left:0; right:0; z-index:400;
  background:var(--white);
  border-bottom:1px solid var(--border);
  display:flex; align-items:center; justify-content:space-between;
  padding:0 5%; height:68px;
  box-shadow:0 1px 10px rgba(0,0,0,.06);
}
.logo { display:flex; align-items:center; text-decoration:none; }
.logo img { height:52px; width:auto; display:block; }
.nav-links { display:flex; gap:.2rem; list-style:none; }
.nav-links a {
  font-size:.84rem; font-weight:600; color:var(--text);
  text-decoration:none; padding:.44rem .85rem; border-radius:6px;
  transition:background .15s, color .15s;
}
.nav-links a:hover, .nav-links a.active {
  background:var(--blue-l); color:var(--blue-d);
}
.nav-right { display:flex; align-items:center; gap:.8rem; }
.nav-tel {
  font-size:.8rem; font-weight:700; color:var(--blue-d);
  text-decoration:none; display:flex; align-items:center; gap:4px;
}
.btn-cta {
  background:var(--blue); color:#fff;
  padding:.48rem 1.2rem; border-radius:var(--r);
  font-size:.81rem; font-weight:700; text-decoration:none;
  transition:background .15s;
}
.btn-cta:hover { background:var(--blue-d); }

/* hamburger */
.hamburger {
  display:none; flex-direction:column; gap:5px;
  background:none; border:none; cursor:pointer; padding:4px;
}
.hamburger span { display:block; width:22px; height:2px; background:var(--dark); border-radius:2px; }
.mobile-nav {
  display:none; position:fixed; top:68px; left:0; right:0; z-index:399;
  background:var(--white); border-bottom:1px solid var(--border);
  flex-direction:column; padding:.5rem 5%;
  box-shadow:0 6px 20px rgba(0,0,0,.08);
}
.mobile-nav.open { display:flex; }
.mobile-nav a {
  font-size:.9rem; font-weight:600; color:var(--text);
  text-decoration:none; padding:.6rem .8rem; border-radius:6px;
}
.mobile-nav a:hover, .mobile-nav a.active { background:var(--blue-l); color:var(--blue-d); }

/* ── HERO (home only) ── */
.hero {
  min-height:100vh; padding-top:68px;
  display:flex; flex-direction:column;
  background:var(--dark); position:relative; overflow:hidden;
}
/* animated gradient */
@keyframes gbg {
  0%   { background-position: 0% 50%; }
  50%  { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}
.hero-bg {
  position:absolute; inset:0; z-index:0;
  background: linear-gradient(135deg, #0a1628 0%, #0f2a5c 30%, #0d3d6b 55%, #072040 80%, #0a1628 100%);
  background-size:300% 300%;
  animation:gbg 18s ease infinite;
}
/* floating orbs */
@keyframes orb1 { 0%,100%{transform:translate(0,0)} 45%{transform:translate(55px,-40px)} 75%{transform:translate(-30px,50px)} }
@keyframes orb2 { 0%,100%{transform:translate(0,0)} 40%{transform:translate(-45px,35px)} 70%{transform:translate(40px,-35px)} }
.orb { position:absolute; border-radius:50%; filter:blur(80px); pointer-events:none; z-index:1; }
.orb-a { width:480px; height:480px; right:-60px; top:5%;  background:radial-gradient(circle, rgba(26,154,222,.12) 0%, transparent 65%); animation:orb1 16s ease-in-out infinite; }
.orb-b { width:340px; height:340px; left:-50px; bottom:5%; background:radial-gradient(circle, rgba(5,20,60,.6)  0%, transparent 65%); animation:orb2 20s ease-in-out infinite; }
.orb-c { width:200px; height:200px; left:45%; top:25%;  background:radial-gradient(circle, rgba(255,255,255,.04) 0%, transparent 65%); animation:orb1 12s ease-in-out infinite reverse; }

.hero-inner {
  flex:1; display:grid; grid-template-columns:1fr 1fr;
  gap:2.5rem; align-items:center;
  max-width:1160px; margin:0 auto; width:100%;
  padding:60px 5% 40px; position:relative; z-index:2;
}
.hero-label {
  display:inline-block;
  background:rgba(26,154,222,.18); border:1px solid rgba(26,154,222,.35);
  color:rgba(255,255,255,.9);
  padding:.26rem .85rem; border-radius:50px;
  font-size:.68rem; font-weight:700; letter-spacing:.09em; text-transform:uppercase;
  margin-bottom:1.1rem;
}
.hero h1 {
  font-size:clamp(2rem,3.4vw,3rem); color:#fff;
  font-weight:800; line-height:1.09; letter-spacing:-.02em;
  margin-bottom:1rem;
}
.hero h1 em { font-style:normal; color:rgba(255,255,255,.55); }
.hero-p { color:rgba(255,255,255,.58); font-size:.95rem; line-height:1.78; margin-bottom:2rem; max-width:440px; }
.hero-btns { display:flex; gap:.75rem; flex-wrap:wrap; }
.btn-white {
  background:#fff; color:var(--blue-d);
  padding:.76rem 1.8rem; border-radius:var(--r);
  font-weight:800; font-size:.86rem; text-decoration:none;
  transition:box-shadow .15s, transform .15s; display:inline-block;
}
.btn-white:hover { box-shadow:0 6px 18px rgba(0,0,0,.14); transform:translateY(-2px); }
.btn-ghost {
  border:1.5px solid rgba(255,255,255,.28); color:#fff;
  padding:.76rem 1.8rem; border-radius:var(--r);
  font-weight:600; font-size:.86rem; text-decoration:none;
  transition:border-color .15s, background .15s; display:inline-block;
}
.btn-ghost:hover { border-color:#fff; background:rgba(255,255,255,.07); }

/* svg illustration area */
.hero-visual { display:flex; align-items:center; justify-content:center; }
.hero-visual svg { width:100%; max-width:420px; opacity:.92; }

/* ticker bar */
.ticker {
  background:rgba(0,0,0,.25); border-top:1px solid rgba(255,255,255,.07);
  padding:.85rem 0; position:relative; z-index:2;
}
.ticker-inner { max-width:1160px; margin:0 auto; padding:0 5%; display:flex; flex-wrap:wrap; gap:2rem; }
.tick { display:flex; align-items:center; gap:.5rem; color:rgba(255,255,255,.5); font-size:.78rem; font-weight:500; }
.tick-dot { width:4px; height:4px; border-radius:50%; background:rgba(26,154,222,.7); flex-shrink:0; }

/* ── SECTIONS ── */
.sec { padding:80px 5%; }
.wrap { max-width:1160px; margin:0 auto; }
.sec-tag {
  display:inline-block; background:var(--blue-l); color:var(--blue-d);
  padding:.22rem .78rem; border-radius:50px;
  font-size:.68rem; font-weight:700; letter-spacing:.07em; text-transform:uppercase;
  margin-bottom:.7rem;
}
.sec-h { font-size:clamp(1.55rem,2.5vw,2.2rem); font-weight:800; line-height:1.15; letter-spacing:-.015em; }
.sec-h span { color:var(--blue-d); }
.sec-sub { color:var(--muted); font-size:.93rem; line-height:1.7; margin-top:.5rem; }

/* sobre */
.sobre-grid { display:grid; grid-template-columns:1fr 1fr; gap:4rem; align-items:center; margin-top:2.5rem; }
.sobre-p { color:var(--muted); line-height:1.78; font-size:.94rem; margin-bottom:.95rem; }
.feat-grid { display:grid; grid-template-columns:1fr 1fr; gap:.65rem; margin-top:1.5rem; }
.feat { background:var(--off); border-radius:var(--r); padding:.9rem 1rem; border-left:3px solid var(--blue); }
.feat h4 { font-size:.83rem; font-weight:700; margin-bottom:.22rem; color:var(--dark); }
.feat p  { font-size:.74rem; color:var(--muted); }

/* product cards on home */
.prod-grid { display:grid; grid-template-columns:repeat(4,1fr); gap:1rem; margin-top:2.2rem; }
.prod-card {
  border:1px solid var(--border); border-radius:12px; overflow:hidden;
  background:var(--white); text-decoration:none; color:inherit; display:block;
  transition:border-color .2s, box-shadow .2s, transform .2s;
}
.prod-card:hover { border-color:var(--blue); box-shadow:0 8px 24px rgba(26,154,222,.1); transform:translateY(-4px); }
.prod-card-body { padding:1.1rem; }
.prod-card-tag { font-size:.65rem; font-weight:700; letter-spacing:.07em; text-transform:uppercase; color:var(--blue-d); margin-bottom:.35rem; }
.prod-card-body h3 { font-size:.9rem; font-weight:800; margin-bottom:.4rem; line-height:1.3; color:var(--dark); }
.prod-card-body p  { font-size:.78rem; color:var(--muted); line-height:1.6; margin-bottom:.85rem; }
.prod-link { font-size:.77rem; font-weight:700; color:var(--blue-d); display:flex; align-items:center; gap:.3rem; }
.prod-link svg { transition:transform .2s; }
.prod-card:hover .prod-link svg { transform:translateX(4px); }

/* outros / mini cards */
.outros-grid { display:grid; grid-template-columns:repeat(4,1fr); gap:.85rem; margin-top:1.8rem; }
.outro { border:1px solid var(--border); border-radius:10px; padding:1rem; transition:border-color .2s; }
.outro:hover { border-color:var(--blue); }
.outro h4 { font-size:.84rem; font-weight:700; margin-bottom:.25rem; color:var(--dark); }
.outro p  { font-size:.74rem; color:var(--muted); line-height:1.55; }

/* CTA band */
.cta-band { background:var(--blue); padding:60px 5%; text-align:center; }
.cta-band h2 { color:#fff; font-size:clamp(1.4rem,2.2vw,1.95rem); font-weight:800; margin-bottom:.6rem; }
.cta-band p  { color:rgba(255,255,255,.65); font-size:.93rem; margin-bottom:1.8rem; }

/* ── PRODUCT PAGE ── */
.page-hero {
  background:var(--dark); padding:68px 5% 56px;
  position:relative; overflow:hidden;
}
.page-hero-bg {
  position:absolute; inset:0;
  background:linear-gradient(135deg,#0a1628 0%,#0f2a5c 40%,#072040 100%);
  z-index:0;
}
.page-hero-in {
  max-width:1160px; margin:0 auto;
  display:grid; grid-template-columns:1fr 1fr;
  gap:2.5rem; align-items:center;
  position:relative; z-index:1;
}
.page-hero h1 { font-size:clamp(1.65rem,2.8vw,2.4rem); color:#fff; font-weight:800; line-height:1.1; letter-spacing:-.02em; margin-top:.7rem; margin-bottom:.9rem; }
.page-hero p.lead { color:rgba(255,255,255,.65); font-size:.94rem; line-height:1.72; }
.page-hero-img {
  background:rgba(255,255,255,.06); border-radius:12px;
  overflow:hidden; display:flex; align-items:center; justify-content:center; padding:1.5rem;
}
.page-hero-img img { max-height:320px; width:100%; object-fit:contain; filter:drop-shadow(0 8px 28px rgba(0,0,0,.3)); }

/* product body */
.prod-body { padding:68px 5%; }
.prod-body-in { max-width:1160px; margin:0 auto; }
.prod-cols { display:grid; grid-template-columns:1fr 1fr; gap:3.5rem; align-items:start; }
.info-title { font-size:1.3rem; font-weight:800; letter-spacing:-.01em; margin-bottom:.9rem; color:var(--dark); }
.info-lead { color:var(--muted); line-height:1.76; font-size:.93rem; margin-bottom:1.3rem; }
.s-label { font-size:.67rem; font-weight:700; letter-spacing:.08em; text-transform:uppercase; color:var(--muted); margin:.1rem 0 .5rem; }
.s-label + * { margin-top:0; }
.chips { display:flex; flex-wrap:wrap; gap:.35rem; margin-bottom:1.2rem; }
.chip { background:var(--blue-l); color:var(--blue-d); padding:.24rem .72rem; border-radius:50px; font-size:.76rem; font-weight:600; }
.check-list { list-style:none; display:grid; gap:.48rem; margin-bottom:1.2rem; }
.check-list li { display:flex; align-items:flex-start; gap:.55rem; font-size:.88rem; color:var(--text); line-height:1.5; }
.check-list li::before {
  content:''; min-width:17px; height:17px; border-radius:50%; flex-shrink:0; margin-top:2px;
  background:var(--blue) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12'%3E%3Cpath d='M2.5 6l2.5 2.5 4.5-4.5' stroke='%23fff' stroke-width='1.7' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") no-repeat center/9px;
}
.req-box {
  background:var(--blue-l); border-radius:var(--r); border-left:3px solid var(--blue);
  padding:1rem 1.15rem; margin-top:1.2rem; font-size:.82rem; color:var(--blue-d); line-height:1.65;
}
.req-box strong { font-weight:700; }

/* product image side */
.prod-img-wrap {
  border-radius:12px; overflow:hidden; background:var(--off);
  display:flex; align-items:center; justify-content:center;
  padding:1.5rem; box-shadow:0 4px 20px rgba(0,0,0,.08);
}
.prod-img-wrap img { width:100%; max-height:440px; object-fit:contain; display:block; }

.cta-row { text-align:center; padding-top:2.2rem; border-top:1px solid var(--border); margin-top:2.5rem; }
.cta-row p { color:var(--muted); font-size:.9rem; margin-bottom:1rem; }
.btn-blue {
  display:inline-block; background:var(--blue); color:#fff;
  padding:.8rem 2.2rem; border-radius:var(--r);
  font-weight:800; font-size:.88rem; font-family:var(--font); text-decoration:none;
  transition:background .15s, transform .15s;
}
.btn-blue:hover { background:var(--blue-d); transform:translateY(-1px); }

/* ── CONTATO ── */
.contato-wrap { display:grid; grid-template-columns:1fr 1.05fr; gap:3.5rem; align-items:start; margin-top:2.5rem; }
.ct-p { color:var(--muted); line-height:1.75; font-size:.93rem; margin-bottom:1.3rem; }
.ct-item { display:flex; align-items:center; gap:.78rem; margin-bottom:.85rem; text-decoration:none; }
.ct-icon { width:36px; height:36px; border-radius:8px; background:var(--blue-l); color:var(--blue-d); display:flex; align-items:center; justify-content:center; font-size:.9rem; flex-shrink:0; }
.ct-item span.lab { font-size:.9rem; font-weight:700; color:var(--dark); }
.ct-note { background:var(--blue-l); border-radius:var(--r); border-left:3px solid var(--blue); padding:1rem 1.1rem; margin-top:1.3rem; font-size:.8rem; color:var(--blue-d); line-height:1.65; }
.form-box { background:var(--white); border:1px solid var(--border); border-radius:14px; padding:2rem; box-shadow:0 4px 20px rgba(26,154,222,.07); }
.form-box h3 { font-size:1.15rem; font-weight:800; margin-bottom:1.3rem; color:var(--dark); }
.fg { margin-bottom:.88rem; }
.fg label { display:block; font-size:.7rem; font-weight:700; text-transform:uppercase; letter-spacing:.04em; margin-bottom:.32rem; color:var(--dark); }
.fg input, .fg select, .fg textarea {
  width:100%; padding:.7rem .95rem; border:1.5px solid var(--border); border-radius:var(--r);
  font-size:.86rem; font-family:var(--font); color:var(--dark); background:var(--white);
  outline:none; transition:border-color .2s;
}
.fg input:focus, .fg select:focus, .fg textarea:focus { border-color:var(--blue); }
.fg textarea { resize:vertical; min-height:90px; }
.fg2 { display:grid; grid-template-columns:1fr 1fr; gap:.8rem; }
.btn-submit {
  width:100%; background:var(--blue); color:#fff; border:none;
  padding:.86rem; border-radius:var(--r);
  font-weight:800; font-size:.9rem; font-family:var(--font); cursor:pointer;
  transition:background .15s, transform .15s;
}
.btn-submit:hover { background:var(--blue-d); transform:translateY(-1px); }

/* ── FOOTER ── */
footer {
  background:var(--dark); padding:2rem 5%;
  display:flex; justify-content:space-between; align-items:center; flex-wrap:wrap; gap:1rem;
}
.f-logo { display:flex; align-items:center; gap:.8rem; }
.f-logo img { height:44px; width:auto; }
.f-logo span { font-size:.82rem; font-weight:700; color:rgba(255,255,255,.55); }
footer p { font-size:.73rem; color:rgba(255,255,255,.3); }
.f-links { display:flex; gap:1rem; }
footer a { color:rgba(255,255,255,.4); text-decoration:none; font-size:.73rem; transition:color .15s; }
footer a:hover { color:rgba(255,255,255,.8); }

/* ── WHATSAPP ── */
@keyframes wa-pulse {
  0%,100% { box-shadow:0 4px 14px rgba(37,211,102,.38), 0 0 0 0 rgba(37,211,102,.28); }
  60%      { box-shadow:0 4px 14px rgba(37,211,102,.38), 0 0 0 10px rgba(37,211,102,0); }
}
.wa-btn {
  position:fixed; bottom:24px; right:24px; z-index:500;
  width:52px; height:52px; border-radius:50%; background:#25D366;
  display:flex; align-items:center; justify-content:center;
  text-decoration:none; animation:wa-pulse 2.8s ease-in-out infinite;
  transition:transform .2s;
}
.wa-btn:hover { transform:scale(1.1); }
.wa-btn svg { width:27px; height:27px; fill:#fff; }
.wa-tip {
  position:absolute; right:60px; top:50%; transform:translateY(-50%);
  background:var(--dark); color:#fff; font-family:var(--font);
  font-size:.73rem; font-weight:600; padding:.3rem .72rem; border-radius:5px;
  white-space:nowrap; opacity:0; pointer-events:none; transition:opacity .2s;
}
.wa-tip::after { content:''; position:absolute; left:100%; top:50%; transform:translateY(-50%); border:4px solid transparent; border-left-color:var(--dark); }
.wa-btn:hover .wa-tip { opacity:1; }

/* ── RESPONSIVE ── */
@media (max-width:900px) {
  .hero-inner, .sobre-grid, .page-hero-in, .prod-cols, .contato-wrap { grid-template-columns:1fr; }
  .prod-grid, .outros-grid { grid-template-columns:1fr 1fr; }
  .feat-grid, .fg2 { grid-template-columns:1fr; }
  .nav-links, .nav-tel { display:none; }
  .hamburger { display:flex; }
  .hero-visual { display:none; }
  .ticker-inner { gap:1.2rem; }
}
@media (max-width:500px) {
  .prod-grid, .outros-grid { grid-template-columns:1fr; }
}
