:root {
  --bg-1: #0b4aa0;
  /* azul do topo */
  --bg-2: #0a3f8a;
  /* azul da seção de planos */
  --card: #ffffff;
  --text: #0b1020;
  --muted: #6b7280;
  --accent: #ffd54a;
  /* amarelo botão */
  --accent-2: #e9f2ff;
  /* fundo leve */
  --radius: 18px;
  --shadow: 0 12px 30px rgba(0, 0, 0, .18);
  --shadow-soft: 0 10px 22px rgba(0, 0, 0, .12);
  --max: 1120px;
}

* {
  box-sizing: border-box
}

body {
  margin: 0;
  font-family: system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  color: var(--text);
  background: #f5f7fb;
  line-height: 1.35;
}

a {
  color: inherit;
  text-decoration: none
}

img {
  max-width: 100%;
  display: block
}

.container {
  width: min(var(--max), 92vw);
  margin: 0 auto;
}

/* HERO */
.hero {
  background: radial-gradient(1200px 600px at 20% 20%, rgba(255, 255, 255, .14), transparent 55%),
    linear-gradient(180deg, var(--bg-1), #0a4aa8);
  color: white;
  padding: 28px 0 24px;
  position: relative;
  overflow: hidden;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.2fr .8fr;
  gap: 22px;
  align-items: center;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
  opacity: .95;
  font-weight: 700;
  letter-spacing: .2px;
}

.brand .logo {
  width: 170px;
  height: 170px;
  border-radius: 12px;

  display: grid;
  place-items: center;

}

.brand small {
  opacity: .85;
  font-weight: 600
}

.headline {
  font-size: clamp(34px, 5vw, 58px);
  font-weight: 900;
  line-height: .95;
  margin: 0 0 10px;
}

.sub {
  margin: 0 0 18px;
  font-size: clamp(14px, 2.2vw, 18px);
  opacity: .92;
  max-width: 52ch;
}

.hero-illustration {
  width: min(520px, 100%);
  margin-left: auto;
  filter: drop-shadow(0 14px 30px rgba(0, 0, 0, .28));
  border-radius: 28px;
  overflow: hidden;

}

/* “caixa” de preço (editável) */
.offer-box {
  background: rgba(255, 255, 255, .12);
  border: 1px solid rgba(255, 255, 255, .18);
  border-radius: 22px;
  padding: 18px;
  box-shadow: 0 22px 40px rgba(0, 0, 0, .25);
  backdrop-filter: blur(8px);
}

.offer-top {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  align-items: start;
  margin-bottom: 10px;
}

.offer-badge {
  font-weight: 800;
  background: rgba(255, 255, 255, .18);
  padding: 8px 10px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, .18);
  font-size: 12px;
  letter-spacing: .3px;
}

.offer-speed {
  font-size: 44px;
  font-weight: 950;
  letter-spacing: -1px;
  line-height: 1;
  margin: 0;
}

.offer-speed span {
  font-size: 14px;
  font-weight: 800;
  opacity: .9;
  vertical-align: middle;
  margin-left: 6px;
  padding: 2px 8px;
  border-radius: 999px;
  background: rgba(0, 0, 0, .15);
  border: 1px solid rgba(255, 255, 255, .14);
}

.offer-app {
  display: flex;
  gap: 10px;
  align-items: center;
  opacity: .92;
  margin: 6px 0 10px;
  font-weight: 700;
}

.offer-app img {
  width: 80px;
  height: 80px;
  border-radius: 8px;
  background: rgba(255, 255, 255, .18);
  border: 1px solid rgba(255, 255, 255, .18);
}

.offer-price {
  margin-top: 10px;
  background: rgba(0, 0, 0, .15);
  border: 1px solid rgba(255, 255, 255, .18);
  border-radius: 18px;
  padding: 14px;
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 10px;
}

.offer-price .currency {
  font-weight: 900;
  opacity: .95;
  font-size: 18px;
}

.offer-price .amount {
  font-weight: 950;
  font-size: 44px;
  letter-spacing: -1px;
  line-height: 1;
}

.offer-price .cents {
  font-weight: 900;
  font-size: 18px;
  opacity: .95;
  margin-left: 4px;
}

.offer-note {
  margin: 10px 2px 0;
  font-size: 12px;
  opacity: .82;
}


.form {
  background: rgba(255, 255, 255, .10);
  border: 1px solid rgba(255, 255, 255, .18);
  border-radius: 18px;
  padding: 14px;
  display: grid;
  grid-template-columns: 1.2fr .7fr 1fr auto;
  gap: 10px;
  box-shadow: 0 16px 28px rgba(0, 0, 0, .18);
}

.field label {
  display: block;
  font-size: 12px;
  font-weight: 800;
  opacity: .9;
  margin: 0 0 6px 2px;
}

.field input {
  width: 100%;
  height: 42px;
  padding: 0 12px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, .22);
  background: rgba(255, 255, 255, .92);
  outline: none;
  font-weight: 650;
  color: #0b1020;
}

.field input::placeholder {
  color: #9aa3b2;
  font-weight: 600
}

.btn {
  height: 42px;
  padding: 0 16px;
  border-radius: 12px;
  border: 0;
  cursor: pointer;
  background: var(--accent);
  font-weight: 950;
  color: #0b1020;
  box-shadow: 0 10px 18px rgba(0, 0, 0, .18);
  white-space: nowrap;
}

.form .btn {
  grid-column: 1 / -1;
}

.btn:active {
  transform: translateY(1px)
}

/* SEÇÃO DE BENEFÍCIOS */
.section {
  padding: 34px 0;
  background: #ffffff;
}

.section h2 {
  margin: 0 0 6px;
  font-size: clamp(22px, 3vw, 30px);
  font-weight: 950;
  text-align: center;
}

.section p.lead {
  margin: 0 auto 18px;
  text-align: center;
  color: var(--muted);
  max-width: 72ch;
}

.features {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  align-items: stretch;
}

.feature {
  background: var(--accent-2);
  border: 1px solid #dbe7ff;
  border-radius: var(--radius);
  padding: 16px;
  box-shadow: var(--shadow-soft);
}

.feature .icon {
  width: 42px;
  height: 42px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  background: white;
  border: 1px solid #dbe7ff;
  margin-bottom: 10px;
  font-size: 20px;
}

.feature h3 {
  margin: 0 0 6px;
  font-size: 15px;
  font-weight: 950;
}

.feature p {
  margin: 0;
  color: #334155;
  font-size: 13px;
}

/* PLANOS */
.plans {
  background: linear-gradient(180deg, var(--bg-2), #083776);
  color: white;
  padding: 36px 0 44px;
}

.plans-head {
  text-align: center;
  margin-bottom: 18px;
}

.plans-head h2 {
  margin: 0 0 8px;
  font-size: clamp(22px, 3vw, 32px);
  font-weight: 950;
}

.plans-head p {
  margin: 0 auto;
  max-width: 78ch;
  opacity: .9;
}

/* carrossel “sem JS” com scroll-snap */
.plan-row {
  display: flex;
  gap: 14px;
  overflow: auto;
  padding: 10px 4px 18px;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
}

.plan-row::-webkit-scrollbar {
  height: 10px
}

.plan-row::-webkit-scrollbar-thumb {
  background: rgba(255, 255, 255, .22);
  border-radius: 999px
}

.plan-card {
  flex: 0 0 280px;
  scroll-snap-align: start;
  background: white;
  color: var(--text);
  border-radius: 20px;
  padding: 16px;
  box-shadow: var(--shadow);
  border: 1px solid rgba(0, 0, 0, .06);
}

.plan-top {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  align-items: start;
  margin-bottom: 10px;
}

.plan-name {
  font-weight: 950;
  font-size: 16px;
  line-height: 1.1;
}

.tag {
  font-size: 11px;
  font-weight: 900;
  padding: 6px 10px;
  border-radius: 999px;
  background: #eaf2ff;
  border: 1px solid #d6e5ff;
  color: #0b4aa0;
  white-space: nowrap;
}

.plan-price {
  display: flex;
  align-items: baseline;
  gap: 6px;
  margin: 8px 0 10px;
}

.plan-price .rs {
  font-weight: 900;
  color: #0b4aa0;
}

.plan-price .value {
  font-weight: 950;
  font-size: 40px;
  letter-spacing: -1px;
  color: #0b4aa0;
  line-height: 1;
}

.plan-price .per {
  color: #64748b;
  font-weight: 800;
  font-size: 12px;
}

.plan-list {
  list-style: none;
  padding: 0;
  margin: 10px 0 14px;
  display: grid;
  gap: 8px;
  color: #334155;
  font-weight: 650;
  font-size: 13px;
}

.plan-list li {
  display: flex;
  gap: 8px;
  align-items: start;
}

.dot {
  width: 18px;
  height: 18px;
  border-radius: 8px;
  display: grid;
  place-items: center;
  background: #eaf2ff;
  border: 1px solid #d6e5ff;
  color: #0b4aa0;
  flex: 0 0 18px;
  margin-top: 1px;
  font-size: 12px;
}

.cta {
  width: 100%;
  height: 44px;
  border-radius: 14px;
  border: 0;
  background: var(--accent);
  font-weight: 950;
  cursor: pointer;
}




/* RESPONSIVO */
@media (max-width: 980px) {
  .hero-grid {
    grid-template-columns: 1fr;
  }

  .form-wrap {
    grid-template-columns: 1fr;
  }

  .form {
    grid-template-columns: 1fr 1fr;
  }

  .btn {
    grid-column: 1 / -1;
  }

  .features {
    grid-template-columns: repeat(2, 1fr);
  }

  .hero-illustration {
    margin: 0 auto;
  }
}

@media (max-width: 560px) {
  .form {
    grid-template-columns: 1fr;
  }

  .features {
    grid-template-columns: 1fr;
  }

  .offer-speed {
    font-size: 38px
  }

  .offer-price .amount {
    font-size: 40px
  }
}


.hero-illustration {
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-mascote {
  max-width: 100%;
  height: auto;
}

.hero-mascote {
  width: 100%;
  max-width: 180px;
  animation: floatSide 6s ease-in-out infinite;
  transform-origin: center;
}


/* animação */
@keyframes floatSide {
  0% {
    transform: translateX(0px) rotate(0deg);
  }

  25% {
    transform: translateX(12px) rotate(2deg);
  }

  50% {
    transform: translateX(0px) rotate(0deg);
  }

  75% {
    transform: translateX(-12px) rotate(-2deg);
  }

  100% {
    transform: translateX(0px) rotate(0deg);
  }
}



/* FAQ */
.faq {
  background: #ffffff;
  padding: 60px 0;
}

.faq-head {
  text-align: center;
  margin-bottom: 30px;
}

.faq-head h2 {
  font-size: 32px;
  font-weight: 900;
  margin-bottom: 10px;
}

.faq-head p {
  color: #64748b;
}

.faq-list {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  background: #f1f5ff;
  border: 1px solid #dbe7ff;
  border-radius: 14px;
  margin-bottom: 12px;
  overflow: hidden;
  transition: all .3s ease;
}

.faq-item summary {
  padding: 18px 22px;
  font-weight: 800;
  cursor: pointer;
  list-style: none;
  position: relative;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

/* ícone + / - */
.faq-item summary::after {
  content: "+";
  position: absolute;
  right: 22px;
  font-size: 20px;
  transition: transform .3s ease;
}

.faq-item[open] summary::after {
  content: "−";
}

.faq-content {
  padding: 0 22px 20px 22px;
  color: #334155;
  font-size: 14px;
  line-height: 1.5;
}

.faq-content ul {
  margin: 10px 0 0 18px;
}



/* FOOTER DARK */

.footer-dark {
  background: #0d0d0d;
  color: #ffffff;
  padding: 60px 0 25px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}

.footer-dark h3 {
  font-size: 22px;
  font-weight: 900;
  margin-bottom: 15px;
}

.footer-dark h4 {
  font-size: 16px;
  font-weight: 800;
  margin-bottom: 15px;
  color: #ffd54a;
}

.footer-dark p {
  font-size: 14px;
  line-height: 1.6;
  color: #cbd5e1;
}

.footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: 10px;
}

.footer-links a {
  color: #ffffff;
  text-decoration: none;
  font-size: 14px;
  transition: all .3s ease;
}

.footer-links a:hover {
  color: #ffd54a;
  padding-left: 5px;
}

.footer-bottom {
  border-top: 1px solid #222;
  padding-top: 20px;
  text-align: center;
  font-size: 13px;
  color: #888;
}

/* RESPONSIVO */
@media (max-width: 900px) {
  .footer-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }
}


.logo-footer {
  max-width: 200px;
}

.logo-footer {
  display: inline-flex;
}



.hero-benefits {
  list-style: none;
  padding: 0;
  margin: 20px 0 30px;
  display: grid;
  gap: 10px;
}

.hero-benefits li {
  position: relative;
  padding-left: 28px;
  font-weight: 600;
  font-size: 16px;
}

.hero-benefits li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: #ffd54a;
  font-weight: 900;
  font-size: 16px;
}




.modal {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  justify-content: center;
  align-items: center;
  z-index: 9999;
}

.modal-content {
  background: #fff;
  padding: 30px;
  border-radius: 10px;
  width: 400px;
  max-width: 90%;
  position: relative;
}

.close {
  position: absolute;
  right: 15px;
  top: 10px;
  font-size: 22px;
  cursor: pointer;
}

.plan-actions {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 18px;
}

/* Base dos botões */
.cta {
  width: 100%;
  padding: 13px 18px;
  border-radius: 12px;
  font-weight: 600;
  font-size: 14px;
  cursor: pointer;
  transition: all .2s ease;
}

/* WhatsApp */
.cta.whatsapp {
  background: #25D366;
  color: #fff;
  border: none;
}

.cta.whatsapp:hover {
  background: #1ebe5d;
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.18);
}

/* Formulário */
.cta.form {
  background: #1e4fa1;
  color: #fff;
  border: none;
  grid-template-columns: auto;
}

.cta.form:hover {
  background: #163b79;
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.18);
}

.form-message {
  padding: 12px 16px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 500;
  margin-top: 10px;
}

.form-message.success {
  background: #e6f4ea;
  color: #1b5e20;
  border: 1px solid #c8e6c9;
}

.form-message.error {
  background: #fdecea;
  color: #b71c1c;
  border: 1px solid #f5c6cb;
}

#modalFormContainer form#leadForm {
  grid-template-columns: auto;
}