:root{
  --bg:#f5f8fd;
  --bg-2:#eef4fb;
  --surface:#ffffff;
  --surface-2:#f8fbff;
  --text:#10233d;
  --muted:#66768e;
  --line:#dbe5f0;
  --blue:#0b61d8;
  --blue-dark:#083d9b;
  --orange:#ff7a00;
  --orange-dark:#ea5c00;
  --green:#16a34a;
  --shadow:0 18px 50px rgba(16,35,61,.08);
  --shadow-lg:0 30px 80px rgba(16,35,61,.14);
  --radius:28px;
  --radius-sm:18px;
  --max:1220px;
}
*{box-sizing:border-box}
html{scroll-behavior:smooth}
body{
  margin:0;
  font-family:Inter,ui-sans-serif,system-ui,-apple-system,"Segoe UI",Roboto,Arial,sans-serif;
  color:var(--text);
  background:
    radial-gradient(circle at top left, rgba(11,97,216,.10), transparent 22%),
    radial-gradient(circle at 84% 12%, rgba(255,122,0,.10), transparent 18%),
    linear-gradient(180deg,#f8fbff 0%,var(--bg) 100%);
}
img{max-width:100%;display:block}
a{text-decoration:none;color:inherit}
.container{width:min(var(--max), calc(100% - 32px));margin:0 auto}
.topbar{
  background:linear-gradient(90deg,var(--blue-dark),var(--blue));
  color:#fff;
}
.topbar-inner{
  min-height:50px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:16px;
  font-size:.94rem;
}
.topbar-inner div{display:flex;align-items:center;gap:18px;flex-wrap:wrap}
.site-header{
  position:sticky;
  top:0;
  z-index:100;
  backdrop-filter:blur(14px);
  background:rgba(255,255,255,.92);
  border-bottom:1px solid rgba(219,229,240,.95);
}
.header-inner{
  min-height:94px;
  display:grid;
  grid-template-columns:auto 1fr auto auto;
  align-items:center;
  gap:24px;
}
.brand{display:flex;align-items:center;gap:15px}
.brand img{
  width:84px;height:84px;object-fit:contain;
  filter:drop-shadow(0 14px 26px rgba(11,97,216,.18));
}
.brand-text strong{
  display:block;
  font-size:1.52rem;
  line-height:1;
  letter-spacing:-.03em;
}
.brand-text small{
  display:block;
  margin-top:6px;
  color:var(--muted);
  font-weight:700;
}
.nav{
  display:flex;
  align-items:center;
  justify-content:center;
  gap:28px;
  flex-wrap:wrap;
}
.nav a{
  font-weight:800;
  color:#17355f;
  position:relative;
}
.nav a::after{
  content:"";
  position:absolute;
  left:0;
  bottom:-9px;
  width:0;
  height:3px;
  border-radius:999px;
  background:linear-gradient(90deg,var(--orange),var(--blue));
  transition:.22s ease;
}
.nav a:hover::after,.nav a.active::after{width:100%}
.header-actions{display:flex;align-items:center;gap:12px}
.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  padding:14px 22px;
  border-radius:999px;
  font-weight:900;
  border:1px solid transparent;
  transition:.22s ease;
  cursor:pointer;
}
.btn:hover{transform:translateY(-2px)}
.btn-primary{
  color:#fff;
  background:linear-gradient(135deg,var(--orange),var(--orange-dark));
  box-shadow:0 14px 28px rgba(255,122,0,.22);
}
.btn-secondary{
  color:#fff;
  background:linear-gradient(135deg,var(--blue),var(--blue-dark));
  box-shadow:0 14px 28px rgba(11,97,216,.18);
}
.btn-outline{
  background:#fff;
  color:#143a64;
  border-color:#cfdceb;
}
.btn-whatsapp{
  color:#fff;
  background:linear-gradient(135deg,#24c45e,#149b47);
  box-shadow:0 14px 28px rgba(22,163,74,.20);
}
.menu-btn{
  display:none;
  width:50px;height:50px;
  border-radius:16px;
  background:#fff;border:1px solid var(--line);
  color:var(--text);
  font-size:1.35rem;
  font-weight:900;
}
.mobile-panel{
  display:none;
  position:fixed;
  inset:0;
  background:rgba(16,35,61,.38);
  z-index:120;
}
.mobile-panel.open{display:block}
.mobile-card{
  position:absolute;
  top:88px;right:14px;
  width:min(360px, calc(100% - 28px));
  background:#fff;border:1px solid var(--line);
  border-radius:26px;
  box-shadow:var(--shadow-lg);
  padding:18px;
}
.mobile-links{display:grid;gap:10px}
.mobile-links a{
  padding:14px 16px;
  border-radius:16px;
  background:#f8fbff;
  border:1px solid var(--line);
  font-weight:800;
}
.hero{padding:34px 0 26px}
.hero-shell{
  border-radius:34px;
  overflow:hidden;
  padding:18px;
  border:1px solid rgba(219,229,240,.95);
  background:
    radial-gradient(circle at top left, rgba(11,97,216,.12), transparent 22%),
    radial-gradient(circle at 86% 14%, rgba(255,122,0,.10), transparent 18%),
    linear-gradient(135deg,#ffffff 0%,#f6faff 100%);
  box-shadow:var(--shadow-lg);
}
.hero-grid{
  display:grid;
  grid-template-columns:1.08fr .92fr;
  gap:20px;
}
.hero-copy{padding:42px 36px 36px}
.eyebrow{
  display:inline-flex;
  align-items:center;
  gap:10px;
  padding:10px 14px;
  border-radius:999px;
  background:#eef5ff;
  color:var(--blue);
  font-size:.82rem;
  font-weight:900;
  text-transform:uppercase;
  letter-spacing:.12em;
}
.hero h1{
  margin:18px 0 16px;
  font-size:clamp(2.8rem,5vw,5.3rem);
  line-height:.95;
  letter-spacing:-.05em;
  max-width:780px;
}
.hero p{
  margin:0 0 22px;
  max-width:640px;
  color:var(--muted);
  font-size:1.08rem;
  line-height:1.8;
}
.hero-actions{display:flex;gap:12px;flex-wrap:wrap}
.hero-trust{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:14px;
  margin-top:28px;
}
.trust-chip{
  padding:16px;
  border-radius:20px;
  background:rgba(255,255,255,.88);
  border:1px solid var(--line);
  font-weight:800;
  color:#29476d;
}
.hero-card{
  border-radius:28px;
  overflow:hidden;
  background:linear-gradient(135deg,var(--blue-dark),var(--blue));
  padding:26px;
  position:relative;
}
.hero-card::before{
  content:"";
  position:absolute;inset:0;
  background:
    radial-gradient(circle at 86% 18%, rgba(255,255,255,.14), transparent 18%),
    radial-gradient(circle at 18% 82%, rgba(255,255,255,.10), transparent 20%);
}
.hero-screen{
  position:relative;
  z-index:1;
  min-height:560px;
  border-radius:24px;
  padding:24px;
  background:linear-gradient(180deg,rgba(255,255,255,.97),rgba(240,246,255,.92));
  border:1px solid rgba(255,255,255,.45);
  display:flex;
  flex-direction:column;
  justify-content:space-between;
}
.mini-browser{
  border-radius:22px;
  overflow:hidden;
  background:#fff;
  border:1px solid #dfe9f5;
  box-shadow:0 14px 26px rgba(16,35,61,.08);
}
.browser-bar{
  display:flex;gap:8px;padding:12px 14px;
  background:#f8fbff;border-bottom:1px solid #e4edf7;
}
.dot{width:10px;height:10px;border-radius:999px;background:#d2dbe8}
.dot:nth-child(1){background:#ff6b6b}
.dot:nth-child(2){background:#ffd166}
.dot:nth-child(3){background:#06d6a0}
.browser-view{padding:24px;display:grid;place-items:center}
.browser-view img{width:min(360px,88%)}
.preview-text h2{
  margin:0 0 10px;
  font-size:2rem;
  line-height:1.05;
  letter-spacing:-.03em;
}
.preview-text p{margin:0;color:#49627f;line-height:1.75}
.stats{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:12px;
  margin-top:18px;
}
.stat{
  padding:16px 14px;
  border-radius:18px;
  background:#fff;
  border:1px solid #dde7f3;
}
.stat strong{display:block;font-size:1.1rem}
.stat span{display:block;color:var(--muted);margin-top:6px;line-height:1.5}
.section{padding:34px 0}
.section-head{
  display:flex;align-items:end;justify-content:space-between;gap:18px;margin-bottom:18px;
}
.section-head h2{margin:0;font-size:2.1rem;letter-spacing:-.04em}
.section-head p{margin:8px 0 0;color:var(--muted);line-height:1.8;max-width:760px}
.grid-3{display:grid;grid-template-columns:repeat(3,1fr);gap:20px}
.grid-2{display:grid;grid-template-columns:repeat(2,1fr);gap:20px}
.card{
  background:rgba(255,255,255,.94);
  border:1px solid rgba(219,229,240,.95);
  border-radius:var(--radius);
  box-shadow:var(--shadow);
}
.feature,.service,.content-card,.contact-card,.page-hero,.landing-card{
  padding:26px;
}
.icon{
  width:58px;height:58px;border-radius:18px;
  display:grid;place-items:center;
  background:linear-gradient(135deg, rgba(11,97,216,.12), rgba(255,122,0,.12));
  color:var(--blue);
  font-size:1.45rem;
  font-weight:900;
  margin-bottom:16px;
}
.feature h3,.service h3,.landing-card h3{margin:0 0 12px;font-size:1.2rem}
.feature p,.service p,.content-card p,.contact-card p,.page-hero p,.landing-card p{margin:0;color:var(--muted);line-height:1.75}
.service .top{display:flex;justify-content:space-between;align-items:start;gap:12px}
.service ul,.landing-card ul{
  margin:14px 0 0 18px;
  padding:0;
  color:var(--muted);
}
.service li,.landing-card li{margin:8px 0;line-height:1.6}
.link{font-weight:900;color:var(--blue)}
.highlight{
  background:linear-gradient(135deg,var(--blue-dark),var(--orange));
  color:#fff;border:none;position:relative;overflow:hidden;
}
.highlight::before{
  content:"";position:absolute;right:-18px;top:-18px;width:180px;height:180px;
  background:radial-gradient(circle, rgba(255,255,255,.16), transparent 64%);
}
.highlight p{color:rgba(255,255,255,.9)}
.check-list{list-style:none;padding:0;margin:0;display:grid;gap:12px}
.check-list li{display:flex;gap:12px;align-items:flex-start;line-height:1.65}
.check-list li::before{
  content:"✓";width:26px;height:26px;flex:0 0 26px;border-radius:999px;
  display:grid;place-items:center;background:rgba(255,255,255,.16);font-weight:900;
}
.page-top{padding:30px 0 10px}
.page-hero h1{margin:0 0 12px;font-size:clamp(2.3rem,4vw,3.8rem);letter-spacing:-.04em}
.page-hero .eyebrow{margin-bottom:14px}
.info-list{display:grid;gap:14px;margin-top:18px}
.info-item{
  padding:18px;border:1px solid var(--line);
  background:#fff;border-radius:20px;
}
.info-item strong{display:block;margin-bottom:8px}
.form{display:grid;gap:14px}
.input,.textarea{
  width:100%;padding:15px 16px;
  border-radius:18px;border:1px solid var(--line);
  background:#fff;font:inherit;color:var(--text);
}
.textarea{min-height:130px;resize:vertical}
.map-box{
  min-height:360px;border-radius:28px;border:1px solid var(--line);overflow:hidden;
}
.footer{
  margin-top:40px;
  padding:34px 0 44px;
  border-top:1px solid rgba(219,229,240,.95);
  background:rgba(255,255,255,.78);
}
.footer-grid{
  display:grid;
  grid-template-columns:1.15fr .85fr .9fr;
  gap:22px;
}
.footer p,.footer li,.footer a{color:var(--muted);line-height:1.8}
.footer ul{padding:0;margin:0;list-style:none}
.note{
  margin-top:18px;padding:16px 18px;border-radius:20px;background:#f7fbff;
  border:1px solid var(--line);color:var(--muted);
}
.wa-float{
  position:fixed;right:18px;bottom:18px;z-index:90;
  display:inline-flex;align-items:center;gap:10px;
  padding:14px 18px;border-radius:999px;
  background:linear-gradient(135deg,#21c35e,#169e48);
  color:#fff;font-weight:900;
  box-shadow:0 16px 32px rgba(22,163,74,.28);
}
@media (max-width:1080px){
  .hero-grid,.grid-3,.grid-2,.hero-trust,.stats,.footer-grid{grid-template-columns:1fr}
  .header-inner{grid-template-columns:1fr auto auto;gap:14px;padding:12px 0}
  .nav{display:none}
  .menu-btn{display:inline-flex;align-items:center;justify-content:center}
  .header-actions{display:none}
  .feature,.service,.content-card,.contact-card,.page-hero,.landing-card,.hero-copy{padding:22px}
  .hero-screen{min-height:440px}
}
@media (max-width:640px){
  .brand img{width:70px;height:70px}
  .brand-text strong{font-size:1.26rem}
  .topbar-inner{padding:10px 0}
  .hero-shell{padding:12px;border-radius:26px}
  .hero h1{font-size:2.35rem}
  .header-inner{grid-template-columns:1fr auto}
}