﻿:root {
  --bg: #f8fafc;
  --text: #0f172b;
  --muted: #45556c;
  --muted-dark: #314158;
  --navy: #0F172B;
  --deep-navy: #020618;
  --blue: #004571;
  --green: #58bb06;
  --orange: #f54900;
  --orange-strong: #ff6900;
}

html {
  scroll-behavior: smooth;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
}

* {
  box-sizing: border-box;
}

body {
  margin: 0 auto;
  max-width: 425px;
  color: var(--text);
  font-family: "Inter", sans-serif;
}

.limitadas {
  color: #F54900;
  margin-top: -20px;
  font-size: 14px;
  line-height: 20px;
  font-weight: 600;
  text-align: center;
}

body.modal-open {
  overflow: hidden;
}

.page {
  width: min(100%, 100vw);
  margin: 0 auto;
  background: var(--bg);
}

.container {
  padding: 0 16px;
}

.section-light {
  padding: 44px 0;
}

h1,
h2,
h3,
h4,
p {
  margin: 0;
}

.topbar {
  min-height: 65px;
  background: var(--navy);
  border-bottom: 1px solid #1d293d;
  color: #fdc700;
  text-align: center;
  font-size: 14px;
  line-height: 20px;
  font-weight: 700;
  padding: 15px 26px;
}

.topbar span {
  color: #cad5e2;
  font-weight: 400;
}

.hero {
  position: relative;
  min-height: 744px;
  color: #fff;
  overflow: hidden;
}

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

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(15, 23, 43, 0.82), rgba(15, 23, 43, 0.92));
}

.hero-content {
  position: relative;
  z-index: 1;
  padding-top: 20px;
  text-align: center;
}

.hero-logo {
  width: 158px;
  margin: 0 auto 8px;
}

.hero-logo img {
  display: block;
  width: 100%;
  height: auto;
}

.eyebrow {
  font-size: 12px;
  font-weight: 500;
  background: #F54900;
  border-radius: 33554400px;
  margin: 30px auto;
  padding: 0 1px;
  color: white;
  font-family: Inter;
  line-height: 25px;
  word-wrap: break-word;
  width: 330px;
}

.hero h1 {
  max-width: 339px;
  margin: 0 auto;
  font-size: 24px;
  line-height: 28px;
  font-weight: 800;
  line-height: 29px;
}

.hero h1 span {
  font-weight: 100;
}

mark {
  background: #F54900;
  color: #fff;
  padding: 0;
  padding: 2px 10px;
  border-radius: 10px;
}

.calculator mark {
  background: white;
  padding: 11.25px;
  border-radius: 10px;
  color: #00A63E;
  font-size: 27px;
  font-weight: 700;
  line-height: 31.50px;
  word-wrap: break-word;
  display: block;
}

.calculator .ganhos {
  text-align: center;
  width: 90%;
  margin: 20px auto 0px;
}

hr {
  width: 60%;
  border: 2px solid #F54900;
  border-radius: 300px;
  margin: 20px auto;
}

.subtitle {
  margin-top: 14px;
  color: #e5e7eb;
  font-size: 18px;
  line-height: 26px;
}

.btn {
  display: block;
  width: 90%;
  padding: 10px 0;
  border-radius: 999px;
  border: 0;
  text-decoration: none;
  text-align: center;
  font-size: 20px;
  line-height: 21px;
  font-weight: 700;
}

.btn:hover {
  transform: scale(1.05);
}

.btn-primary {
  margin: 40px auto;
  color: #fff;
  background: var(--green);
  box-shadow: 0 4px 4px rgba(0, 0, 0, 0.25), 0 10px 15px -3px rgba(126, 42, 12, 0.2),
    0 4px 6px -4px rgba(126, 42, 12, 0.2);
  animation: btn-primary-pulse 1.9s ease-in-out infinite;
}

.ticket-grid .btn-secundary {
  margin: 10px auto 0;
  color: #fff;
  background: white;
  color: var(--green);
  box-shadow: 0 4px 4px rgba(0, 0, 0, 0.25), 0 10px 15px -3px rgba(126, 42, 12, 0.2),
    0 4px 6px -4px rgba(126, 42, 12, 0.2);
  animation: btn-primary-pulse 1.9s ease-in-out infinite;
}

.ticket-grid .btn-primary {
  margin: 10px auto 0;
}

.btn-primary:hover {
  animation-play-state: paused;
  transform: scale(1.05);
}

@keyframes btn-primary-pulse {

  0%,
  100% {
    transform: scale(1);
    box-shadow: 0 4px 4px rgba(0, 0, 0, 0.25), 0 10px 15px -3px rgba(126, 42, 12, 0.2),
      0 4px 6px -4px rgba(126, 42, 12, 0.2);
  }

  50% {
    transform: scale(1.07);
    box-shadow: 0 4px 4px rgba(0, 0, 0, 0.25), 0 14px 20px -3px rgba(126, 42, 12, 0.24),
      0 6px 8px -4px rgba(126, 42, 12, 0.24);
  }
}

.hero-meta {
  margin: 28px auto 0;
  padding: 0;
  list-style: none;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px 14px;
  max-width: 330px;
}

.hero-meta li {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  color: #d1d5dc;
  font-size: 14px;
  line-height: 20px;
  font-weight: 600;
}

.hero-meta li img {
  width: 18px;
  height: 18px;
  flex: 0 0 18px;
}

.hero-meta li:last-child {
  grid-column: 1 / -1;
}

.sponsor-label {
  margin-top: 24px;
  color: #99A1AF;
  font-size: 14px;
  line-height: 20px;
}

.hero-sponsors {
  margin: 20px 0 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 30px;
}

.hero-sponsors img {
  width: auto;
  max-height: 60px;
}

.hero-sponsors .neoclor {
  max-height: 31px;
}

.hero-sponsors .veneza {
  max-height: 60px;
}

.problem {
  padding-top: 30px;
  padding-bottom: 34px;
}

.problem-title {
  text-align: center;
  color: var(--text);
  font-size: 24px;
  line-height: 27px;
  font-weight: 700;
}

.problem-title span {
  color: var(--orange);
}

.lead {
  margin-top: 18px;
  text-align: center;
  color: var(--muted-dark);
  font-size: 18px;
  line-height: 26px;
  font-weight: 400;
}

.lead strong {
  font-weight: 700;
}

.media-card {
  margin: 22px 0;
  border-radius: 16px;
  overflow: hidden;
}

.media-card img {
  display: block;
  width: 100%;
  height: auto;
}

.problem h3 {
  color: var(--text);
  font-size: 24px;
  line-height: 32px;
  font-weight: 700;
}

.problem .muted {
  margin-top: 12px;
  color: var(--muted);
  font-size: 16px;
  line-height: 24px;
}

.list {
  margin: 16px 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 16px;
}

.list li {
  position: relative;
  padding-left: 36px;
  font-size: 16px;
  line-height: 24px;
}

.list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 2px;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 13px;
  font-weight: 800;
}

.dark-block .list-check {
  font-weight: 700;
  color: white;
}

.dark-block .list-check span {
  font-weight: 200;
}

.list-check li::before {
  background: url('assets/check.svg') no-repeat center center / contain;
  height: 24px;
  width: 24px;
}

.list-danger li::before {
  background: url('assets/cancel.svg') no-repeat center center / contain;
  height: 24px;
  width: 24px;
}

.dark-block {
  margin-top: 28px;
  background: var(--blue);
  color: #fff;
  padding: 18px 16px 24px;
}

.dark-block h3 {
  color: #fff;
  font-size: 24px;
  line-height: 36px;
  text-align: center;
  font-weight: 700;
}

.dark-block h3 span {
  font-weight: 400;
}

.dark-block .list {
  margin-top: 12px;
}

.dark-block .list li {
  color: #e2e8f0;
}

.callout {
  margin: 36px 0;
  background: #f8fafc;
  border: 1px solid #cbd5e1;
  border-radius: 14px;
  color: #1d293d;
  text-align: center;
  font-size: 16px;
  line-height: 24px;
  font-weight: 700;
  padding: 34px 12px;
}

.dark-meta {
  margin-top: 18px;
}

.market {
  padding-top: 38px;
  padding-bottom: 24px;
}

.market-title {
  text-align: center;
  color: var(--text);
  font-size: 24px;
  line-height: 36px;
  font-weight: 700;
}

.market-title span {
  display: inline-block;
  margin-top: 2px;
  background: var(--orange);
  border-radius: 6px;
  color: #fff;
  padding: 0 8px;
}

.market-copy {
  margin-top: 10px;
  text-align: center;
  color: var(--muted-dark);
  font-size: 16px;
  line-height: 22px;
}

.market-copy strong {
  color: var(--text);
}

.pill-row {
  margin-top: 8px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
}

.pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  border-radius: 207px;
  background: #fff;
  color: var(--text);
  font-size: 16px;
  line-height: 24px;
  font-weight: 700;
  padding: 8px 20px;
}

.pill-icon {
  width: 24px;
  height: 24px;
  display: block;
}

blockquote {
  color: #1D293D;
  font-size: 20px;
  font-family: Inter;
  font-weight: 500;
  line-height: 28px;
  word-wrap: break-word;
  text-align: center;
  width: 100%;
  margin: 40px auto 20px;
}

.calculator {
  background: #00a63e;
  padding: 32px 0 34px;
}

.calculator h2 {
  text-align: center;
  color: #fff;
  font-size: 24px;
  line-height: 28px;
  font-weight: 700;
  text-transform: uppercase;
}

.tiny {
  margin-top: 10px;
  color: #dff8ea;
  text-align: center;
  font-size: 14px;
  line-height: 18px;
  font-weight: 400;
}

.calc-hint {
  margin: 12px auto 0;
  max-width: 259px;
  color: #eefcf4;
  text-align: center;
  font-size: 15px;
  line-height: 18px;
}

.calc-card {
  margin-top: 20px;
  border-radius: 14px;
  background: #0f172b;
  border: 1px solid #1e293b;
  color: #e2e8f0;
  padding: 20px 8px 16px;
  position: relative;
  overflow: hidden;
}

.calc-card h3 {
  text-align: center;
  color: #8EC5FF;
  font-size: 20px;
  font-family: Inter;
  font-weight: 500;
  line-height: 28px;
  word-wrap: break-word;
  margin: 32px 0;
}

.field {
  margin: 14px auto 0;
  width: 294px;
  background: #111827;
  border: 1px solid #334155;
  border-radius: 12px;
  padding: 14px 10px 12px;
}

.field.highlighted {
  background: rgba(30, 41, 59, 0.88);
}

.field label {
  display: block;
  margin: 0 0 20px;
  text-align: center;
  color: #90A1B9;
  font-size: 12px;
  font-family: Inter;
  font-weight: 700;
  text-transform: uppercase;
  line-height: 16px;
  word-wrap: break-word
}

.stepper {
  display: grid;
  grid-template-columns: 32px 1fr 32px;
  align-items: center;
  gap: 12px;
}

.stepper.money {
  grid-template-columns: 32px auto 1fr 32px;
}

.step {
  width: 32px;
  height: 32px;
  border: 0;
  border-radius: 8px;
  color: #fff;
  background: #334155;
  line-height: 32px;
  font-size: 20px;
  cursor: pointer;
  padding: 0;
  touch-action: manipulation;
  -webkit-user-select: none;
  user-select: none;
  -webkit-tap-highlight-color: transparent;
}

.currency {
  color: #fff;
  font-size: 40px;
  line-height: 40px;
  font-weight: 700;
}

.stepper input {
  width: 100%;
  background: transparent;
  border: 0;
  outline: 0;
  color: #fff;
  text-align: center;
  font-size: 36px;
  line-height: 36px;
  font-weight: 700;
}

.stepper input::-webkit-outer-spin-button,
.stepper input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

.operator {
  display: block;
  text-align: center;
  color: #d1d5db;
  font-size: 32px;
  line-height: 32px;
  font-weight: 400;
  margin-top: 8px;
}

.result-box {
  margin: 16px auto 0;
  width: 309px;
  border-radius: 12px;
  background: #16a34a;
  box-shadow: 0 10px 25px rgba(24, 74, 199, 0.22);
  text-align: center;
  color: #fff;
  padding: 16px 8px;
}

.result-box p {
  font-size: 14px;
  width: 200px;
  margin: 0 auto;
  line-height: 24px;
  text-transform: uppercase;
}

.result-box strong {
  display: block;
  margin-top: 4px;
  font-size: 37px;
  line-height: 46px;
}

.calc-foot {
  margin: 14px auto;
  width: 282px;
  color: #c6d0de;
  text-align: center;
  font-size: 14px;
  line-height: 19px;
}

.testimonials {
  padding-top: 52px;
  padding-bottom: 34px;
}

.testimonials h2 {
  text-align: center;
  color: var(--text);
  font-size: 24px;
  line-height: 36px;
  font-weight: 700;
}

.testimonials-carousel {
  margin-top: 30px;
  display: grid;
  grid-template-columns: 40px minmax(0, 1fr) 40px;
  align-items: center;
  gap: 10px;
}

.carousel-viewport {
  overflow: hidden;
}

.carousel-track {
  display: flex;
  transition: transform 0.35s ease;
  will-change: transform;
}

.video-card {
  margin: 0;
  width: 100%;
  min-width: 100%;
  padding: 0;
  border: 0;
  background: transparent;
  border-radius: 21px;
  overflow: hidden;
  position: relative;
  cursor: pointer;
}

.video-card img {
  display: block;
  width: 100%;
}

.video-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(15, 23, 43, 0.04), rgba(15, 23, 43, 0.28));
}

.video-card .play {
  position: absolute;
  inset: 0;
  margin: auto;
  width: 77px;
  height: 77px;
  z-index: 1;
}

.carousel-arrow {
  width: 40px;
  height: 40px;
  border: 0;
  border-radius: 999px;
  background: var(--blue);
  color: #fff;
  font-size: 28px;
  line-height: 1;
  cursor: pointer;
}

.carousel-arrow:disabled {
  opacity: 0.35;
  cursor: default;
}

.dots {
  margin-top: 18px;
  display: flex;
  justify-content: center;
  gap: 16px;
}

.dots button {
  width: 8px;
  height: 8px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: #c4c9d2;
  cursor: pointer;
}

.dots button.is-active {
  background: var(--orange);
  transform: scale(1.2);
}

.audience {
  padding-top: 34px;
  padding-bottom: 26px;
}

.audience h2 {
  text-align: center;
  color: var(--text);
  font-size: 24px;
  line-height: 36px;
  font-weight: 700;
}

.audience-card {
  margin-top: 18px;
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 14px;
  box-shadow: 0 10px 15px -3px rgba(15, 23, 43, 0.06), 0 4px 6px -4px rgba(15, 23, 43, 0.06);
  padding: 24px 16px;
}

.audience-card h3 {
  font-size: 24px;
  line-height: 24px;
  font-weight: 700;
  margin-bottom: 18px;
}

.positive h3 {
  background: url(assets/check-seco.svg) no-repeat left center / contain;
  padding-left: 36px;
}

.negative h3 {
  background: url(assets/cancel-seco.svg) no-repeat left center / contain;
  padding-left: 36px;
}

.audience-card.positive {
  border-top: 4px solid #22c55e;
}

.audience-card.negative {
  border-top: 4px solid #ef4444;
}

.audience-card .list li {
  color: #1f2937;
}

.cta-strip {
  padding-top: 0;
  padding-bottom: 30px;
  text-align: center;
}

.venue {
  padding-top: 34px;
}

.venue h2 {
  text-align: center;
  color: var(--text);
  font-size: 24px;
  line-height: 32px;
  font-weight: 700;
}

.venue .lead {
  margin-top: 18px;
  color: var(--muted);
  font-size: 16px;
  line-height: 24px;
}

.venue-card {
  margin-top: 22px;
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 10px 15px -3px rgba(15, 23, 43, 0.08), 0 4px 6px -4px rgba(15, 23, 43, 0.08);
  overflow: hidden;
}

.venue-cover {
  position: relative;
  height: 256px;
}

.venue-cover span {
  background: url(assets/marcador-local-branco.svg) no-repeat left center / contain;
  margin: 0 0 0 10px;
  padding-left: 40px;
}

.venue-cover img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.venue-cover::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 52%, rgba(0, 0, 0, 0.58));
}

.venue-cover span {
  position: absolute;
  left: 20px;
  bottom: 18px;
  color: #fff;
  font-size: 18px;
  line-height: 28px;
  font-weight: 700;
  z-index: 1;
}

.venue-line {
  padding: 22px 20px 0;
}

.venue-line-head {
  display: flex;
  align-items: start;
  gap: 12px;
}

.venue-icon {
  width: 40px;
  height: 40px;
  flex: 0 0 40px;
  border-radius: 10px;
  background: #f1f5f9;
  display: flex;
  align-items: start;
  justify-content: center;
}

.venue-icon img {
  display: block;
}

.venue-line h4 {
  color: var(--text);
  font-size: 16px;
  line-height: 24px;
  font-weight: 700;
}

.venue-line p {
  margin-top: 4px;
  color: var(--muted);
  font-size: 14px;
  line-height: 20px;
}

.venue-note {
  margin: 16px 20px 22px;
  border-radius: 10px;
  background: #f1f5f9;
  color: #314158;
  font-size: 14px;
  line-height: 20px;
  font-weight: 500;
  padding: 10px 14px;
}

.certificate-title {
  margin-top: 62px;
  text-align: center;
  color: #1d2538;
  font-size: 24px;
  line-height: 24px;
  font-weight: 700;
}

.certificado {
  width: 100%;
}

.certificate-text {
  margin: 30px;
  text-align: center;
  color: var(--muted);
  font-size: 16px;
  line-height: 18px;
}

.materials {
  padding-top: 36px;
  padding-bottom: 36px;
}

.materials h2 {
  text-align: center;
  color: #1d2538;
  font-size: 24px;
  line-height: 24px;
  font-weight: 700;
  width: 200px;
  margin: 0 auto;
}

.material-stack {
  margin-top: 0px;
  position: relative;
  height: 230px;
}


.material-stack .shirt {
  position: absolute;
  left: 2px;
  bottom: 0;
  width: 220px;
}

.material-stack .cap {
  position: absolute;
  right: 0;
  bottom: 12px;
  width: 170px;
}

.support-title {
  margin: 20px 0;
  text-align: center;
  color: #0f172b;
  font-size: 16px;
  line-height: 24px;
  font-weight: 700;
}

.pill-row.wide {
  margin-top: 8px;
}

.checkout {
  position: relative;
  overflow: hidden;
  background: var(--blue);
  color: #fff;
  padding: 56px 0 38px;
}

.checkout .container {
  position: relative;
  z-index: 1;
}

.checkout h2 {
  text-align: center;
  color: #fff;
  font-size: 24px;
  line-height: 33px;
  font-weight: 700;
  text-transform: uppercase;
  width: 300px;
  margin: 0 auto;
}

.lot-box {
  margin-top: 12px;
  text-align: center;
}

.lot-box p {
  display: inline-block;
  background: var(--orange-strong);
  border-radius: 8px;
  padding: 0 50px;
  font-size: 16px;
  line-height: 33px;
  font-weight: 700;
  text-transform: uppercase;
}

.checkout .container hr {
  border: 1px solid rgba(255, 255, 255, 0.35);
  width: 94%;
}

.lot-box small {
  display: block;
  margin-top: 4px;
  color: #fff;
  font-size: 15px;
  line-height: 33px;
  text-transform: uppercase;
}

.ticket-grid {
  display: grid;
  gap: 22px;
  margin-top: 28px;
}

.ticket-card {
  position: relative;
  border-radius: 25px;
  padding: 24px;
}

.ticket-card h3 {
  position: relative;
  z-index: 1;
  width: 310px;
  color: #fff;
  font-size: 24px;
  line-height: 33px;
  font-weight: 700;
  text-transform: uppercase;
}

.ticket-card h3 span {
  display: block;
  font-weight: 900;
}

.ticket-card-presencial {
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.2)), var(--blue);
}

.ticket-card-combo {
  background: var(--green);
}

.ticket-art {
  position: absolute;
  pointer-events: none;
}

.ticket-art-single {
  top: 6px;
  right: -12px;
  width: 168px;
  z-index: 2;
  transform: rotate(8deg);
}

.ticket-art-single img {
  display: block;
  width: 100%;
}

.ticket-art-combo {
  top: 0;
  z-index: 2;
  right: -8px;
  width: 190px;
  height: 170px;
}

.ticket-art-combo .ticket-main {
  position: absolute;
  left: 0;
  top: 28px;
  width: 132px;
  transform: rotate(16deg);
}

.ticket-art-combo .ticket-phone {
  position: absolute;
  right: -6px;
  top: -2px;
  width: 232px;
}

.ticket-divider {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 2px;
  margin: 18px 0;
  background: rgba(170, 223, 255, 0.65);
}

.ticket-card-combo .ticket-divider {
  background: rgba(0, 69, 113, 0.55);
}

.ticket-features {
  position: relative;
  z-index: 1;
  list-style: none;
  margin: 0;
  padding: 0;
}

.ticket-features li {
  position: relative;
  padding-left: 36px;
  color: #fff;
  font-size: 15px;
  line-height: 33px;
  font-weight: 700;
  text-transform: uppercase;
}

.ticket-features li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 4px;
  width: 24px;
  height: 24px;
  background: url('assets/check-verde.svg') no-repeat center center / contain;
}

.ticket-card-presencial .ticket-features li::before {
  background: url('assets/check-vaga.svg') no-repeat center center / contain;
}

.ticket-feature-highlight {
  margin-top: 6px;
  border-radius: 7px;
  background: var(--blue);
  padding: 10px !important;
  display: flex;
  align-items: center;
  line-height: 17px !important;
}

.ticket-feature-highlight::before {
  display: none;
}

.ticket-price {
  position: relative;
  z-index: 1;
  margin-top: 4px;
  text-align: center;
  color: #fff;
  text-transform: uppercase;
}

.ticket-price small {
  display: block;
  font-size: 14px;
  line-height: 33px;
}

.ticket-price strong {
  display: block;
  margin-top: 2px;
  font-size: 37px;
  line-height: 33px;
  font-weight: 700;
}

.ticket-price p {
  margin-top: 8px;
  font-size: 14px;
  line-height: 33px;
}

.ticket-cta {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 61px;
  margin-top: 18px;
  padding: 10px 22px;
  border-radius: 999px;
  color: inherit;
  text-align: center;
  text-decoration: none;
  font-size: 20px;
  line-height: 21px;
  font-weight: 700;
  text-transform: uppercase;
}

.ticket-cta-green {
  background: var(--green);
  color: #fff;
}

.ticket-cta-light {
  background: #fff;
  color: var(--green);
}

.ticket-footnote {
  margin-top: 14px;
  color: #f54900;
  font-size: 14px;
  line-height: 20px;
  font-weight: 600;
  text-align: center;
}

.draw {
  padding-top: 0;
  padding-bottom: 0;
  background: #fff;
}

.draw .container {
  padding-top: 28px;
  padding-bottom: 34px;
}

.draw-tag {
  width: 327px;
  max-width: 100%;
  margin: 40px auto;
  border-radius: 6px;
  background: var(--orange);
  color: #fff;
  text-align: center;
  font-size: 24px;
  line-height: 37px;
  font-weight: 700;
  text-transform: uppercase;
}

.draw h2 {
  width: 80%;
  margin: 0 auto 20px;
  text-align: center;
  color: #0f172b;
  font-size: 24px;
  line-height: 30px;
  font-weight: 700;
  text-transform: uppercase;
}

.draw-text {
  margin: 18px auto 0;
  width: 320px;
  max-width: 100%;
  text-align: center;
  color: #0f172b;
  font-size: 16px;
  line-height: 18px;
}

.draw-img {
  margin: 12px auto 0;
  display: block;
  width: 255px;
  mix-blend-mode: multiply;
}

.draw-strong {
  margin: 12px auto 0;
  width: 320px;
  max-width: 100%;
  text-align: center;
  color: #0f172b;
  font-size: 16px;
  line-height: 18px;
  font-weight: 600;
}

.faq {
  padding-top: 48px;
  padding-bottom: 40px;
}

.faq-list {
  margin-top: 28px;
  display: grid;
  gap: 12px;
}

.faq-item {
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 16px;
  box-shadow: 0 10px 15px -3px rgba(15, 23, 43, 0.06), 0 4px 6px -4px rgba(15, 23, 43, 0.06);
  overflow: hidden;
}

.faq-question {
  list-style: none;
  position: relative;
  padding: 18px 54px 18px 18px;
  color: var(--text);
  font-size: 16px;
  line-height: 24px;
  font-weight: 700;
  cursor: pointer;
}

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

.faq-question::after {
  content: "+";
  position: absolute;
  top: 50%;
  right: 18px;
  width: 28px;
  height: 28px;
  border-radius: 999px;
  background: #f1f5f9;
  color: var(--orange);
  display: grid;
  place-items: center;
  font-size: 22px;
  font-weight: 500;
  transform: translateY(-50%);
}

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

.faq-answer {
  padding: 0 18px 18px;
}

.faq-answer p {
  color: var(--muted);
  font-size: 15px;
  line-height: 22px;
}

.footer {
  background: var(--deep-navy);
  border-top: 1px solid #0f172b;
  color: #90a1b9;
  padding: 64px 0 18px;
}

.footer-title {
  text-align: center;
  color: #45556c;
  font-size: 14px;
  line-height: 20px;
  font-weight: 700;
  letter-spacing: 0.1em;
}

.footer-logos {
  margin-top: 26px;
  display: flex;
  justify-content: space-evenly;
  align-items: center;
  gap: 16px;
}

.footer-logos img {
  width: auto;
  max-height: 52px;
}

.zip-logo {
  width: auto;
  max-height: 44px;
}

.footer-copy {
  margin: 26px auto 0;
  width: 340px;
  max-width: 100%;
  color: #62748e;
  text-align: center;
  font-size: 14px;
  line-height: 20px;
}

.footer-links {
  margin-top: 30px;
  display: flex;
  justify-content: center;
  gap: 22px;
}

.footer-links a,
.footer-link-btn {
  color: #90a1b9;
  font-size: 14px;
  line-height: 20px;
  font-weight: 500;
  text-decoration: none;
}

.footer-link-btn {
  background: none;
  border: 0;
  padding: 0;
  cursor: pointer;
  font-family: inherit;
}

.modal {
  position: fixed;
  inset: 0;
  z-index: 1200;
  display: none;
}

.modal.is-open {
  display: block;
}

.modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(2, 6, 24, 0.75);
  backdrop-filter: blur(2px);
}

.modal-panel {
  position: relative;
  width: min(680px, calc(100vw - 32px));
  height: min(90dvh, 820px);
  margin: 5dvh auto;
  border-radius: 16px;
  border: 1px solid #cbd5e1;
  background: #f8fafc;
  box-shadow: 0 24px 60px rgba(2, 6, 24, 0.42);
  overflow: hidden;
}

.modal-close {
  position: absolute;
  top: 14px;
  right: 14px;
  z-index: 2;
  border: 1px solid #cbd5e1;
  background: #fff;
  color: #0f172b;
  border-radius: 999px;
  min-height: 36px;
  padding: 8px 14px;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  cursor: pointer;
}

.modal-content {
  height: 100%;
  overflow: auto;
  padding: 64px 20px 28px;
}

.modal-content h2 {
  color: #0f172b;
  font-size: 26px;
  line-height: 34px;
  font-weight: 800;
  margin-bottom: 12px;
}

.modal-content h3 {
  color: #004571;
  font-size: 17px;
  line-height: 25px;
  font-weight: 700;
  margin-top: 20px;
}

.modal-content p {
  margin-top: 8px;
  color: #314158;
  font-size: 15px;
  line-height: 23px;
}

.footer-bottom {
  margin-top: 44px;
  padding-top: 18px;
  border-top: 1px solid #0f172b;
  color: #90a1b9;
  text-align: left;
  font-size: 14px;
  line-height: 20px;
}

@media (max-width: 768px) {
  .modal-panel {
    width: 100vw;
    height: 100dvh;
    margin: 0;
    border-radius: 0;
    border: 0;
  }
}

@media (max-width: 360px) {
  .btn {
    width: 100%;
  }

  .field {
    width: 100%;
  }

  .result-box {
    width: 100%;
  }

  .calc-foot {
    width: 100%;
  }
}
