/* =========================================
   CONFIGURAÇÕES GERAIS
========================================= */

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --background: #050505;
  --surface: #111111;
  --surface-light: #181818;
  --border: rgba(255, 255, 255, 0.09);
  --text: #f5f5f5;
  --muted: #9a9a9a;
  --accent: #ffffff;
  --dark: #050505;
  --container: 1480px;
}

html {
  scroll-behavior: smooth;
}

body {
  min-width: 320px;
  padding-top: 92px;
  background: var(--background);
  color: var(--text);
  font-family: "Inter", Arial, sans-serif;
  line-height: 1.5;
}

body.modal-open {
  overflow: hidden;
}

button,
input {
  font: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

button {
  border: 0;
}

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

img {
  max-width: 100%;
}

.container {
  width: min(calc(100% - 40px), var(--container));
  margin-inline: auto;
}


/* =========================================
   BARRA PROMOCIONAL
========================================= */

.promo-bar {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 9999;
  width: 100%;
  background:
    linear-gradient(
      135deg,
      rgba(255, 255, 255, 0.06),
      transparent 45%
    ),
    #101010;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.35);
}

.promo-bar__content {
  width: min(calc(100% - 40px), 1180px);
  min-height: 92px;
  margin-inline: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}

.promo-bar__text {
  display: flex;
  align-items: center;
  gap: 18px;
}

.promo-bar__tag {
  flex-shrink: 0;
  padding: 8px 12px;
  border-radius: 999px;
  background: #ff3030;
  color: #ffffff;
  box-shadow: 0 5px 18px rgba(255, 48, 48, 0.35);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.08em;
  white-space: nowrap;
}

.promo-bar__text strong {
  display: block;
  color: #ffffff;
  font-size: 16px;
  line-height: 1.3;
}

.promo-bar__text p {
  margin-top: 4px;
  color: #9c9c9c;
  font-size: 12px;
  line-height: 1.4;
}

.promo-bar__countdown {
  display: flex;
  align-items: center;
  gap: 17px;
  flex-shrink: 0;
}

.promo-bar__countdown-title {
  color: #ffffff;
  font-size: 15px;
  font-weight: 800;
  white-space: nowrap;
}

.countdown {
  display: flex;
  align-items: center;
  gap: 8px;
}

.countdown__item {
  min-width: 46px;
  min-height: 55px;
  padding: 7px 8px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 9px;
  background: rgba(255, 255, 255, 0.06);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.countdown__item strong {
  color: #ffffff;
  font-size: 20px;
  line-height: 1;
}

.countdown__item span {
  margin-top: 5px;
  color: #8f8f8f;
  font-size: 7px;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.countdown__separator {
  color: #ff3030;
  font-size: 20px;
  font-weight: 900;
}


/* =========================================
   HERO
========================================= */

.hero {
  position: relative;
  min-height: 780px;
  overflow: hidden;
  background: #050505;
}

.hero-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.55;
  filter: brightness(0.75);
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      to bottom,
      rgba(5, 5, 5, 0.1),
      rgba(5, 5, 5, 0.45) 65%,
      #050505 100%
    );
  pointer-events: none;
}

.nav {
  position: relative;
  z-index: 5;
  min-height: 90px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.brand {
  display: inline-flex;
  align-items: center;
}

.logo {
  width: 180px;
  height: auto;
  display: block;
}

.nav__button {
  padding: 11px 18px;
  border: 1px solid rgba(255, 255, 255, 0.4);
  border-radius: 999px;
  font-size: 13px;
  font-weight: 700;
  transition:
    background 0.25s ease,
    color 0.25s ease,
    transform 0.25s ease;
}

.nav__button:hover {
  background: #ffffff;
  color: #050505;
  transform: translateY(-2px);
}

.hero__content {
  position: relative;
  z-index: 5;
  padding-top: 115px;
  text-align: center;
}

.hero__eyebrow {
  margin-bottom: 24px;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: #c6c6c6;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hero__eyebrow span {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #ffffff;
  box-shadow: 0 0 16px rgba(255, 255, 255, 0.8);
}

.hero h1 {
  max-width: 950px;
  margin: 0 auto;
  font-size: clamp(48px, 7vw, 96px);
  letter-spacing: -0.065em;
  line-height: 0.96;
}

.hero h1 span {
  color: #7f7f7f;
}

.hero__content > p {
  max-width: 650px;
  margin: 30px auto 0;
  color: #a7a7a7;
  font-size: 17px;
}

.hero__actions {
  margin-top: 32px;
  display: flex;
  justify-content: center;
}

.hero__highlights {
  max-width: 930px;
  margin: 95px auto 0;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.hero__highlights div {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.hero__highlights strong {
  font-size: 14px;
}

.hero__highlights span {
  color: #7f7f7f;
  font-size: 12px;
}

.hero__glow {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}

.hero__glow--one {
  width: 650px;
  height: 650px;
  top: -370px;
  left: 50%;
  transform: translateX(-50%);
  border: 1px solid rgba(255, 255, 255, 0.13);
  box-shadow:
    0 0 90px rgba(255, 255, 255, 0.06),
    inset 0 0 90px rgba(255, 255, 255, 0.04);
}

.hero__glow--two {
  width: 1050px;
  height: 330px;
  bottom: -280px;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(255, 255, 255, 0.08);
  filter: blur(120px);
}


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

.button {
  min-height: 52px;
  padding: 0 25px;
  border: 1px solid transparent;
  border-radius: 8px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 14px;
  font-weight: 800;
  transition:
    transform 0.2s ease,
    background 0.2s ease,
    color 0.2s ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button--primary {
  background: #ffffff;
  color: #050505;
}

.button--primary:hover {
  background: #e7e7e7;
}

.button--full {
  width: 100%;
}


/* =========================================
   CABEÇALHOS DAS SEÇÕES
========================================= */

.section-heading {
  text-align: center;
}

.section-heading__tag {
  color: #848484;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.15em;
}

.section-heading h2 {
  margin-top: 12px;
  font-size: clamp(30px, 4vw, 52px);
  letter-spacing: -0.045em;
  line-height: 1.1;
}

.section-heading p {
  max-width: 660px;
  margin: 16px auto 0;
  color: #8f8f8f;
}

.section-heading p strong {
  color: #ffffff;
}


/* =========================================
   PLANOS
========================================= */

.plans-section {
  padding: 115px 0 95px;
  background:
    radial-gradient(
      circle at 50% 10%,
      rgba(255, 255, 255, 0.055),
      transparent 30%
    ),
    #070707;
}

.plans-grid {
  margin-top: 58px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.plan-card {
  position: relative;
  min-height: 550px;
  padding: 30px;
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: 18px;
  background: #121212;
  display: flex;
  flex-direction: column;
  transition:
    transform 0.25s ease,
    border-color 0.25s ease;
}

.plan-card::before {
  content: "";
  position: absolute;
  width: 220px;
  height: 220px;
  top: -150px;
  right: -100px;
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 50%;
  pointer-events: none;
}

.plan-card:hover {
  transform: translateY(-6px);
  border-color: rgba(255, 255, 255, 0.22);
}

.plan-card--featured {
  background: linear-gradient(145deg, #1c1c1c, #101010);
  border-color: rgba(255, 255, 255, 0.28);
}

.plan-card__popular {
  position: absolute;
  top: 0;
  right: 24px;
  padding: 8px 12px;
  border-radius: 0 0 8px 8px;
  background: #ffffff;
  color: #050505;
  font-size: 9px;
  font-weight: 900;
  letter-spacing: 0.1em;
}

.plan-card__label {
  color: #8e8e8e;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.plan-card h3 {
  margin-top: 11px;
  font-size: 25px;
  letter-spacing: -0.035em;
}

.plan-card__top p {
  min-height: 66px;
  margin-top: 10px;
  color: #999999;
  font-size: 14px;
  line-height: 1.7;
}

.plan-card__features {
  margin: 28px 0 25px;
  display: grid;
  gap: 13px;
  list-style: none;
  color: #b5b5b5;
  font-size: 14px;
}

.plan-card__features li {
  display: flex;
  align-items: flex-start;
  gap: 9px;
  line-height: 1.45;
}

.plan-card__features li span {
  flex: 0 0 auto;
  color: #ffffff;
}

.plan-card__bottom {
  margin-top: auto;
}

.plan-card__from {
  display: block;
  margin-bottom: 3px;
  color: #777777;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.1em;
}

.plan-card__price {
  margin-bottom: 21px;
  display: flex;
  align-items: flex-end;
  line-height: 1;
}

.plan-card__price small {
  margin: 0 6px 8px 0;
  font-size: 24px;
  font-weight: 700;
}

.plan-card__price > strong {
  font-size: 57px;
  letter-spacing: -0.06em;
}

.plan-card__price > div {
  margin: 0 0 7px 5px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.plan-card__price sup {
  font-size: 19px;
  font-weight: 700;
}

.plan-card__price span {
  margin-top: 4px;
  color: #8d8d8d;
  font-size: 13px;
}

.plan-card__button {
  width: 100%;
  min-height: 49px;
  padding: 0 15px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 8px;
  background: #202020;
  color: #ffffff;
  cursor: pointer;
  font-weight: 800;
  transition:
    background 0.2s ease,
    color 0.2s ease,
    transform 0.2s ease;
}

.plan-card__button:hover {
  background: #ffffff;
  color: #050505;
  transform: translateY(-2px);
}

.plan-card--featured .plan-card__button {
  background: #ffffff;
  color: #050505;
}

.plan-card--featured .plan-card__button:hover {
  background: #e7e7e7;
}


/* =========================================
   AVISO DO CHIP
========================================= */

.chip-notice {
  margin-top: 20px;
  padding: 25px 30px;
  border: 1px solid var(--border);
  border-radius: 15px;
  background: #0e0e0e;
  display: flex;
  align-items: center;
  gap: 20px;
}

.chip-notice__icon {
  width: 58px;
  height: 58px;
  flex: 0 0 58px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 14px;
  display: grid;
  place-items: center;
}

.chip-notice__icon span {
  position: relative;
  width: 25px;
  height: 34px;
  border: 2px solid #ffffff;
  border-radius: 4px;
}

.chip-notice__icon span::before {
  content: "";
  position: absolute;
  width: 9px;
  height: 7px;
  top: -2px;
  right: -2px;
  background: #0e0e0e;
  border-left: 2px solid #ffffff;
  border-bottom: 2px solid #ffffff;
}

.chip-notice > div:last-child > span {
  color: #7d7d7d;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.12em;
}

.chip-notice h3 {
  margin-top: 4px;
  font-size: 18px;
}

.chip-notice p {
  margin-top: 4px;
  color: #888888;
  font-size: 13px;
}

.plans-note {
  margin-top: 18px;
  color: #5f5f5f;
  font-size: 11px;
  text-align: center;
}


/* =========================================
   COMO FUNCIONA
========================================= */

.how-it-works {
  padding: 100px 0 115px;
  background: #0c0c0c;
}

.steps {
  margin-top: 55px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.step {
  padding: 28px;
  border: 1px solid var(--border);
  border-radius: 15px;
  background: #111111;
}

.step__image {
  width: 100%;
  height: 220px;
  margin-bottom: 20px;
  border-radius: 12px;
  object-fit: cover;
  display: block;
}

.step h3 {
  font-size: 19px;
}

.step p {
  margin-top: 8px;
  color: #858585;
  font-size: 14px;
  line-height: 1.6;
}


/* =========================================
   RODAPÉ
========================================= */

.footer {
  padding: 35px 0;
  border-top: 1px solid var(--border);
  background: #050505;
}

.footer__content {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.footer-logo {
  width: 180px;
  height: auto;
  display: block;
}

.footer p {
  color: #666666;
  font-size: 12px;
}


/* =========================================
   MODAL
========================================= */

.modal {
  position: fixed;
  inset: 0;
  z-index: 10000;
  padding: 20px;
  display: none;
  place-items: center;
}

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

.modal__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.82);
  backdrop-filter: blur(8px);
}

.modal__content {
  position: relative;
  z-index: 1;
  width: min(100%, 500px);
  max-height: calc(100vh - 40px);
  overflow-y: auto;
  padding: 35px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 18px;
  background: #111111;
  box-shadow: 0 30px 100px rgba(0, 0, 0, 0.7);
}

.modal__close {
  position: absolute;
  top: 15px;
  right: 18px;
  padding: 0;
  background: transparent;
  color: #858585;
  cursor: pointer;
  font-size: 30px;
  line-height: 1;
}

.modal__close:hover {
  color: #ffffff;
}

.modal__tag {
  color: #777777;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.12em;
}

.modal h2 {
  margin-top: 5px;
  font-size: 30px;
}

.modal__summary {
  margin-top: 25px;
  padding: 18px;
  border: 1px solid var(--border);
  border-radius: 10px;
  background: #0b0b0b;
  display: grid;
  gap: 13px;
}

.modal__summary > div {
  display: flex;
  justify-content: space-between;
  gap: 20px;
}

.modal__summary span {
  color: #777777;
  font-size: 12px;
}

.modal__summary strong {
  font-size: 13px;
  text-align: right;
}

.lead-form {
  margin-top: 25px;
  display: grid;
  gap: 16px;
}

.lead-form label {
  color: #bdbdbd;
  font-size: 12px;
  font-weight: 700;
}

.lead-form input {
  width: 100%;
  height: 50px;
  margin-top: 7px;
  padding: 0 14px;
  border: 1px solid var(--border);
  border-radius: 8px;
  outline: none;
  background: #0a0a0a;
  color: #ffffff;
}

.lead-form input::placeholder {
  color: #666666;
}

.lead-form input:focus {
  border-color: rgba(255, 255, 255, 0.45);
}

.lead-form small {
  color: #666666;
  font-size: 10px;
  text-align: center;
}


/* =========================================
   RESPONSIVO — TABLET
========================================= */

@media (max-width: 920px) {
  .plans-grid,
  .steps {
    grid-template-columns: 1fr;
  }

  .plan-card {
    min-height: 460px;
  }

  .hero__highlights {
    grid-template-columns: 1fr;
    gap: 18px;
  }
}


/* =========================================
   RESPONSIVO — CELULAR
========================================= */

@media (max-width: 700px) {
  body {
    padding-top: 118px;
  }

  .container {
    width: min(calc(100% - 28px), var(--container));
  }

  .promo-bar__content {
    width: min(calc(100% - 24px), 500px);
    min-height: 118px;
    padding: 12px 0;
    flex-direction: column;
    justify-content: center;
    gap: 10px;
  }

  .promo-bar__text {
    width: 100%;
    justify-content: center;
    gap: 10px;
    text-align: left;
  }

  .promo-bar__tag {
    padding: 7px 9px;
    font-size: 8px;
  }

  .promo-bar__text strong {
    font-size: 13px;
  }

  .promo-bar__text p {
    margin-top: 2px;
    font-size: 10px;
  }

  .promo-bar__countdown {
    width: 100%;
    justify-content: center;
    gap: 10px;
  }

  .promo-bar__countdown-title {
    font-size: 14px;
  }

  .countdown {
    gap: 5px;
  }

  .countdown__item {
    min-width: 42px;
    min-height: 45px;
    padding: 5px 6px;
  }

  .countdown__item strong {
    font-size: 17px;
  }

  .countdown__item span {
    margin-top: 3px;
    font-size: 6px;
  }

  .countdown__separator {
    font-size: 16px;
  }

  .hero {
    min-height: 760px;
  }

  .hero-image {
    object-position: center;
  }

  .nav {
    min-height: 75px;
  }

  .logo {
    width: 145px;
  }

  .nav__button {
    padding: 9px 13px;
    font-size: 11px;
  }

  .hero__content {
    padding-top: 80px;
  }

  .hero h1 {
    font-size: clamp(42px, 14vw, 66px);
  }

  .hero__content > p {
    font-size: 14px;
  }

  .hero__actions {
    flex-direction: column;
  }

  .hero__actions .button {
    width: 100%;
  }

  .hero__highlights {
    margin-top: 65px;
  }

  .plans-section,
  .how-it-works {
    padding-top: 80px;
  }

  .plans-grid {
    margin-top: 38px;
  }

  .plan-card {
    min-height: 490px;
    padding: 25px;
  }

  .chip-notice {
    align-items: flex-start;
    padding: 21px;
  }

  .chip-notice__icon {
    display: none;
  }

  .footer__content {
    flex-direction: column;
    gap: 14px;
    text-align: center;
  }

  .footer-logo {
    width: 145px;
  }

  .modal__content {
    padding: 29px 21px 24px;
  }

  .modal__summary > div {
    align-items: flex-start;
  }
}


/* =========================================
   RESPONSIVO — CELULARES PEQUENOS
========================================= */

@media (max-width: 400px) {
  body {
    padding-top: 125px;
  }

  .promo-bar__content {
    min-height: 125px;
  }

  .promo-bar__tag {
    display: none;
  }

  .promo-bar__text {
    justify-content: center;
    text-align: center;
  }

  .promo-bar__countdown {
    flex-direction: column;
    gap: 5px;
  }

  .logo {
    width: 125px;
  }

  .nav__button {
    padding: 8px 11px;
    font-size: 10px;
  }

  .hero__content {
    padding-top: 65px;
  }

  .hero h1 {
    font-size: 40px;
  }

  .plan-card__price > strong {
    font-size: 50px;
  }
}