:root{
  --bg:#070b14;
  --panel: rgba(255,255,255,.06);
  --panel2: rgba(255,255,255,.04);
  --stroke: rgba(255,255,255,.10);
  --text:#eef3ff;
  --muted:#b8c2de;
  --brand:#4da3ff;
  --brand2:#69e6c4;
  --shadow: 0 18px 50px rgba(0,0,0,.45);
  --radius: 22px;
}

*{ box-sizing:border-box; }
html,body{ height:100%; }
body{
  margin:0;
  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  color:var(--text);
  background:
    radial-gradient(1100px 520px at 18% -10%, rgba(77,163,255,.35) 0%, rgba(7,11,20,0) 60%),
    radial-gradient(900px 520px at 85% 10%, rgba(105,230,196,.18) 0%, rgba(7,11,20,0) 62%),
    linear-gradient(180deg, #070b14 0%, #05070f 100%);
}

a{ color:inherit; text-decoration:none; }
.container{ width:min(1120px, 92%); margin:0 auto; }

.muted{ color:var(--muted); }
.small{ font-size:.92rem; }

/* Topbar */
.topbar{
  border-bottom:1px solid rgba(255,255,255,.06);
  background: rgba(0,0,0,.18);
  backdrop-filter: blur(12px);
}
.topbar-row{
  display:flex; align-items:center; justify-content:space-between;
  padding:10px 0;
  gap:12px;
  flex-wrap:wrap;
}
.chip{
  display:inline-flex; align-items:center; gap:8px;
  padding:7px 10px;
  border-radius:999px;
  background: rgba(255,255,255,.05);
  border:1px solid rgba(255,255,255,.08);
  color:var(--muted);
  font-weight:700;
  font-size:.86rem;
}
.toplink{
  color:var(--muted);
  font-weight:800;
}
.sep{ color:rgba(255,255,255,.25); margin:0 8px; }

/* Header */
.header{
  position:sticky; top:0; z-index:50;
  background: rgba(7,11,20,.55);
  backdrop-filter: blur(14px);
  border-bottom:1px solid rgba(255,255,255,.08);
}
.header-row{
  display:flex; align-items:center; justify-content:space-between;
  padding:14px 0;
  gap:16px;
}
.brand{ display:flex; align-items:center; gap:12px; }
.brand-mark {
    background: #ffffff !important;
    border-radius: 12px;
    padding: 4px;}
width: 84px;
    height: 84px;
    display: flex;
    align-items: center;
    justify-content: center;
.brand-text strong{ display:block; font-size:1rem; }
.brand-text span{ display:block; font-size:.86rem; color:var(--muted); margin-top:2px; }

.nav{ display:flex; align-items:center; gap:18px; }
.nav a{ color:var(--muted); font-weight:800; }
.nav a:hover{ color:var(--text); }

.menu-btn{
  display:none;
  background: transparent;
  border:1px solid rgba(255,255,255,.14);
  color:var(--text);
  padding:10px 12px;
  border-radius:14px;
}

/* Buttons */
.btn{
  display:inline-flex; align-items:center; justify-content:center;
  padding:12px 16px;
  border-radius:16px;
  background: linear-gradient(135deg, var(--brand), var(--brand2));
  color:#06101f;
  font-weight:950;
  border:0;
  cursor:pointer;
  box-shadow: 0 14px 40px rgba(77,163,255,.16);
}
.btn.small{ padding:10px 14px; border-radius:14px; }
.btn.outline{
  background: transparent;
  color:var(--text);
  border:1px solid rgba(255,255,255,.18);
  box-shadow:none;
}
.btn.full{ width:100%; }

/* Layout helpers */
.section{ padding:40px 0; }
.section.alt{
  background: rgba(255,255,255,.03);
  border-top:1px solid rgba(255,255,255,.06);
  border-bottom:1px solid rgba(255,255,255,.06);
}
.center{ display:flex; justify-content:center; }
.mt{ margin-top:16px; }

/* Cards & grids */
.card{
  background: var(--panel);
  border: 1px solid var(--stroke);
  border-radius: var(--radius);
  padding:18px;
  box-shadow: var(--shadow);
}
.card.highlight{
  background:
    radial-gradient(400px 260px at 20% 0%, rgba(77,163,255,.18), rgba(255,255,255,0) 60%),
    radial-gradient(420px 260px at 90% 12%, rgba(105,230,196,.12), rgba(255,255,255,0) 62%),
    rgba(255,255,255,.05);
}
.grid-3{ display:grid; grid-template-columns:repeat(3,1fr); gap:16px; }
.grid-2{ display:grid; grid-template-columns:repeat(2,1fr); gap:16px; }

/* Hero */
.hero{ padding:52px 0 16px; }
.hero-grid{
  display:grid;
  grid-template-columns: 1.25fr .95fr;
  gap:18px;
  align-items:stretch;
}
.kicker{
  display:inline-flex;
  padding:8px 12px;
  border-radius:999px;
  border:1px solid rgba(255,255,255,.10);
  background: rgba(255,255,255,.04);
  color:var(--muted);
  font-weight:900;
  font-size:.86rem;
  margin-bottom:14px;
}
.hero h1{
  margin:0 0 10px;
  font-size: clamp(30px, 4vw, 46px);
  line-height:1.07;
}
.grad{
  background: linear-gradient(135deg, var(--brand), var(--brand2));
  -webkit-background-clip:text;
  background-clip:text;
  color:transparent;
}
.lead{
  margin:0 0 14px;
  color:var(--muted);
  font-size:1.06rem;
  line-height:1.6;
}
.hero-actions{ display:flex; gap:12px; flex-wrap:wrap; margin-top:16px; }
.stats{ display:flex; gap:12px; flex-wrap:wrap; margin-top:14px; }
.stat{
  display:flex; align-items:center; gap:10px;
  padding:10px 12px;
  border-radius:999px;
  background: rgba(255,255,255,.04);
  border:1px solid rgba(255,255,255,.08);
  color:var(--muted);
  font-weight:850;
}
.stat strong{
  width:22px; height:22px; border-radius:8px;
  display:grid; place-items:center;
  background: rgba(105,230,196,.18);
  color: var(--text);
}

/* Sections */
.section-head{ display:flex; align-items:flex-end; justify-content:space-between; gap:16px; flex-wrap:wrap; margin-bottom:14px;}
.section-head h2{ margin:0; font-size:28px; }
.section-head p{ margin:0; }

/* Page */
.page{ padding:38px 0; }
.page-head{ margin-bottom:14px; }
.page-head h1{ margin:0 0 8px; font-size:34px; }
.note{
  margin-top:16px;
  padding:14px 16px;
  border-radius: 18px;
  border:1px solid rgba(255,255,255,.10);
  background: rgba(255,255,255,.03);
  color:var(--muted);
}
.note code{ color: var(--text); }

/* Forms */
.form label{ display:block; font-weight:900; color:var(--muted); margin-bottom:12px; }
input, textarea{
  width:100%;
  margin-top:8px;
  padding:12px 12px;
  border-radius:16px;
  border:1px solid rgba(255,255,255,.12);
  background: rgba(0,0,0,.22);
  color: var(--text);
  outline:none;
}
input:focus, textarea:focus{ border-color: rgba(105,230,196,.55); }
.form-row{ display:grid; grid-template-columns: 1fr 1fr; gap:12px; }

.alert{
  padding:12px 14px;
  border-radius:18px;
  border:1px solid rgba(255,255,255,.10);
  margin:12px 0 16px;
}
.alert.success{ background: rgba(69,212,131,.10); border-color: rgba(69,212,131,.25); }
.alert.error{ background: rgba(255,107,107,.10); border-color: rgba(255,107,107,.25); }

.divider{
  height:1px;
  background: rgba(255,255,255,.10);
  margin:14px 0;
}
.mini-grid{ display:grid; grid-template-columns:1fr; gap:12px; }
.label{ color:var(--muted); font-weight:900; font-size:.86rem; display:block; margin-bottom:4px; }
.value{ font-weight:900; }

/* Lists */
.list{ margin:0; padding-left:18px; color:var(--muted); line-height:1.7; }

/* Map */
.map{ margin-top:12px; border-radius:18px; overflow:hidden; border:1px solid rgba(255,255,255,.10); }
.map iframe{ width:100%; height:260px; border:0; }

/* CTA */
.cta{
  display:flex; align-items:center; justify-content:space-between;
  gap:16px; flex-wrap:wrap;
  padding:18px;
  border-radius: var(--radius);
  border:1px solid rgba(255,255,255,.10);
  background:
    radial-gradient(520px 320px at 10% 0%, rgba(77,163,255,.18), rgba(255,255,255,0) 62%),
    rgba(255,255,255,.04);
}
.cta h2{ margin:0 0 6px; }
.cta p{ margin:0; }
.cta-actions{ display:flex; gap:12px; flex-wrap:wrap; }

/* Footer */
.footer{
  padding:26px 0 12px;
  border-top:1px solid rgba(255,255,255,.08);
  background: rgba(0,0,0,.18);
}
.footer-grid{
  display:grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap:16px;
}
.footer-brand{ display:flex; gap:12px; align-items:flex-start; }
.footer-actions{ display:flex; gap:12px; margin-top:12px; flex-wrap:wrap; }
.footer-bottom{
  margin-top:16px;
  padding-top:12px;
  border-top:1px solid rgba(255,255,255,.07);
  display:flex; justify-content:space-between; gap:12px; flex-wrap:wrap;
}
.link{ color: var(--brand2); font-weight:900; }

/* WhatsApp float */
.whatsapp-float{
  position:fixed;
  right:16px; bottom:16px;
  width:58px; height:58px;
  border-radius:20px;
  display:grid; place-items:center;
  background: linear-gradient(135deg, var(--brand2), var(--brand));
  color:#06101f;
  font-size:24px;
  box-shadow: 0 18px 60px rgba(0,0,0,.55);
  border:1px solid rgba(255,255,255,.12);
}

/* Mobile */
@media (max-width: 920px){
  .hero-grid{ grid-template-columns: 1fr; }
  .grid-3{ grid-template-columns: 1fr; }
  .grid-2{ grid-template-columns: 1fr; }
  .footer-grid{ grid-template-columns: 1fr; }
  .form-row{ grid-template-columns: 1fr; }
  .menu-btn{ display:inline-flex; }
  .nav{
    position:absolute;
    right:4%;
    top:64px;
    background: rgba(7,11,20,.95);
    border:1px solid rgba(255,255,255,.10);
    border-radius:18px;
    padding:12px;
    display:none;
    flex-direction:column;
    width:min(340px, 92vw);
    gap:14px;
  }
  .nav.open{ display:flex; }
}

/* Logo */
.brand-logo {
max-height: 90px !important;
    width: auto !important;
}



/* ===== REAL IMAGENS LIGHT BLUE THEME ===== */
:root{
  --bg:#f5f9ff;
  --bg-soft:#eef5ff;
  --card:#ffffff;
  --primary:#2aa7d6;
  --primary-dark:#1f86ad;
  --text:#0f2a3a;
  --muted:#5f7f90;
  --border:#d9e7f3;
}

body{
  background:var(--bg) !important;
  color:var(--text) !important;
}

.header, .topbar{
  background:#ffffff !important;
  border-bottom:1px solid var(--border);
}

.hero{
  background:linear-gradient(135deg,#f5f9ff 0%,#eaf4ff 100%) !important;
}

.card{
  background:var(--card) !important;
  border:1px solid var(--border) !important;
  box-shadow:0 8px 20px rgba(42,167,214,0.12);
}

.btn{
  background:var(--primary) !important;
  color:#fff !important;
}

.btn:hover{
  background:var(--primary-dark) !important;
}

.muted{
  color:var(--muted) !important;
}

.footer{
  background:#ffffff !important;
  border-top:1px solid var(--border);
}

.whatsapp-float{
  background:var(--primary) !important;
}



/* ===== Premium hero + visuals ===== */
.hero-premium{ padding: 34px 0 18px; }
.premium-grid{ gap: 22px; align-items: start; }
.hero-visual{ position: relative; }
.visual-card{
  background: linear-gradient(135deg, #ffffff 0%, #f3f9ff 100%);
  border: 1px solid var(--border);
  border-radius: 26px;
  padding: 14px;
  box-shadow: 0 14px 34px rgba(42,167,214,0.14);
}
.hero-img{ width:100%; height:auto; display:block; border-radius: 18px; }
.floating-card{
  position: absolute;
  right: 16px;
  bottom: -16px;
  width: min(380px, 92%);
  background: #ffffff;
  border: 1px solid var(--border);
  border-radius: 22px;
  padding: 16px;
  box-shadow: 0 18px 46px rgba(31,134,173,0.18);
}
.pill-row{ display:flex; gap:10px; flex-wrap:wrap; margin-top:14px; }
.pill{
  display:inline-flex; align-items:center;
  padding:9px 12px;
  border-radius:999px;
  border:1px solid var(--border);
  background: #ffffff;
  color: var(--muted);
  font-weight:800;
  font-size:.92rem;
}

.icon-card .icon{
  width:56px; height:56px;
  margin-bottom:10px;
}
.icon-card h3{ margin-top:0; }

.service-card .btn{ margin-top: 10px; }

/* ===== Scroll animations ===== */
.animate{ opacity:0; transform: translateY(10px); transition: opacity .6s ease, transform .6s ease; }
.animate.in{ opacity:1; transform: translateY(0); }

/* ===== Sticky CTA on mobile ===== */
.sticky-cta{
  position: fixed;
  left: 12px; right: 12px;
  bottom: 12px;
  z-index: 999;
  display:none;
  background: #ffffff;
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 10px;
  box-shadow: 0 18px 50px rgba(42,167,214,0.18);
}
.sticky-cta .row{ display:flex; gap:10px; }
.sticky-cta .row a{ flex:1; }

@media (max-width: 920px){
  .floating-card{ position: static; width: 100%; margin-top: 12px; }
  .sticky-cta{ display:block; }
}
/* === Ajuste do logo no topo (sem quebrar layout) === */
.brand{
  display: flex;
  align-items: center;      /* alinha verticalmente */
  gap: 12px;                /* espaço entre logo e texto */
}

.brand-mark{
  width: 64px;              /* área fixa para o logo */
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 64px;           /* impede esticar */
}

.brand-logo{
  max-height: 64px !important;
  max-width: 64px !important;
  width: auto !important;
  height: auto !important;
  object-fit: contain;
}

/* Desktop: pode ficar um pouco maior */
@media (min-width: 992px){
  .brand-mark{
    width: 72px;
    height: 72px;
    flex: 0 0 72px;
  }
  .brand-logo{
    max-height: 72px !important;
    max-width: 72px !important;
  }
}
