/* ==========================================================
   01 — VARIÁVEIS
========================================================== */

:root {
  --azul-950: #04101f;
  --azul-900: #06192c;
  --azul-800: #0a2742;
  --azul-700: #103a5f;

  --dourado: #e0b52e;
  --dourado-claro: #f4d46b;

  --verde-whatsapp: #25d366;

  --branco: #ffffff;

  --cinza-50: #f6f8fb;
  --cinza-100: #edf2f6;
  --cinza-200: #d9e2ea;
  --cinza-500: #667789;
  --cinza-700: #344657;

  --texto: #102235;

  --sombra-card:
    0 18px 45px rgba(4, 16, 31, 0.08);

  --sombra-forte:
    0 28px 70px rgba(4, 16, 31, 0.16);

  --raio-pequeno: 14px;
  --raio-medio: 20px;
  --raio-grande: 28px;

  --container:
    min(1160px, calc(100% - 40px));
}


/* ==========================================================
   02 — RESET
========================================================== */

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;

  color: var(--texto);
  background: var(--cinza-50);

  font-family:
    "Inter",
    "Segoe UI",
    Arial,
    sans-serif;

  line-height: 1.65;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
}

button,
input,
textarea,
select {
  font: inherit;
}


/* ==========================================================
   03 — ESTRUTURA GLOBAL
========================================================== */

.container {
  width: var(--container);
  margin: 0 auto;
}

.secao {
  padding: 100px 0;
}

.secao-clara {
  background: var(--branco);
}

.secao-cinza {
  background: var(--cinza-50);
}

.secao-escura {
  color: var(--branco);

  background:
    radial-gradient(
      circle at 88% 12%,
      rgba(224, 181, 46, 0.14),
      transparent 25%
    ),
    linear-gradient(
      135deg,
      var(--azul-950),
      var(--azul-800)
    );
}

.cabecalho-secao {
  max-width: 850px;

  margin: 0 auto 55px;

  text-align: center;
}

.cabecalho-secao__tag {
  display: inline-block;

  margin-bottom: 10px;

  color: #9b7300;

  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.secao-escura .cabecalho-secao__tag {
  color: var(--dourado-claro);
}

.cabecalho-secao h2 {
  margin: 0 0 16px;

  color: var(--azul-950);

  font-size:
    clamp(2rem, 4vw, 3.25rem);

  font-weight: 900;
  line-height: 1.12;
  letter-spacing: -0.04em;
}

.secao-escura .cabecalho-secao h2 {
  color: var(--branco);
}

.cabecalho-secao p {
  margin: 0;

  color: var(--cinza-500);

  font-size: 1.02rem;
}

.secao-escura .cabecalho-secao p {
  color: #c8d6e2;
}


/* ==========================================================
   04 — TOPO
========================================================== */

.topo-plano {
  position: sticky;
  top: 0;
  z-index: 1000;

  border-bottom:
    1px solid rgba(255, 255, 255, 0.08);

  background:
    rgba(4, 16, 31, 0.95);

  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

.topo-plano__conteudo {
  min-height: 76px;

  display: flex;
  align-items: center;
  justify-content: space-between;

  gap: 25px;
}

.logo-plano {
  display: inline-flex;
  align-items: center;
  gap: 12px;

  color: var(--branco);

  font-weight: 900;
  text-decoration: none;
}

.logo-plano__simbolo {
  width: 43px;
  height: 43px;

  display: flex;
  align-items: center;
  justify-content: center;

  border-radius: 13px;

  color: var(--azul-950);

  background:
    linear-gradient(
      135deg,
      var(--dourado),
      var(--dourado-claro)
    );

  box-shadow:
    0 10px 28px rgba(224, 181, 46, 0.24);
}

.menu-plano {
  display: flex;
  align-items: center;
  gap: 24px;
}

.menu-plano a {
  color: #dce8f2;

  font-size: 0.88rem;
  font-weight: 700;
  text-decoration: none;

  transition: color 0.2s ease;
}

.menu-plano a:hover {
  color: var(--dourado-claro);
}

.menu-plano__voltar {
  min-height: 42px;

  display: inline-flex;
  align-items: center;
  justify-content: center;

  padding: 0 18px;

  border:
    1px solid rgba(255, 255, 255, 0.15);

  border-radius: 999px;

  background:
    rgba(255, 255, 255, 0.055);
}


/* ==========================================================
   05 — HERO
========================================================== */

.hero-plano {
  position: relative;

  padding: 110px 0 95px;

  overflow: hidden;

  color: var(--branco);

  background:
    radial-gradient(
      circle at 84% 12%,
      rgba(224, 181, 46, 0.2),
      transparent 27%
    ),
    radial-gradient(
      circle at 8% 90%,
      rgba(54, 174, 191, 0.12),
      transparent 27%
    ),
    linear-gradient(
      135deg,
      #03101f 0%,
      #071d34 52%,
      #0b2d4c 100%
    );
}

.hero-plano::before {
  content: "";

  position: absolute;
  inset: 0;

  background-image:
    linear-gradient(
      rgba(255, 255, 255, 0.025) 1px,
      transparent 1px
    ),
    linear-gradient(
      90deg,
      rgba(255, 255, 255, 0.025) 1px,
      transparent 1px
    );

  background-size: 48px 48px;
}

.hero-plano__grid {
  position: relative;
  z-index: 2;

  display: grid;
  grid-template-columns:
    minmax(0, 1.15fr)
    minmax(340px, 0.85fr);

  gap: 65px;

  align-items: center;
}

.hero-plano__tag {
  display: inline-flex;
  align-items: center;

  margin-bottom: 20px;
  padding: 8px 14px;

  border:
    1px solid rgba(244, 212, 107, 0.3);

  border-radius: 999px;

  color: var(--dourado-claro);

  background:
    rgba(224, 181, 46, 0.08);

  font-size: 0.7rem;
  font-weight: 900;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.hero-plano h1 {
  max-width: 780px;

  margin: 0 0 22px;

  font-size:
    clamp(2.5rem, 5vw, 4.35rem);

  font-weight: 900;
  line-height: 1.05;
  letter-spacing: -0.05em;
}

.hero-plano h1 strong {
  color: var(--dourado-claro);
}

.hero-plano__resumo {
  max-width: 740px;

  margin: 0 0 30px;

  color: #cbd9e5;

  font-size: 1.06rem;
}

.hero-plano__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;

  margin-bottom: 34px;
}

.hero-plano__tags span {
  padding: 8px 13px;

  border:
    1px solid rgba(255, 255, 255, 0.1);

  border-radius: 999px;

  color: #e4edf5;

  background:
    rgba(255, 255, 255, 0.05);

  font-size: 0.78rem;
  font-weight: 700;
}

.hero-plano__acoes {
  display: flex;
  flex-wrap: wrap;
  gap: 13px;
}


/* ==========================================================
   06 — BOTÕES
========================================================== */

.btn {
  min-height: 55px;

  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;

  padding: 0 25px;

  border-radius: 999px;

  font-size: 0.9rem;
  font-weight: 900;
  text-decoration: none;

  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease,
    background 0.25s ease;
}

.btn:hover {
  transform: translateY(-3px);
}

.btn--principal {
  color: var(--azul-950);

  background:
    linear-gradient(
      135deg,
      var(--dourado),
      var(--dourado-claro)
    );

  box-shadow:
    0 16px 36px
    rgba(224, 181, 46, 0.25);
}

.btn--principal:hover {
  box-shadow:
    0 22px 46px
    rgba(224, 181, 46, 0.34);
}

.btn--secundario {
  border:
    1px solid rgba(255, 255, 255, 0.18);

  color: var(--branco);

  background:
    rgba(255, 255, 255, 0.06);
}


/* ==========================================================
   07 — CARD DE INVESTIMENTO
========================================================== */

.card-investimento {
  padding: 35px;

  border:
    1px solid rgba(244, 212, 107, 0.28);

  border-radius: var(--raio-grande);

  background:
    rgba(255, 255, 255, 0.075);

  box-shadow:
    0 32px 80px rgba(0, 0, 0, 0.25);

  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

.card-investimento__selo {
  display: inline-block;

  margin-bottom: 20px;
  padding: 7px 12px;

  border-radius: 999px;

  color: var(--azul-950);
  background: var(--dourado);

  font-size: 0.67rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.card-investimento h2 {
  margin: 0 0 6px;

  color: var(--branco);

  font-size: 0.95rem;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.card-investimento__preco {
  margin: 0 0 8px;

  color: var(--branco);

  font-size:
    clamp(2.45rem, 5vw, 3.6rem);

  font-weight: 900;
  line-height: 1.1;
  letter-spacing: -0.05em;
}

.card-investimento__preco small {
  color: #c8d5e0;

  font-size: 0.85rem;
  letter-spacing: 0;
}

.card-investimento__mensalidade {
  margin-top: 23px;
  padding-top: 22px;

  border-top:
    1px solid rgba(255, 255, 255, 0.12);
}

.card-investimento__mensalidade span {
  display: block;

  color: #c8d5e0;

  font-size: 0.78rem;
}

.card-investimento__mensalidade strong {
  display: block;

  color: var(--dourado-claro);

  font-size: 1.32rem;
}

.card-investimento ul {
  margin: 25px 0 0;
  padding: 0;

  list-style: none;
}

.card-investimento li {
  position: relative;

  margin-bottom: 11px;
  padding-left: 25px;

  color: #dde7ef;

  font-size: 0.87rem;
}

.card-investimento li::before {
  content: "✓";

  position: absolute;
  left: 0;

  color: var(--dourado-claro);

  font-weight: 900;
}

.card-investimento__aviso {
  margin: 18px 0 0;

  color: #9dafbe;

  font-size: 0.76rem;
}


/* ==========================================================
   08 — GRIDS E CARDS
========================================================== */

.grid {
  display: grid;
  gap: 22px;
}

.grid--2 {
  grid-template-columns:
    repeat(2, minmax(0, 1fr));
}

.grid--3 {
  grid-template-columns:
    repeat(3, minmax(0, 1fr));
}

.grid--4 {
  grid-template-columns:
    repeat(4, minmax(0, 1fr));
}

.card {
  padding: 28px;

  border:
    1px solid var(--cinza-200);

  border-radius: var(--raio-medio);

  background: var(--branco);

  box-shadow: var(--sombra-card);
}

.card__icone {
  width: 52px;
  height: 52px;

  display: flex;
  align-items: center;
  justify-content: center;

  margin-bottom: 20px;

  border-radius: 15px;

  color: var(--azul-950);

  background:
    linear-gradient(
      135deg,
      var(--dourado),
      var(--dourado-claro)
    );

  font-weight: 900;
}

.card h3 {
  margin: 0 0 10px;

  color: var(--azul-950);

  font-size: 1.18rem;
}

.card p {
  margin: 0;

  color: var(--cinza-500);

  font-size: 0.9rem;
}


/* ==========================================================
   09 — ETAPAS
========================================================== */

.etapas {
  counter-reset: etapa;

  display: grid;
  grid-template-columns:
    repeat(4, minmax(0, 1fr));

  gap: 18px;
}

.etapa {
  min-height: 220px;

  padding: 30px 23px;

  border:
    1px solid rgba(255, 255, 255, 0.11);

  border-radius: var(--raio-medio);

  background:
    rgba(255, 255, 255, 0.055);
}

.etapa::before {
  counter-increment: etapa;

  content: "0" counter(etapa);

  display: block;

  margin-bottom: 25px;

  color: var(--dourado-claro);

  font-weight: 900;
}

.etapa h3 {
  margin: 0 0 10px;

  color: var(--branco);

  font-size: 1.08rem;
}

.etapa p {
  margin: 0;

  color: #c7d4df;

  font-size: 0.88rem;
}


/* ==========================================================
   10 — DUAS COLUNAS E LISTAS
========================================================== */

.duas-colunas {
  display: grid;
  grid-template-columns:
    minmax(0, 0.9fr)
    minmax(0, 1.1fr);

  gap: 55px;

  align-items: start;
}

.bloco-destaque {
  padding: 35px;

  border:
    1px solid rgba(224, 181, 46, 0.27);

  border-radius: var(--raio-grande);

  background:
    linear-gradient(
      135deg,
      rgba(224, 181, 46, 0.12),
      rgba(255, 255, 255, 0.94)
    );
}

.bloco-destaque h3 {
  margin: 0 0 15px;

  color: var(--azul-950);

  font-size: 1.55rem;
}

.bloco-destaque p {
  margin: 0;

  color: var(--cinza-500);
}

.lista-check {
  margin: 0;
  padding: 0;

  list-style: none;
}

.lista-check li {
  position: relative;

  margin-bottom: 15px;
  padding-left: 30px;

  color: var(--cinza-700);
}

.lista-check li::before {
  content: "✓";

  position: absolute;
  left: 0;

  color: #a77c00;

  font-weight: 900;
}

.secao-escura .lista-check li {
  color: #d7e2eb;
}

.secao-escura .lista-check li::before {
  color: var(--dourado-claro);
}


/* ==========================================================
   11 — FAQ
========================================================== */

.faq {
  max-width: 900px;

  display: grid;
  gap: 14px;

  margin: 0 auto;
}

.faq details {
  padding: 21px 23px;

  border:
    1px solid var(--cinza-200);

  border-radius: 17px;

  background: var(--branco);

  box-shadow:
    0 10px 25px
    rgba(4, 16, 31, 0.04);
}

.faq summary {
  cursor: pointer;

  color: var(--azul-950);

  font-weight: 900;
}

.faq p {
  margin-bottom: 0;

  color: var(--cinza-500);
}


/* ==========================================================
   12 — CTA FINAL
========================================================== */

.cta-final {
  padding: 75px 0;

  color: var(--branco);

  background:
    radial-gradient(
      circle at 85% 20%,
      rgba(224, 181, 46, 0.22),
      transparent 25%
    ),
    linear-gradient(
      135deg,
      var(--azul-950),
      #0a2d4b
    );
}

.cta-final__conteudo {
  display: flex;
  align-items: center;
  justify-content: space-between;

  gap: 40px;
}

.cta-final h2 {
  max-width: 720px;

  margin: 0 0 10px;

  font-size:
    clamp(2rem, 4vw, 3rem);

  line-height: 1.15;
}

.cta-final p {
  margin: 0;

  color: #c9d6e1;
}


/* ==========================================================
   13 — RODAPÉ
========================================================== */

.footer-plano {
  padding: 35px 0;

  color: #b9c7d4;
  background: #020b14;
}

.footer-plano__conteudo {
  display: flex;
  justify-content: space-between;

  gap: 25px;

  font-size: 0.83rem;
}


/* ==========================================================
   14 — WHATSAPP FIXO
========================================================== */

.whatsapp-fixo {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 1100;

  width: 60px;
  height: 60px;

  display: flex;
  align-items: center;
  justify-content: center;

  border-radius: 50%;

  color: var(--branco);
  background: var(--verde-whatsapp);

  box-shadow:
    0 16px 35px
    rgba(20, 145, 68, 0.36);

  font-size: 1.5rem;
  font-weight: 900;
  text-decoration: none;

  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease;
}

.whatsapp-fixo:hover {
  transform:
    translateY(-4px)
    scale(1.04);

  box-shadow:
    0 20px 42px
    rgba(20, 145, 68, 0.45);
}


/* ==========================================================
   15 — RESPONSIVIDADE
========================================================== */

@media (max-width: 1000px) {
  .hero-plano__grid,
  .duas-colunas {
    grid-template-columns: 1fr;
  }

  .grid--4,
  .etapas {
    grid-template-columns:
      repeat(2, minmax(0, 1fr));
  }

  .grid--3 {
    grid-template-columns:
      repeat(2, minmax(0, 1fr));
  }

  .menu-plano a:not(.menu-plano__voltar) {
    display: none;
  }
}

@media (max-width: 700px) {
  :root {
    --container:
      min(1160px, calc(100% - 28px));
  }

  .secao {
    padding: 75px 0;
  }

  .topo-plano__conteudo {
    min-height: 68px;
  }

  .logo-plano__nome {
    display: none;
  }

  .hero-plano {
    padding: 80px 0 70px;
  }

  .hero-plano h1 {
    font-size: 2.4rem;
  }

  .hero-plano__acoes {
    flex-direction: column;
  }

  .hero-plano__acoes .btn {
    width: 100%;
  }

  .card-investimento {
    padding: 28px 23px;
  }

  .grid--2,
  .grid--3,
  .grid--4,
  .etapas {
    grid-template-columns: 1fr;
  }

  .cta-final__conteudo,
  .footer-plano__conteudo {
    flex-direction: column;
    align-items: flex-start;
  }

  .cta-final .btn {
    width: 100%;
  }

  .whatsapp-fixo {
    right: 15px;
    bottom: 15px;

    width: 56px;
    height: 56px;
  }
}

/* ==========================================
   LOGO DA EMPRESA
========================================== */

.logo-plano{
    display:flex;
    align-items:center;
}

.logo-plano__img{
    height:48px;
    width:auto;
    display:block;
    transition:0.3s;
}

.logo-plano__img:hover{
    transform:scale(1.03);
}