:root{
  /* Cores extraídas/compatíveis com a logo */
  --navy: #032F54;         /* azul marinho principal */
  --navy-2: #075384;       /* azul de apoio */
  --deep: #010F26;         /* bem escuro */
  --teal: #3FADC4;         /* azul claro/teal */
  --orange: #EB7610;       /* laranja */
  --bg: #F6F9FC;           /* fundo claro */
  --card: #ffffff;
  --text: #0f172a;
  --muted: #475569;
  --border: rgba(2, 47, 84, .12);
  --shadow: 0 16px 40px rgba(1, 15, 38, .12);
  --radius: 18px;
}

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

img{ max-width: 100%; display: block; }
a{ color: inherit; text-decoration: none; }
.container{
  width: min(1120px, calc(100% - 40px));
  margin: 0 auto;
}

.topbar{
  background: linear-gradient(90deg, rgba(3,47,84,.10), rgba(63,173,196,.10));
  border-bottom: 1px solid var(--border);
}
.topbar__inner{
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 10px 0;
  font-size: 13px;
  color: var(--muted);
}
.topbar__msg{
  display: flex;
  align-items: center;
  gap: 10px;
}
.dot{
  width: 10px; height: 10px; border-radius: 999px;
  background: radial-gradient(circle at 30% 30%, var(--orange), var(--navy));
  box-shadow: 0 0 0 4px rgba(235,118,16,.10);
}
.topbar__link{
  font-weight: 600;
  color: var(--navy);
}
.topbar__link:hover{ text-decoration: underline; }

.header{
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255,255,255,.78);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(2, 47, 84, .10);
}
.header__inner{
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 12px 0;
}
.brand{ display: flex; align-items: center; gap: 12px; }
.brand__logo{
  height: 98px;
  width: auto;
}

@media (max-width: 768px) {
  .brand__logo {
    height: 64px;
  }
}

.nav__list{
  list-style: none;
  display: flex;
  align-items: center;
  gap: 18px;
  margin: 0;
  padding: 0;
}
.nav__list a{
  font-size: 14px;
  color: var(--muted);
  font-weight: 500;
}
.nav__list a:hover{ color: var(--navy); }

.nav__toggle{
  display: none;
  width: 46px;
  height: 42px;
  border-radius: 14px;
  border: 1px solid var(--border);
  background: #fff;
  box-shadow: 0 10px 20px rgba(1,15,38,.06);
  align-items: center;
  justify-content: center;
  gap: 5px;
  padding: 0;
  cursor: pointer;
}
.nav__toggle span{
  display: block;
  width: 20px;
  height: 2px;
  background: var(--navy);
  border-radius: 999px;
}

.btn{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border-radius: 999px;
  padding: 12px 18px;
  font-weight: 700;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform .12s ease, box-shadow .12s ease, background .12s ease;
  user-select: none;
}
.btn:active{ transform: translateY(1px); }

.btn--primary{
  background: linear-gradient(135deg, var(--navy), var(--navy-2));
  color: #fff;
  box-shadow: 0 14px 30px rgba(3,47,84,.22);
}
.btn--primary:hover{
  box-shadow: 0 18px 40px rgba(3,47,84,.30);
}
.btn--ghost{
  background: rgba(3,47,84,.06);
  border-color: rgba(3,47,84,.16);
  color: var(--navy);
}
.btn--ghost:hover{
  background: rgba(63,173,196,.14);
  border-color: rgba(63,173,196,.35);
}
.btn--sm{ padding: 10px 14px; font-size: 13px; }
.btn--full{ width: 100%; }

.hero{
  position: relative;
  background:
    radial-gradient(1000px 500px at 20% -10%, rgba(63,173,196,.30), transparent 60%),
    radial-gradient(900px 520px at 90% 10%, rgba(235,118,16,.18), transparent 55%),
    linear-gradient(180deg, #ffffff, var(--bg));
  overflow: hidden;
}
.hero__grid{
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 26px;
  padding: 42px 0 56px;
  align-items: center;
}
.badge{
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(255,255,255,.75);
  border: 1px solid rgba(3,47,84,.14);
  box-shadow: 0 14px 30px rgba(1,15,38,.06);
  font-weight: 600;
  color: var(--navy);
}
.badge__icon{
  width: 26px; height: 26px;
  display: grid; place-items: center;
  border-radius: 999px;
  background: linear-gradient(135deg, rgba(235,118,16,.22), rgba(63,173,196,.22));
}

.hero h1{
  margin: 16px 0 10px;
  font-size: clamp(28px, 3.2vw, 46px);
  line-height: 1.12;
  color: var(--deep);
}
.hero p{
  margin: 0;
  font-size: 16px;
  color: var(--muted);
  max-width: 56ch;
}
.hero__cta{
  display: flex;
  gap: 12px;
  margin-top: 18px;
  flex-wrap: wrap;
}
.hero__stats{
  margin-top: 18px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}
.stat{
  background: rgba(255,255,255,.70);
  border: 1px solid rgba(3,47,84,.12);
  border-radius: 16px;
  padding: 12px 14px;
  box-shadow: 0 14px 30px rgba(1,15,38,.06);
}
.stat__num{
  font-weight: 800;
  color: var(--navy);
  font-size: 14px;
}
.stat__txt{
  color: var(--muted);
  font-size: 12px;
}

.hero__card{
  background: rgba(255,255,255,.82);
  border: 1px solid rgba(3,47,84,.12);
  border-radius: 22px;
  box-shadow: var(--shadow);
  overflow: hidden;
}
.hero__cardTop{
  padding: 16px 16px 10px;
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}
.chip{
  font-size: 12px;
  font-weight: 700;
  padding: 8px 12px;
  border-radius: 999px;
  color: var(--navy);
  background: rgba(63,173,196,.16);
  border: 1px solid rgba(63,173,196,.30);
}
.chip--alt{
  color: #fff;
  background: rgba(235,118,16,.95);
  border-color: rgba(235,118,16,.25);
}

.hero__mock{
  position: relative;
  padding: 18px 16px 12px;
  min-height: 240px;
}
.mock__shape{
  position: absolute;
  border-radius: 999px;
  filter: blur(0.2px);
  opacity: .95;
}
.mock__shape--a{
  width: 240px; height: 240px;
  left: -90px; top: -70px;
  background: radial-gradient(circle at 30% 30%, rgba(63,173,196,.55), rgba(3,47,84,.10));
}
.mock__shape--b{
  width: 220px; height: 220px;
  right: -90px; top: 10px;
  background: radial-gradient(circle at 30% 30%, rgba(235,118,16,.45), rgba(3,47,84,.08));
}
.mock__shape--c{
  width: 260px; height: 260px;
  right: -120px; bottom: -140px;
  background: radial-gradient(circle at 30% 30%, rgba(3,47,84,.35), rgba(63,173,196,.10));
}
.mock__panel{
  position: relative;
  background: rgba(255,255,255,.82);
  border: 1px solid rgba(3,47,84,.14);
  border-radius: 18px;
  padding: 16px;
  box-shadow: 0 16px 40px rgba(1,15,38,.10);
}
.mock__title{
  font-weight: 800;
  color: var(--deep);
  margin-bottom: 10px;
}
.mock__lines span{
  display: block;
  height: 10px;
  border-radius: 999px;
  background: rgba(3,47,84,.10);
  margin-bottom: 10px;
}
.mock__lines span:nth-child(2){ width: 82%; }
.mock__lines span:nth-child(3){ width: 72%; margin-bottom: 14px; }

.mock__pills{
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.mock__pills span{
  font-size: 12px;
  padding: 7px 10px;
  border-radius: 999px;
  background: rgba(3,47,84,.06);
  border: 1px solid rgba(3,47,84,.12);
  color: var(--navy);
  font-weight: 700;
}

.hero__cardBottom{
  padding: 14px 16px 18px;
  border-top: 1px solid rgba(3,47,84,.10);
}
.hero__cardBottom p{
  margin: 0 0 12px;
  color: var(--muted);
  font-size: 14px;
}

.hero__wave{
  height: 30px;
  background:
    radial-gradient(30px 18px at 20px 8px, rgba(3,47,84,.14), transparent 60%),
    radial-gradient(30px 18px at 50px 18px, rgba(235,118,16,.14), transparent 60%),
    radial-gradient(30px 18px at 90px 10px, rgba(63,173,196,.14), transparent 60%);
  opacity: .9;
}

.section{
  padding: 62px 0;
  background: #fff;
}
.section--alt{
  background: var(--bg);
  border-top: 1px solid rgba(3,47,84,.08);
  border-bottom: 1px solid rgba(3,47,84,.08);
}
.section__head{
  max-width: 900px;
  margin-bottom: 26px;
}
.section__head h2{
  margin: 0 0 10px;
  font-size: clamp(22px, 2.2vw, 32px);
  color: var(--deep);
}
.section__head p{
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
}

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

.card{
  background: var(--card);
  border: 1px solid rgba(3,47,84,.12);
  border-radius: var(--radius);
  padding: 18px;
  box-shadow: 0 16px 40px rgba(1,15,38,.06);
}
.card--soft{
  background: rgba(255,255,255,.72);
  border-color: rgba(3,47,84,.12);
}
.card--gradient{
  background:
    radial-gradient(900px 400px at 10% 20%, rgba(63,173,196,.25), transparent 55%),
    radial-gradient(700px 360px at 90% 0%, rgba(235,118,16,.18), transparent 55%),
    linear-gradient(180deg, rgba(255,255,255,.92), rgba(255,255,255,.85));
}
.card h3{ margin: 0 0 8px; color: var(--deep); }
.card p{ margin: 0; color: var(--muted); line-height: 1.7; }

.list{ margin-top: 14px; display: grid; gap: 10px; }
.list__item{ display: flex; gap: 10px; align-items: flex-start; color: var(--muted); }
.icon{
  width: 26px; height: 26px; border-radius: 999px;
  display: grid; place-items: center;
  font-weight: 900;
  flex: 0 0 auto;
}
.icon--primary{ background: rgba(63,173,196,.18); color: var(--navy); }
.icon--accent{ background: rgba(235,118,16,.18); color: var(--orange); }

.pillRow{ margin-top: 14px; display: flex; gap: 10px; flex-wrap: wrap; }
.pill{
  font-size: 12px;
  font-weight: 800;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(3,47,84,.06);
  border: 1px solid rgba(3,47,84,.12);
  color: var(--navy);
}

.feature{
  background: rgba(255,255,255,.82);
  border: 1px solid rgba(3,47,84,.12);
  border-radius: var(--radius);
  padding: 18px;
  box-shadow: 0 16px 40px rgba(1,15,38,.06);
}
.feature__icon{
  width: 44px; height: 44px;
  border-radius: 14px;
  display: grid; place-items: center;
  background: linear-gradient(135deg, rgba(63,173,196,.22), rgba(235,118,16,.14));
  border: 1px solid rgba(3,47,84,.12);
  margin-bottom: 10px;
  font-size: 20px;
}
.feature h3{ margin: 0 0 6px; color: var(--deep); font-size: 16px; }
.feature p{ margin: 0; color: var(--muted); line-height: 1.7; font-size: 14px; }

.productCard{
  background: rgba(255,255,255,.86);
  border: 1px solid rgba(3,47,84,.12);
  border-radius: var(--radius);
  padding: 18px;
  box-shadow: 0 16px 40px rgba(1,15,38,.06);
  transition: transform .14s ease, box-shadow .14s ease;
}
.productCard:hover{
  transform: translateY(-2px);
  box-shadow: 0 22px 50px rgba(1,15,38,.10);
}
.productCard__top{
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 10px;
}
.productCard__icon{
  width: 44px; height: 44px;
  border-radius: 14px;
  display: grid; place-items: center;
  background: rgba(63,173,196,.16);
  border: 1px solid rgba(63,173,196,.30);
  font-size: 20px;
}
.productCard h3{ margin: 0 0 6px; color: var(--deep); }
.productCard p{ margin: 0; color: var(--muted); line-height: 1.7; font-size: 14px; }

.productCard--more{
  display: grid;
  place-items: start;
  gap: 10px;
  background:
    radial-gradient(900px 400px at 10% 20%, rgba(63,173,196,.22), transparent 55%),
    radial-gradient(700px 360px at 90% 0%, rgba(235,118,16,.18), transparent 55%),
    linear-gradient(180deg, rgba(255,255,255,.92), rgba(255,255,255,.85));
}
.productCard--more .productCard__icon{
  background: rgba(235,118,16,.14);
  border-color: rgba(235,118,16,.30);
}

.tag{
  font-size: 12px;
  font-weight: 800;
  padding: 8px 10px;
  border-radius: 999px;
  color: var(--navy);
  background: rgba(3,47,84,.06);
  border: 1px solid rgba(3,47,84,.12);
}
.tag--alt{
  color: #fff;
  background: rgba(3,47,84,.95);
  border-color: rgba(3,47,84,.25);
}
.tag--eco{
  color: #0b3b2c;
  background: rgba(34,197,94,.14);
  border-color: rgba(34,197,94,.25);
}

.steps{
  display: grid;
  gap: 12px;
}
.step{
  display: flex;
  gap: 14px;
  padding: 16px 16px;
  border-radius: var(--radius);
  border: 1px solid rgba(3,47,84,.12);
  background: rgba(255,255,255,.82);
  box-shadow: 0 16px 40px rgba(1,15,38,.06);
}
.step__num{
  width: 42px; height: 42px;
  display: grid; place-items: center;
  border-radius: 14px;
  font-weight: 900;
  color: #fff;
  background: linear-gradient(135deg, var(--orange), var(--navy));
  flex: 0 0 auto;
}
.step__content h3{ margin: 0 0 6px; color: var(--deep); font-size: 16px; }
.step__content p{ margin: 0; color: var(--muted); line-height: 1.7; font-size: 14px; }

.audience{
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}
.audience__item{
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 14px;
  border-radius: 16px;
  background: rgba(255,255,255,.82);
  border: 1px solid rgba(3,47,84,.12);
  box-shadow: 0 16px 40px rgba(1,15,38,.06);
  color: var(--navy);
  font-weight: 800;
}
.audience__item span{ font-size: 18px; }

.cta{
  background:
    radial-gradient(900px 420px at 10% 30%, rgba(63,173,196,.25), transparent 55%),
    radial-gradient(700px 360px at 90% 0%, rgba(235,118,16,.20), transparent 55%),
    linear-gradient(180deg, rgba(3,47,84,.95), rgba(1,15,38,.96));
  color: #fff;
  padding: 44px 0;
  border-top: 1px solid rgba(255,255,255,.08);
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.cta__inner{
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  flex-wrap: wrap;
}
.cta h2{ margin: 0 0 8px; font-size: clamp(20px, 2.2vw, 30px); }
.cta p{ margin: 0; opacity: .9; }
.cta__actions{ display: flex; gap: 12px; flex-wrap: wrap; }

.form label{
  display: block;
  font-size: 12px;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 6px;
}
.form input, .form textarea{
  width: 100%;
  border-radius: 14px;
  border: 1px solid rgba(3,47,84,.18);
  background: #fff;
  padding: 12px 12px;
  font: inherit;
  outline: none;
  transition: box-shadow .12s ease, border-color .12s ease;
}
.form input:focus, .form textarea:focus{
  border-color: rgba(63,173,196,.65);
  box-shadow: 0 0 0 4px rgba(63,173,196,.18);
}
.form__row{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.form__field{ margin-bottom: 12px; }
.form__hint{
  margin: 10px 0 0;
  font-size: 12px;
  color: var(--muted);
}

.contactQuick{
  display: grid;
  gap: 10px;
  margin: 12px 0 10px;
}
.contactQuick__item{
  display: flex;
  gap: 12px;
  align-items: center;
  padding: 12px 12px;
  border-radius: 16px;
  border: 1px solid rgba(3,47,84,.12);
  background: rgba(255,255,255,.80);
}
.contactQuick__icon{
  width: 42px; height: 42px;
  display: grid; place-items: center;
  border-radius: 14px;
  background: rgba(235,118,16,.14);
  border: 1px solid rgba(235,118,16,.28);
  font-size: 20px;
}
.note{
  margin-top: 14px;
  border-radius: 16px;
  padding: 12px 12px;
  border: 1px dashed rgba(63,173,196,.55);
  background: rgba(63,173,196,.10);
  color: rgba(1,15,38,.80);
  font-size: 13px;
}

.footer{
  background: #fff;
  border-top: 1px solid rgba(3,47,84,.10);
}
.footer__inner{
  padding: 26px 0;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}
.footer__logo{ height: 44px; width: auto; margin-bottom: 10px; }
.footer__brand p{ margin: 0; color: var(--muted); line-height: 1.7; }
.footer__links{
  display: grid;
  gap: 10px;
  color: var(--navy);
  font-weight: 700;
}
.footer__links a:hover{ text-decoration: underline; }

.footer__bottom{
  border-top: 1px solid rgba(3,47,84,.10);
  background: rgba(3,47,84,.03);
}
.footer__bottomInner{
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 14px;
  padding: 12px 0;
  color: var(--muted);
  font-size: 13px;
  flex-wrap: wrap;
}
.backTop{
  font-weight: 800;
  color: var(--navy);
}

/* Responsivo */
@media (max-width: 980px){
  .hero__grid{ grid-template-columns: 1fr; }
}
@media (max-width: 860px){
  .nav__toggle{ display: inline-flex; }

  .nav__list{
    position: absolute;
    right: 20px;
    top: 110px;
    width: min(340px, calc(100% - 40px));
    background: rgba(255,255,255,.92);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(3,47,84,.12);
    border-radius: 18px;
    padding: 12px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 10px;
    box-shadow: var(--shadow);
  }
  .nav__list.is-open{ display: flex; }
}

@media (max-width: 720px){
  .grid--2{ grid-template-columns: 1fr; }
  .grid--3{ grid-template-columns: 1fr; }
  .audience{ grid-template-columns: 1fr; }
  .form__row{ grid-template-columns: 1fr; }
  .hero__stats{ grid-template-columns: 1fr; }
}

/* Força texto branco no botão de orçamento do menu */
.nav__list .btn--primary {
  color: #ffffff !important;
  font-weight: 700;
  letter-spacing: 0.2px;
}

/* Garante contraste no hover */
.nav__list .btn--primary:hover {
  color: #ffffff !important;
}

/* BOTÃO MENU MOBILE (hambúrguer) */
/* BOTÃO MENU MOBILE (hambúrguer) - estilo */
.nav__toggle {
  display: none; /* <-- IMPORTANTÍSSIMO: no desktop não aparece */
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  border-radius: 14px;
  border: 1px solid rgba(3,47,84,.18);
  background: #ffffff;
  box-shadow: 0 8px 20px rgba(1,15,38,.10);
  cursor: pointer;
}

/* Linhas do menu */
.nav__toggle span {
  width: 22px;
  height: 3px;
  background-color: #032F54;
  border-radius: 999px;
  display: block;
}

/* ===== FIX FINAL: hambúrguer só em telas menores ===== */
.nav__toggle { 
  display: none !important; 
}

/* Mostra hambúrguer e transforma menu em dropdown no mobile/tablet */
@media (max-width: 980px){
  .nav__toggle{
    display: inline-flex !important;
  }

  .nav__list{
    position: absolute;
    right: 20px;
    top: 110px;
    width: min(340px, calc(100% - 40px));
    background: rgba(255,255,255,.92);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(3,47,84,.12);
    border-radius: 18px;
    padding: 12px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 10px;
    box-shadow: var(--shadow);
  }

  .nav__list.is-open{
    display: flex;
  }

  .nav__list a{
    padding: 10px 12px;
    border-radius: 14px;
  }

  .nav__list a:hover{
    background: rgba(3,47,84,.05);
  }
}

