:root{
  --bg:#0b1220;
  --bg2:#0f1b33;
  --soft:#f5f7fb;
  --card:#ffffff;
  --text:#0b1220;
  --muted:#5b6476;

  --primary:#1f6fff;      /* azul principal */
  --primary2:#1a56c7;     /* hover */
  --outline:#d7deea;

  --success:#18a957;      /* whatsapp */
  --radius:16px;
  --shadow: 0 14px 40px rgba(11,18,32,.10);
  --shadow2: 0 10px 24px rgba(11,18,32,.12);
}

*{box-sizing:border-box}
html,body{margin:0;padding:0}
body{
  font-family:Inter,system-ui,-apple-system,Segoe UI,Roboto,Arial,sans-serif;
  color:var(--text);
  background:#fff;
  line-height:1.4;
}

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

.container{
  width:min(1120px, 92vw);
  margin-inline:auto;
}

/* TOPBAR */
//* ===== TOPBAR CLEAN ===== */

.top-bar{
  background:#0c2f57;
  color:#ffffff;
  position:relative;
  z-index:9999;
}

.topbar-inner{
  display:flex;
  justify-content:space-between;
  align-items:center;
  padding:8px 0;
}

.topbar-link{
  color:#0f3d91;
  font-weight:700;
  text-decoration:none;
  padding:6px 12px;
  border-radius:6px;
  background:#e9f0fb;
}

.topbar-link:hover{
  background:#dbe7fb;
}



header{
  position:relative;
  z-index:9999;
}

.header-inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding:12px 0;
}


/* BRAND mais clean e “pra cima” */
.brand{
  display:flex;
  align-items:center;
  gap: 12px;
  text-decoration:none;
  color:#fff;
  margin-top: -2px;          /* puxa levemente pra cima */
}

.brand-logo{
  height: 52px;
  width:auto;

  /* clean: fundo branco + cantos suaves */
  background: #fff;
  padding: 8px 12px;
  border-radius: 14px;

  /* sombra premium */
  box-shadow: 0 14px 30px rgba(0,0,0,.22);
}

.brand-text strong{
  color:#fff;
  font-size: 16px;
  letter-spacing: .2px;
}

.brand-text span{
  color: rgba(255,255,255,.92);
  font-size: 13px;
}

/* ===== BOTÕES ===== */

.header-cta{
  display:flex;
  gap:10px;
}

.btn{
  padding:10px 18px;
  border-radius:30px;
  font-weight:700;
  text-decoration:none;
  font-size:14px;
}


/* ===== BURGER MOBILE ===== */

.burger{
  display:none;
  width:42px;
  height:38px;
  border-radius:8px;
  border:1px solid #dbe3ec;
  background:#fff;
  cursor:pointer;
}

.burger span{
  display:block;
  width:22px;
  height:2px;
  background:#2b3a4a;
  margin:5px auto;
}


/* ===== RESPONSIVO ===== */

@media (max-width:900px){

.nav{
display:none;
}

.header-cta{
display:none;
}

.burger{
display:block;
}

.topbar-inner{
flex-direction:column;
gap:6px;
align-items:flex-start;
}

.top-bar{
background: linear-gradient(90deg,#0c2f57,#0a4c8f);
color:#fff;
font-size:14px;
padding:6px 0;
}

}
/* BUTTONS */
.oxi-btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap: 8px;
  padding: 10px 16px;
  border-radius: 999px;
  text-decoration:none;
  font-weight: 900;
  border: 1px solid transparent;
  white-space: nowrap;
  transition: .18s ease;
}
.oxi-btn-ghost{
  background: rgba(255,255,255,.10);
  color: var(--oxi-white);
  border-color: rgba(255,255,255,.22);
}
.oxi-btn-ghost:hover{ background: rgba(255,255,255,.16); }

.oxi-btn-wpp{
  background: linear-gradient(180deg, rgba(37,211,102,1), rgba(23,170,80,1));
  color: #07150e;
  box-shadow: 0 12px 26px rgba(37,211,102,.22);
}
.oxi-btn-wpp:hover{
  filter: brightness(.97);
  transform: translateY(-1px);
}

/* BURGER */
.oxi-burger{
  display:none;
  width: 50px;
  height: 44px;
  border-radius: 16px;
  border: 1px solid rgba(255,255,255,.22);
  background: rgba(255,255,255,.08);
  cursor:pointer;
}
.oxi-burger span{
  display:block;
  width: 22px;
  height: 2px;
  margin: 5px auto;
  background: #fff;
  border-radius: 99px;
  transition: .18s ease;
}

/* MOBILE MENU */
.oxi-mobile{
  border-top: 1px solid rgba(255,255,255,.10);
  background: rgba(0,0,0,.12);
  backdrop-filter: blur(12px);
}
.oxi-mobile-inner{
  display:flex;
  flex-direction:column;
  gap: 10px;
  padding: 12px 0 16px;
}
.oxi-m-link{
  color:#fff;
  text-decoration:none;
  font-weight: 750;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.12);
  padding: 12px 14px;
  border-radius: 16px;
  transition:.18s ease;
}
.oxi-m-link:hover{ background: rgba(255,255,255,.12); }

.oxi-mobile-cta{
  display:flex;
  flex-direction:column;
  gap: 10px;
  padding-top: 6px;
}
.oxi-mobile-note{
  opacity:.85;
  padding-top: 4px;
}

.w100{ width:100%; }

/* RESPONSIVE */
@media (max-width: 920px){
  .oxi-nav{ display:none; }
  .oxi-cta{ display:none; }
  .oxi-burger{ display:block; }
}

@media (max-width: 520px){
  .oxi-logo{ height: 48px; }
  .oxi-brand-text strong{ font-size: 15px; }
  .oxi-brand-text span{ font-size: 12px; }
}
}
.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  padding:12px 14px;
  border-radius:14px;
  font-weight:700;
  font-size:14px;
  border:1px solid transparent;
  cursor:pointer;
  transition:.18s ease;
  white-space:nowrap;
}
.btn-primary{
  background:var(--primary);
  color:#fff;
}
.btn-primary:hover{background:var(--primary2); transform:translateY(-1px)}
.btn-outline{
  background:#fff;
  border-color:var(--outline);
  color:#1d2a44;
}
.btn-outline:hover{transform:translateY(-1px); border-color:#c7d1e4}
.w100{width:100%}

.burger{
  display:none;
  width:44px;height:44px;
  border-radius:14px;
  border:1px solid var(--outline);
  background:#fff;
  cursor:pointer;
}
.burger span{
  display:block;
  width:18px;height:2px;
  margin:4px auto;
  background:#1d2a44;
  border-radius:2px;
}

.mobile-menu{
  border-top:1px solid #eef2f7;
  background:#fff;
}
.mobile-menu-inner{
  display:flex;
  flex-direction:column;
  gap:10px;
  padding:14px 0 18px;
}
.m-link{
  padding:12px 12px;
  border-radius:12px;
  background:#f6f8fc;
}
.mobile-cta{
  display:flex;
  flex-direction:column;
  gap:10px;
  margin-top:6px;
}

.hero{
  background: linear-gradient(120deg, var(--bg), var(--bg2));
  color:#fff;
  padding:64px 0 36px;
}
.hero-grid{
  display:grid;
  grid-template-columns: 1.25fr .75fr;
  gap:22px;
  align-items:start;
}

.badge{
  display:inline-flex;
  gap:8px;
  background:rgba(255,255,255,.10);
  border:1px solid rgba(255,255,255,.14);
  padding:8px 12px;
  border-radius:999px;
  font-size:12px;
  font-weight:700;
  margin-bottom:14px;
}
.hero-copy h1{
  margin:0 0 12px;
  font-size:42px;
  line-height:1.05;
  letter-spacing:-0.02em;
}
.hero-copy h1 span{opacity:.92}
.lead{
  margin:0 0 18px;
  font-size:16px;
  opacity:.92;
  max-width:58ch;
}
.hero-actions{
  display:flex;
  flex-wrap:wrap;
  gap:10px;
  margin-bottom:18px;
}
.hero-highlights{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:10px;
  margin-top:10px;
}

.hero-overlay{
  background: rgba(0,0,0,0.35);
  z-index:1;
}
.mini-card{
  background:rgba(255,255,255,.10);
  border:1px solid rgba(255,255,255,.14);
  border-radius:var(--radius);
  padding:12px;
}
.mini-card strong{display:block;font-size:13px}
.mini-card span{display:block;font-size:12px;opacity:.9}
.note{opacity:.8;font-size:12px}

.hero-card{
  background:rgba(255,255,255,.08);
  border:1px solid rgba(255,255,255,.14);
  border-radius:22px;
  overflow:hidden;
}
.hero-card-inner{
  padding:18px;
}
.hero-card h2{margin:0 0 8px;font-size:18px}
.hero-card p{margin:0 0 14px;opacity:.92}
.quick{display:flex;flex-direction:column;gap:10px}
.divider{
  height:1px;background:rgba(255,255,255,.16);
  margin:14px 0;
}
.checklist{
  margin:0;padding:0 0 0 18px;
  display:grid;gap:6px;
  font-size:13px; opacity:.92;
}

.section{padding:54px 0}
.section-soft{background:var(--soft)}
.section-title{
  margin-bottom:18px;
}
.section-title h2{
  margin:0 0 6px;
  font-size:28px;
  letter-spacing:-0.02em;
}
.section-title p{margin:0;color:var(--muted)}

.grid-2{
  display:grid;
  grid-template-columns:repeat(2,1fr);
  gap:16px;
}
.grid-3{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:14px;
}

.card{
  background:var(--card);
  border:1px solid #e8eef8;
  border-radius:22px;
  padding:18px;
  box-shadow: var(--shadow);
}
.card h3{margin:0 0 8px}
.card p{margin:0 0 12px;color:var(--muted)}
.chips{
  display:flex;flex-wrap:wrap;gap:8px;
  margin-bottom:14px;
}
.chips span{
  font-size:12px;
  font-weight:700;
  background:#f1f5ff;
  border:1px solid #dfe7fb;
  color:#1d2a44;
  padding:6px 10px;
  border-radius:999px;
}
.card-actions{display:flex;gap:10px;flex-wrap:wrap}

.icon-card{
  background:#fff;
  border:1px solid #e8eef8;
  border-radius:22px;
  padding:16px;
  box-shadow: var(--shadow);
}

.icon-card{
background:#fff;
padding:25px;
border-radius:12px;
border:1px solid #e5e7eb;
text-align:center;
transition:0.3s;
}

.icon-card:hover{
transform:translateY(-5px);
box-shadow:0 10px 25px rgba(0,0,0,0.08);
}

.icon{
font-size:35px;
margin-bottom:10px;
}

.icon-card h4{
margin-bottom:8px;
font-size:18px;
color:#0f172a;
}

.icon-card p{
font-size:14px;
color:#475569;
}
.icon{font-size:22px}
.icon-card h4{margin:10px 0 6px}
.icon-card p{margin:0;color:var(--muted)}

.feature{
  background:#fff;
  border:1px solid #e8eef8;
  border-radius:22px;
  padding:16px;
}
.feature h4{margin:0 0 8px}
.feature p{margin:0;color:var(--muted)}

.review{
  background:#fff;
  border:1px solid #e8eef8;
  border-radius:22px;
  padding:16px;
}
.review p{margin:0 0 10px;color:#2d3850}
.review strong{font-size:13px}
.review span{font-size:13px;color:var(--muted);margin-left:6px}

.center{text-align:center}
.mt-24{margin-top:24px}

.contact-grid{
  display:grid;
  grid-template-columns: .95fr 1.05fr;
  gap:16px;
  align-items:start;
}
.contact-card{
  background:#fff;
  border:1px solid #e8eef8;
  border-radius:22px;
  padding:18px;
  box-shadow: var(--shadow);
}
.contact-actions{
  display:flex;
  flex-direction:column;
  gap:10px;
  margin:14px 0;
}
.contact-info{
  background:#f6f8fc;
  border:1px solid #e8eef8;
  border-radius:16px;
  padding:12px;
}
.info-row{
  display:flex;
  justify-content:space-between;
  gap:10px;
  padding:8px 0;
  border-bottom:1px dashed #dbe4f5;
}
.info-row:last-child{border-bottom:none}
.label{color:var(--muted); font-size:13px}
.value{font-weight:700; font-size:13px}

.form{
  background:#fff;
  border:1px solid #e8eef8;
  border-radius:22px;
  padding:18px;
  box-shadow: var(--shadow);
}
.form h3{margin:0 0 12px}
label{display:grid;gap:6px;margin-bottom:12px;font-weight:700;font-size:13px}
input,select,textarea{
  width:100%;
  padding:12px 12px;
  border-radius:14px;
  border:1px solid #dbe4f5;
  outline:none;
  font-family:inherit;
  font-size:14px;
}
input:focus,select:focus,textarea:focus{
  border-color:#b9ccff;
  box-shadow:0 0 0 4px rgba(31,111,255,.12);
}

.map-wrap{
  margin-top:16px;
  border-radius:22px;
  overflow:hidden;
  border:1px solid #e8eef8;
  box-shadow: var(--shadow2);
}
.map-wrap iframe{
  width:100%;
  height:340px;
  border:0;
  display:block;
}

.footer{
  background:#0b1220;
  color:#fff;
  padding:28px 0 18px;
}
.footer-inner{
  display:flex;
  justify-content:space-between;
  gap:18px;
  flex-wrap:wrap;
}
.footer p{margin:6px 0 0;opacity:.9}
.footer-links{
  display:flex;
  gap:14px;
  flex-wrap:wrap;
}
.footer-links a{opacity:.9}
.footer-links a:hover{opacity:1;text-decoration:underline}
.footer-bottom{
  margin-top:14px;
  padding-top:14px;
  border-top:1px solid rgba(255,255,255,.12);
  display:flex;
  justify-content:space-between;
  gap:12px;
  flex-wrap:wrap;
  font-size:13px;
}
.muted{opacity:.8}

.float-wpp{
  position:fixed;
  right:18px;
  bottom:18px;
  z-index:60;
  background:var(--success);
  color:#fff;
  padding:12px 14px;
  border-radius:999px;
  font-weight:800;
  box-shadow:0 16px 40px rgba(24,169,87,.26);
  display:inline-flex;
  align-items:center;
  gap:10px;
}
.float-wpp:hover{transform:translateY(-1px)}

@media (max-width: 980px){
  .nav,.header-cta{display:none}
  .burger{display:block}
  .hero-grid{grid-template-columns:1fr;gap:16px}
  .hero-copy h1{font-size:34px}
  .hero-highlights{grid-template-columns:1fr;gap:10px}
  .grid-2{grid-template-columns:1fr}
  .grid-3{grid-template-columns:1fr}
  .contact-grid{grid-template-columns:1fr}
}




<*----------------------------*>


<style>
  .hero {
    position: relative;
    min-height: 90vh;
    display: flex;
    align-items: center;
    color: white;
    overflow: hidden;
  }

  .hero-bg,
  .hero-video {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
  }

  .hero-video {
    opacity: 0.40; /* Ajuste para mais/menos visibilidade das bolhas */
  }

  .hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(0, 40, 90, 0.65), rgba(0, 20, 60, 0.85));
    z-index: 2;
  }

  .container.hero-grid {
    position: relative;
    z-index: 3;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 4rem 2rem;
  }

  .hero-copy h1 {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    line-height: 1.1;
  }

  .hero-copy h1 span {
    font-size: 2.2rem;
    font-weight: 400;
    display: block;
  }

  .lead {
    font-size: 1.35rem;
    margin-bottom: 2.5rem;
    max-width: 600px;
  }

  .btn {
    padding: 1rem 2rem;
    border-radius: 50px;
    font-weight: bold;
    text-decoration: none;
    transition: all 0.3s;
  }

  .btn-primary {
    background: #00aaff;
    color: white;
    border: none;
  }

  .btn-primary:hover {
    background: #0088dd;
    transform: translateY(-3px);
  }

  .btn-outline {
    border: 2px solid #00aaff;
    color: #00aaff;
  }

  .btn-outline:hover {
    background: #00aaff;
    color: white;
  }

  .hero-highlights {
    display: flex;
    gap: 1.5rem;
    margin-top: 2rem;
    flex-wrap: wrap;
  }

  .mini-card {
    background: rgba(255,255,255,0.15);
    backdrop-filter: blur(8px);
    padding: 1rem 1.5rem;
    border-radius: 12px;
    text-align: center;
  }

  .hero-card {
    background: rgba(255,255,255,0.12);
    backdrop-filter: blur(10px);
    border-radius: 16px;
    padding: 2.5rem;
    border: 1px solid rgba(255,255,255,0.2);
  }

  .w100 { width: 100%; margin-bottom: 1rem; }

  .divider { height: 1px; background: rgba(255,255,255,0.3); margin: 1.5rem 0; }

  .checklist { list-style: none; padding: 0; }
  .checklist li { margin: 0.8rem 0; font-size: 1.15rem; }

  @media (max-width: 992px) {
    .hero-grid { grid-template-columns: 1fr; }
    .hero-copy h1 { font-size: 2.8rem; }
    .hero-copy h1 span { font-size: 1.8rem; }
  }

  @media (max-width: 576px) {
    .hero { min-height: 100vh; }
    .container.hero-grid { padding: 6rem 1.5rem 4rem; }
  }
</style>




<*----------------------*>







/* =========================
   HERO PRO (RESPONSIVO)
========================= */

.hero{
  position: relative;
  overflow: hidden;
  padding: 70px 0;
  color: #fff;
}

/* fundo vídeo */
.hero-bg{
  position:absolute;
  inset:0;
  z-index:0;
}

.hero-video{
  width:100%;
  height:100%;
  object-fit: cover;
  transform: scale(1.02);
}

/* overlay: contraste perfeito */
.hero-overlay{
  position:absolute;
  inset:0;
  background:
    radial-gradient(900px 500px at 20% 20%, rgba(66,153,225,.25), rgba(0,0,0,0)),
    linear-gradient(180deg, rgba(3,20,50,.86), rgba(2,12,28,.92));
}

/* conteúdo acima do vídeo */
.hero .container{
  position: relative;
  z-index: 1;
}

/* grid desktop */
.hero-grid{
  display:grid;
  grid-template-columns: 1.2fr .8fr;
  gap: 28px;
  align-items: start;
  min-width: 0;
}

/* bloco texto */
.hero-copy{ min-width: 0; }

/* badge */
.badge{
  display:inline-flex;
  align-items:center;
  gap:8px;
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(255,255,255,.10);
  border: 1px solid rgba(255,255,255,.14);
  color: rgba(255,255,255,.92);
  font-weight: 800;
  font-size: 13px;
}

/* título */
.hero h1{
  margin: 18px 0 12px;
  font-size: clamp(34px, 4vw, 58px);
  line-height: 1.03;
  letter-spacing: -0.8px;
}
.hero h1 span{
  display:inline-block;
  margin-top: 10px;
  font-size: clamp(16px, 1.5vw, 22px);
  font-weight: 600;
  color: rgba(255,255,255,.85);
}

/* parágrafo */
.lead{
  margin: 0 0 18px;
  max-width: 58ch;
  font-size: 16px;
  line-height: 1.55;
  color: rgba(255,255,255,.86);
}

/* ações */
.hero-actions{
  display:flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 18px;
}

/* cards de destaque */
.hero-highlights{
  display:grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 18px;
}

.mini-card{
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 16px;
  padding: 12px 12px;
  min-width: 0;
}
.mini-card strong{
  display:block;
  font-weight: 900;
  font-size: 14px;
}
.mini-card span{
  display:block;
  margin-top: 6px;
  color: rgba(255,255,255,.82);
  font-size: 13px;
}

/* card lateral (urgência) */
.hero-card{
  min-width: 0;
}
.hero-card-inner{
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 22px;
  padding: 18px;
  box-shadow: 0 18px 50px rgba(0,0,0,.25);
  backdrop-filter: blur(10px);
}

.hero-card-inner h2{
  margin: 0 0 8px;
  font-size: 18px;
}
.hero-card-inner p{
  margin: 0 0 14px;
  color: rgba(255,255,255,.85);
  line-height: 1.45;
}

.quick{
  display:grid;
  gap: 10px;
}

.divider{
  height: 1px;
  background: rgba(255,255,255,.14);
  margin: 16px 0;
}

/* checklist */
.checklist{
  list-style: none;
  padding: 0;
  margin: 0;
  display:grid;
  gap: 10px;
}
.checklist li{
  display:flex;
  align-items:flex-start;
  gap: 10px;
  color: rgba(255,255,255,.88);
}
.checklist li::before{
  content:"✓";
  font-weight: 900;
  color: rgba(140,200,255,.95);
}

/* garante botões ocuparem bem */
.w100{ width: 100%; }

/* =========================
   RESPONSIVO
========================= */

/* notebook/tablet */
@media (max-width: 980px){
  .hero{ padding: 56px 0; }
  .hero-grid{
    grid-template-columns: 1fr;
    gap: 18px;
  }
  .hero-card{
    max-width: 560px;
    margin: 0 auto;
  }
  .hero-highlights{
    grid-template-columns: 1fr;
  }
}

/* mobile pequeno */
@media (max-width: 420px){
  .badge{ font-size: 12px; padding: 9px 12px; }
  .lead{ font-size: 15px; }
}

.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:8px;
  padding: 12px 18px;
  border-radius: 999px;
  font-weight: 900;
  text-decoration:none;
  border: 1px solid transparent;
  white-space: nowrap;
}

.btn-outline{
  background: rgba(255,255,255,.10);
  border-color: rgba(255,255,255,.22);
  color:#fff;
}

.btn-outline:hover{ background: rgba(255,255,255,.16); }

.btn-primary{
  background:#25D366;
  color:#07150e;
  box-shadow: 0 14px 30px rgba(37,211,102,.18);
}

.btn-primary:hover{ filter: brightness(.97); }



@media (max-width: 768px){

.hero-grid{
display:flex;
flex-direction:column;
align-items:center;
text-align:center;
gap:30px;
padding:20px;
}

.hero-copy{
max-width:100%;
}

.hero-card{
width:100%;
max-width:380px;
margin:auto;
}

}





/* ==========================================================================
   CONTAINER BASE - padding lateral seguro em todos dispositivos
   ========================================================================== */
.container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 20px; /* 20px lateral = confortável no mobile */
}

/* ==========================================================================
   TOPBAR - clean e visível
   ========================================================================== */
.topbar {
  background: rgba(10, 31, 68, 0.92);
  color: #ffffff;
  font-size: 1rem;
  padding: 12px 0;
  text-align: center;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.topbar-inner {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}

.topbar-text {
  font-weight: 500;
}

.topbar-link {
  color: #00ffaa;
  text-decoration: none;
  font-weight: 600;
}

.topbar-link:hover {
  text-decoration: underline;
}

/* ==========================================================================
   HERO SECTION - profissional e responsiva
   ========================================================================== */
.hero {
  position: relative;
  min-height: 85vh;
  display: flex;
  align-items: center;
  padding: 80px 0 60px;
  overflow: hidden;
}

.hero-bg,
.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(10, 31, 68, 0.85), rgba(10, 31, 68, 0.75));
  z-index: 1;
}

.hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
  gap: 48px;
  align-items: center;
}

/* Texto principal - clean, letras brancas fortes */
.hero-copy {
  color: #ffffff;
}

.hero-copy .badge {
  display: inline-block;
  background: rgba(0, 204, 136, 0.22);
  color: #ffffff;
  padding: 8px 18px;
  border-radius: 999px;
  font-size: 0.95rem;
  font-weight: 500;
  margin-bottom: 24px;
}

.hero-copy h1 {
  font-size: clamp(2.4rem, 6vw, 4.2rem);
  font-weight: 800;
  line-height: 1.12;
  margin-bottom: 20px;
  color: #ffffff;
}

.hero-copy h1 span {
  display: block;
  font-size: clamp(1.5rem, 4vw, 2.4rem);
  font-weight: 500;
  opacity: 0.92;
  margin-top: 8px;
}

.hero-copy .lead {
  font-size: clamp(1.15rem, 3vw, 1.35rem);
  color: #e0e8ff;
  margin-bottom: 36px;
  max-width: 90%;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

/* Card "Precisa com urgência?" - clean, profissional, alto contraste */
.hero-card {
  background: #0d254e; /* azul escuro elegante */
  border-radius: 20px;
  padding: 36px 28px;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.45);
  border: 1px solid rgba(0, 204, 136, 0.10);
  color: #ffffff;
  backdrop-filter: blur(6px); /* efeito glass sutil se navegador suportar */
}

.hero-card h2 {
  font-size: clamp(1.6rem, 4.2vw, 2rem);
  font-weight: 700;
  margin-bottom: 20px;
  color: #ffffff;
}

.hero-card p {
  font-size: clamp(1.05rem, 3vw, 1.15rem);
  color: #d0deff;
  margin-bottom: 28px;
  line-height: 1.6;
}

.quick {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 32px;
}

.checklist {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.checklist li {
  font-size: 1.08rem;
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.checklist li::before {
  content: "✔";
  color: #00ffaa;
  font-size: 1.4rem;
  line-height: 1.2;
  flex-shrink: 0;
}

/* Botões profissionais */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 16px 32px;
  border-radius: 50px;
  font-size: 1.08rem;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.25s ease;
  min-width: 180px;
}

.btn-primary {
  background: #00cc88;
  color: #000000;
  border: none;
}

.btn-primary:hover {
  background: #00b377;
  transform: translateY(-2px);
}

.btn-outline {
  background: transparent;
  border: 2px solid #00cc88;
  color: #00cc88;
}

.btn-outline:hover {
  background: rgba(0, 204, 136, 0.12);
}

/* ==========================================================================
   RESPONSIVIDADE PROFISSIONAL
   ========================================================================== */
@media (min-width: 992px) {
  .hero-grid { gap: 64px; }
  .hero-card { padding: 44px 36px; }
}

@media (max-width: 767px) {
  .hero { padding: 60px 0 40px; min-height: auto; }
  .hero-copy { text-align: center; }
  .hero-copy .lead { max-width: 100%; }
  .btn { min-width: auto; width: 100%; padding: 16px 24px; }
}

/* Telas muito pequenas (garantia extra) */
@media (max-width: 480px) {
  .hero-grid { grid-template-columns: 1fr; gap: 40px; }
  .hero-copy h1 { font-size: 2.2rem; }
  .hero-card { padding: 28px 20px; }
}




/* ==========================================================================*/

/* ==========================================================================
   HERO - Layout profissional, responsivo e sem esticamento
   ========================================================================== */

.hero {
  position: relative;
  min-height: 80vh;
  display: flex;
  align-items: center;
  padding: 80px 0 60px;
  overflow: hidden;
  color: #ffffff;
}

.hero-bg,
.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(10, 31, 68, 0.78);
  z-index: 1;
}

.container {
  position: relative;
  z-index: 2;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 20px;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 380px;          /* texto flexível + card fixo (como na foto do PC) */
  gap: 48px;
  align-items: start;
}

/* Coluna esquerda - texto principal */
.hero-copy .badge {
  display: inline-block;
  background: rgba(0, 204, 136, 0.25);
  color: white;
  padding: 8px 18px;
  border-radius: 30px;
  font-size: 0.95rem;
  margin-bottom: 24px;
}

.hero-copy h1 {
  font-size: clamp(2.6rem, 6vw, 4.2rem);
  font-weight: 800;
  line-height: 1.12;
  margin-bottom: 20px;
}

.hero-copy h1 span {
  display: block;
  font-size: clamp(1.6rem, 4vw, 2.4rem);
  font-weight: 500;
  opacity: 0.92;
}

.hero-copy .lead {
  font-size: clamp(1.15rem, 3vw, 1.35rem);
  line-height: 1.6;
  margin-bottom: 36px;
  max-width: 90%;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 40px;
}

.hero-highlights {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.mini-card {
  background: rgba(255,255,255,0.12);
  padding: 16px 20px;
  border-radius: 12px;
  text-align: center;
  min-width: 140px;
  flex: 1;
}

.mini-card strong {
  display: block;
  font-size: 1.2rem;
  margin-bottom: 6px;
}

.mini-card span {
  font-size: 0.95rem;
  opacity: 0.9;
}

/* Card de urgência - fixo na largura, altura controlada */
.hero-card {
  width: 380px;
  max-width: 100%;
  background: #0d254e;
  border-radius: 16px;
  padding: 28px 24px;
  box-shadow: 0 12px 40px rgba(0,0,0,0.5);
  border: 1px solid rgba(0,204,136,0.12);
  max-height: 85vh;
  overflow-y: auto;
}

.hero-card h2 {
  font-size: 1.8rem;
  margin-bottom: 16px;
}

.hero-card p {
  font-size: 1.08rem;
  line-height: 1.55;
  margin-bottom: 24px;
  opacity: 0.95;
}

.quick {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 28px;
}

.divider {
  height: 1px;
  background: rgba(255,255,255,0.15);
  margin: 24px 0;
}

.checklist {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.checklist li {
  font-size: 1.05rem;
  display: flex;
  align-items: center;
  gap: 12px;
}

.checklist li::before {
  content: "✔";
  color: #00ffaa;
  font-weight: bold;
}

/* Botões */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 16px 32px;
  border-radius: 50px;
  font-size: 1.05rem;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.2s;
}

.btn-primary {
  background: #00cc88;
  color: #000;
  border: none;
}

.btn-primary:hover { background: #00b377; }

.btn-outline {
  background: transparent;
  border: 2px solid #00cc88;
  color: #00cc88;
}

.btn-outline:hover { background: rgba(0,204,136,0.12); }

/* ==========================================================================


/* Reset básico e container */
* { box-sizing: border-box; margin: 0; padding: 0; }
.container { max-width: 1280px; margin: 0 auto; padding: 0 20px; }

/* Hero principal */
.hero {
  position: relative;
  min-height: 80vh;
  display: flex;
  align-items: center;
  padding: 80px 0 60px;
  color: #fff;
  overflow: hidden;
}

.hero-bg, .hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(10, 31, 68, 0.78);
  z-index: 1;
}

.hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 380px; /* texto flex + card fixo (como na foto desktop) */
  gap: 48px;
  align-items: start;
}

/* Texto principal */
.hero-copy .badge {
  background: rgba(0, 204, 136, 0.25);
  color: white;
  padding: 8px 18px;
  border-radius: 30px;
  font-size: 0.95rem;
  margin-bottom: 24px;
  display: inline-block;
}

.hero-copy h1 {
  font-size: clamp(2.8rem, 6vw, 4.5rem);
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 20px;
}

.hero-copy h1 span {
  display: block;
  font-size: clamp(1.6rem, 4vw, 2.5rem);
  opacity: 0.9;
}

.hero-copy .lead {
  font-size: clamp(1.15rem, 3vw, 1.35rem);
  line-height: 1.6;
  margin-bottom: 32px;
  max-width: 90%;
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.hero-highlights {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.mini-card {
  background: rgba(255,255,255,0.12);
  padding: 16px 20px;
  border-radius: 12px;
  text-align: center;
  flex: 1 1 140px;
}

.mini-card strong { font-size: 1.2rem; display: block; margin-bottom: 6px; }
.mini-card span { font-size: 0.95rem; opacity: 0.9; }

/* Card urgência - largura fixa, altura limitada */
.hero-card {
  width: 380px;
  max-width: 100%;
  background: #0d254e;
  border-radius: 16px;
  padding: 28px 24px;
  box-shadow: 0 10px 35px rgba(0,0,0,0.5);
  max-height: 85vh;
  overflow-y: auto;
}

.hero-card h2 { font-size: 1.8rem; margin-bottom: 16px; }
.hero-card p { font-size: 1.08rem; line-height: 1.55; margin-bottom: 24px; opacity: 0.95; }

.quick { display: flex; flex-direction: column; gap: 14px; margin-bottom: 28px; }

.divider { height: 1px; background: rgba(255,255,255,0.15); margin: 24px 0; }

.checklist { list-style: none; display: flex; flex-direction: column; gap: 12px; }
.checklist li { font-size: 1.05rem; display: flex; align-items: center; gap: 12px; }
.checklist li::before { content: "✔"; color: #00ffaa; font-weight: bold; }

/* Botões */
.btn {
  padding: 16px 32px;
  border-radius: 50px;
  font-size: 1.05rem;
  font-weight: 600;
  text-decoration: none;
  text-align: center;
  transition: 0.2s;
}

.btn-primary { background: #00cc88; color: #000; }
.btn-primary:hover { background: #00b377; }

.btn-outline { background: transparent; border: 2px solid #00cc88; color: #00cc88; }
.btn-outline:hover { background: rgba(0,204,136,0.12); }

/* RESPONSIVIDADE - Mantém lado a lado, compacto no vertical */

@media (max-width: 767px) and (orientation: portrait) {
  .hero { padding: 60px 0 40px; min-height: auto; }
  
  .hero-grid {
    grid-template-columns: 1fr 340px;
    gap: 32px;
  }
  
  .hero-card {
    width: 340px;
    padding: 22px 20px;
    max-height: 70vh; /* impede esticamento vertical */
  }
  
  .hero-copy h1 { font-size: 2.5rem; }
  .hero-copy .lead { font-size: 1.15rem; }
  
  .btn { padding: 14px 24px; font-size: 1rem; width: 100%; }
}

@media (max-width: 480px) {
  .hero-grid { grid-template-columns: 1fr 320px; gap: 24px; }
  .hero-card { width: 320px; padding: 20px 18px; max-height: 65vh; }
}

/* Desktop / landscape - layout da sua foto */
@media (min-width: 768px) {
  .hero-grid { grid-template-columns: 1fr 400px; gap: 50px; }
  .hero-card { width: 400px; padding: 30px 26px; max-height: none; }
}




/* Base mobile-first: tudo empilhado verticalmente */

/* Reset básico e fundo geral (ajuste se já tiver global) */
.hero {
  position: relative;
  min-height: 100vh; /* ou ajuste para caber bem na tela */
  color: white;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: -1;
}

.hero-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 50, 0.65); /* azul escuro semi-transparente para legibilidade */
  backdrop-filter: blur(2px); /* opcional: efeito glass */
}

/* Container principal - mobile-first: coluna */
.container.hero-grid {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
  padding: 5rem 1.5rem 3rem; /* espaço topo e baixo */
  max-width: 1200px;
  margin: 0 auto;
}

.hero-copy {
  text-align: center;
}

.badge {
  display: inline-block;
  background: rgba(255, 255, 255, 0.15);
  padding: 0.5rem 1rem;
  border-radius: 50px;
  font-size: 0.9rem;
  margin-bottom: 1rem;
}

h1 {
  font-size: 2.8rem;
  margin: 0 0 1rem;
  line-height: 1.1;
}

h1 span {
  display: block;
  font-size: 1.4rem;
  font-weight: 400;
  opacity: 0.9;
  margin-top: 0.5rem;
}

.lead {
  font-size: 1.2rem;
  max-width: 700px;
  margin: 0 auto 2rem;
  opacity: 0.95;
}

/* Botões principais */
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
  margin-bottom: 2rem;
}

.btn {
  padding: 1rem 2rem;
  font-size: 1.1rem;
  border-radius: 50px;
  text-decoration: none;
  transition: all 0.3s;
}

.btn-primary {
  background: #00cc66; /* verde WhatsApp-like */
  color: white;
  border: none;
}

.btn-primary:hover {
  background: #00b359;
  transform: translateY(-2px);
}

.btn-outline {
  background: transparent;
  border: 2px solid white;
  color: white;
}

.btn-outline:hover {
  background: white;
  color: #003366; /* azul escuro */
}

/* Card de urgência */
.hero-card {
  width: 100%;
  max-width: 420px;
  margin: 0 auto;
}

.hero-card-inner {
  background: rgba(0, 20, 80, 0.85); /* azul mais escuro para destaque */
  border-radius: 20px;
  padding: 2rem 1.5rem;
  box-shadow: 0 15px 40px rgba(0,0,0,0.4);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.1);
  text-align: center;
}

.hero-card h2 {
  font-size: 1.6rem;
  margin: 0 0 1rem;
}

.hero-card p {
  font-size: 1.1rem;
  margin: 0 0 1.5rem;
  opacity: 0.9;
}

.quick {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

/* Checklist com ✓ */
.checklist {
  list-style: none;
  padding: 0;
  margin: 0;
  text-align: left;
  font-size: 1.1rem;
}

.checklist li {
  margin: 0.8rem 0;
  position: relative;
  padding-left: 2rem;
}

.checklist li:before {
  content: "✔";
  position: absolute;
  left: 0;
  color: #00cc66;
  font-weight: bold;
}

/* Mini-cards inferiores */
.hero-highlights {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-top: 1rem;
}

.mini-card {
  background: rgba(255,255,255,0.08);
  border-radius: 12px;
  padding: 1.2rem;
  text-align: center;
  border: 1px solid rgba(255,255,255,0.15);
}

.mini-card strong {
  display: block;
  font-size: 1.3rem;
  margin-bottom: 0.3rem;
}

.mini-card span {
  font-size: 0.95rem;
  opacity: 0.85;
}

/* Responsivo: desktop - lado a lado */
@media (min-width: 992px) {
  .container.hero-grid {
    flex-direction: row;
    align-items: flex-start;
    gap: 4rem;
    padding: 8rem 3rem 6rem;
  }

  .hero-copy {
    text-align: left;
    flex: 1;
    max-width: 55%;
  }

  .hero-card {
    flex: 0 0 38%;
    max-width: 400px;
    margin: 2rem 0 0 0; /* um pouco abaixo para alinhar visual */
  }

  .hero-highlights {
    flex-direction: row;
    justify-content: flex-start;
    gap: 1.5rem;
  }

  .mini-card {
    flex: 1;
    min-width: 180px;
  }

  h1 {
    font-size: 3.8rem;
  }

  .lead {
    font-size: 1.4rem;
  }
}

/* Ajustes extras para mobile pequeno */
@media (max-width: 480px) {
  h1 {
    font-size: 2.4rem;
  }

  .btn {
    padding: 0.9rem 1.8rem;
    font-size: 1rem;
  }
}