:root {
  /* === Brand === */
  --primary: #48a0b0;
  --primary-dark: #2080a0;
  --primary-2: #50a8b8;
  --primary-3: #78c6d0;

  --sand: #b2a79c;

  --bg: #ffffff;
  --surface: #f5fbfd;
  --muted: #eaf6f8;
  --border: #d7edf3;

  --text: #141210;
  --text2: #51606a;

  --radius: 18px;
  --radius-sm: 14px;
  --max: 1120px;

  --shadow: 0 14px 30px rgba(32, 128, 160, 0.14);
  --shadow-soft: 0 10px 22px rgba(32, 128, 160, 0.1);
}

/* ===== Base ===== */
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family:
    ui-sans-serif,
    system-ui,
    -apple-system,
    Segoe UI,
    Roboto,
    Helvetica,
    Arial;
  color: var(--text);
  background: var(--bg);
  line-height: 1.55;
  text-rendering: optimizeLegibility;
}

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

/* Imagens: regra global anti-bugs */
img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* =========================
   HEADER
========================= */
.topbar {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(215, 237, 243, 0.9);
  overflow: hidden;
}

/* (Opcional) padrão subtil tipo brochura
   Se não quiseres, apaga este bloco
*/

.topbar .nav,
.topbar .mobile {
  position: relative;
  z-index: 1;
  background: rgba(255, 255, 255, 0.92);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 14px 0;
  width: 100%;
  max-width: 100vw;
  overflow: hidden;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 900;
  letter-spacing: 0.2px;
  min-width: 180px;
}

.brand-logo {
  height: 34px;
  width: auto;
  display: block;
}

.brand-text {
  font-size: 18px;
}
.accent {
  color: var(--primary-dark);
}

.menu {
  display: flex;
  gap: 8px;
  align-items: center;
  flex-wrap: wrap;
  justify-content: center;
}
.menu a {
  padding: 10px 12px;
  border-radius: 12px;
  color: var(--text2);
  font-weight: 850;
  letter-spacing: 0.1px;
}
.menu a:hover {
  background: var(--muted);
  color: var(--text);
}
.menu a.active {
  background: linear-gradient(
    135deg,
    rgba(72, 160, 176, 0.14),
    rgba(32, 128, 160, 0.1)
  );
  border: 1px solid rgba(72, 160, 176, 0.22);
  color: var(--primary-dark);
}

.cta {
  display: flex;
  gap: 10px;
  align-items: center;
  min-width: 220px;
  justify-content: flex-end;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 16px;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: var(--bg);
  font-weight: 900;
  color: var(--primary-dark);
  transition:
    transform 0.15s ease,
    box-shadow 0.15s ease,
    background 0.15s ease;
}
.btn.primary {
  border-color: transparent;
  color: #fff;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  box-shadow: 0 14px 26px rgba(72, 160, 176, 0.22);
}
.btn:hover {
  transform: translateY(-1px);
}
.btn:active {
  transform: translateY(0);
}

.hamb {
  display: none;
  border: 1px solid var(--border);
  background: #fff;
  border-radius: 14px;
  padding: 10px 12px;
  font-weight: 900;
}

.mobile {
  position: fixed;
  top: 64px; /* altura aproximada da topbar */
  left: 0;
  right: 0;
  bottom: 0;

  background: #fff;
  z-index: 1000;

  padding: 16px;
  display: none;

  overflow-y: auto;
  border-top: 1px solid var(--border);
}

.mobile a {
  display: block;
  padding: 14px 16px;
  margin-bottom: 6px;

  border-radius: 14px;
  color: var(--text2);
  font-weight: 850;
  font-size: 16px;
}

.mobile a:hover {
  background: var(--muted);
  color: var(--text);
}

@media (max-width: 980px) {
  .menu {
    display: none;
  }
  .hamb {
    display: inline-flex;
  }
  .mobile.open {
    display: block;
  }
}

/* =========================
   TYPE
========================= */
h1 {
  margin: 0 0 14px;
  font-size: clamp(36px, 4.4vw, 56px);
  line-height: 1.03;
  letter-spacing: -0.8px;
}
h2 {
  margin: 0 0 12px;
  font-size: 30px;
  letter-spacing: -0.4px;
}
h3 {
  margin: 0 0 8px;
  font-size: 19px;
  letter-spacing: -0.18px;
}

.lead {
  margin: 0;
  color: var(--text2);
  font-weight: 650;
  font-size: 17.5px;
  max-width: 70ch;
}

/* =========================
   SECTIONS
========================= */
main {
  padding: 22px 0 0;
}
main.curso {
  padding: 0px 0 0;
}
.section {
  padding: 72px 0;
}

.section.alt {
  background:
    radial-gradient(
      70% 70% at 30% 10%,
      rgba(120, 198, 208, 0.16),
      rgba(255, 255, 255, 0)
    ),
    linear-gradient(180deg, rgba(72, 160, 176, 0.06), rgba(255, 255, 255, 0));
  border-top: 1px solid rgba(215, 237, 243, 0.9);
  border-bottom: 1px solid rgba(215, 237, 243, 0.9);
}

/* =========================
   HERO
========================= */
.hero {
  padding: 78px 0 54px;
  background:
    radial-gradient(
      60% 60% at 30% 20%,
      rgba(120, 198, 208, 0.26),
      rgba(255, 255, 255, 0)
    ),
    radial-gradient(
      55% 55% at 88% 10%,
      rgba(72, 160, 176, 0.18),
      rgba(255, 255, 255, 0)
    );
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 24px;
  align-items: stretch;
}
@media (max-width: 980px) {
  .hero-grid {
    grid-template-columns: 1fr;
  }
}

/* =========================
   CARDS / GRIDS
========================= */
.card {
  border: 1px solid rgba(215, 237, 243, 0.95);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: var(--shadow);
}

.hero-card {
  padding: 22px;
  background:
    linear-gradient(180deg, rgba(72, 160, 176, 0.12), rgba(255, 255, 255, 0)),
    #fff;
}

.meta {
  color: var(--sand);
  font-weight: 900;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-size: 12px;
  margin: 0 0 10px;
}

.grid3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
@media (max-width: 980px) {
  .grid3 {
    grid-template-columns: 1fr;
  }
}

/* =========================
   FEATURE (base)
========================= */
.feature {
  padding: 22px;
  border-radius: var(--radius);
  border: 1px solid rgba(215, 237, 243, 0.95);
  background: #fff;
  box-shadow: var(--shadow-soft);

  display: flex;
  flex-direction: column;
}

.feature::before {
  content: "";
  display: block;
  width: 60px;
  height: 5px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--primary), var(--primary-3));
  margin: 0 auto 12px; /* centrado */
}

.feature p {
  margin: 0;
  color: var(--text2);
  font-weight: 650;
}

.center {
  text-align: center;
}
.center .lead {
  margin: 0 auto;
}

/* =========================
   SERVIÇOS (FINAL – anti imagens gigantes)
========================= */
.feature.servicos {
  text-align: center;
  gap: 10px;
}

.feature.servicos img {
  width: 100%;
  max-width: 100%;
  height: 220px; /* ajusta 220/240/260 */
  object-fit: cover;
  border-radius: 18px;
  border: 1px solid rgba(215, 237, 243, 0.95);
  margin: 6px 0 8px;
}

.feature.servicos p {
  flex-grow: 1; /* empurra o botão para o fundo */
}

.feature.servicos .btn {
  align-self: center;
  margin-top: 12px;
  width: min(360px, 100%);
}

/* =========================
   CURSOS – Destaque + Botão comprar
========================= */
.featured {
  position: relative;
  border: 2px solid var(--primary);
  box-shadow: 0 20px 40px rgba(72, 160, 176, 0.22);
  transform: translateY(-6px);
  transition:
    transform 0.15s ease,
    box-shadow 0.15s ease;
}
.featured:hover {
  transform: translateY(-8px);
}

.badge {
  position: absolute;
  top: -12px;
  left: 18px;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: #fff;
  font-size: 12px;
  font-weight: 900;
  padding: 6px 12px;
  border-radius: 999px;
  letter-spacing: 0.06em;
  box-shadow: 0 8px 18px rgba(72, 160, 176, 0.35);
  z-index: 5;
}

.feature .btn.buy {
  width: auto;
  align-self: flex-end;
  margin-top: 14px;

  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: #fff;
  border: none;
  padding: 12px 22px;
  border-radius: 999px;

  font-weight: 900;
  font-size: 15px;
  letter-spacing: 0.02em;

  box-shadow: 0 16px 32px rgba(72, 160, 176, 0.28);
}

.feature .btn.buy:hover {
  transform: translateY(-2px);
  box-shadow: 0 22px 44px rgba(72, 160, 176, 0.35);
}

/* =========================
   EQUIPA
========================= */
.team-member {
  text-align: center;
}

.team-member .team-header {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 8px;
  justify-content: center;
  flex-wrap: wrap;
}

.team-photo {
  width: 300px;
  height: 250px;
  border-radius: 21px;
  object-fit: cover;
  flex-shrink: 0;
  border: 1px solid rgba(215, 237, 243, 0.95);
}

/* =========================
   FOOTER
========================= */
.footer {
  margin-top: 44px;
  padding: 28px 0 44px;
  border-top: 1px solid var(--border);
  background: radial-gradient(
    70% 70% at 30% 0%,
    rgba(120, 198, 208, 0.14),
    rgba(255, 255, 255, 0)
  );
}
.foot {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  flex-wrap: wrap;
  color: var(--text2);
  font-weight: 850;
}
.foot-left {
  display: flex;
  align-items: center;
  gap: 10px;
}
.foot-right {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
.foot-right a:hover {
  color: var(--primary-dark);
}

/* =========================
   MODAL
========================= */
.modal {
  display: none;
}
.modal.open {
  display: block;
}

.modal-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(10, 18, 24, 0.55);
  backdrop-filter: blur(3px);
  z-index: 2000;
}

.modal-card {
  position: fixed;
  z-index: 2001;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: min(520px, calc(100% - 26px));
  background: #fff;
  border-radius: 18px;
  padding: 22px;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.25);
  border: 1px solid rgba(215, 237, 243, 0.95);
}

.modal-close {
  position: absolute;
  top: 10px;
  right: 12px;
  width: 40px;
  height: 40px;
  border-radius: 12px;
  border: 1px solid var(--border);
  background: #fff;
  font-size: 22px;
  font-weight: 900;
  color: var(--text2);
  cursor: pointer;
}

.modal-form {
  display: grid;
  gap: 12px;
}

.field span {
  display: block;
  font-weight: 850;
  color: var(--text2);
  margin-bottom: 6px;
}

.field input {
  width: 100%;
  padding: 12px;
  border-radius: 12px;
  border: 1px solid var(--border);
  outline: none;
}

.field input:focus,
.phone-row select:focus {
  border-color: rgba(72, 160, 176, 0.6);
  box-shadow: 0 0 0 4px rgba(72, 160, 176, 0.12);
}

.consent {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  color: var(--text2);
  font-weight: 650;
  font-size: 13.5px;
}
.consent input {
  margin-top: 3px;
}

/* ===== Success state (premium) ===== */
.modal-success {
  text-align: center;
  padding: 6px 4px 0;
  animation: modalPop 0.18s ease-out;
}
@keyframes modalPop {
  from {
    transform: translateY(6px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}
.success-badge {
  width: 64px;
  height: 64px;
  margin: 4px auto 14px;
  border-radius: 18px;
  display: grid;
  place-items: center;
  color: #fff;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  box-shadow: 0 18px 40px rgba(32, 128, 160, 0.28);
  position: relative;
}
.success-badge::after {
  content: "";
  position: absolute;
  inset: -8px;
  border-radius: 22px;
  background: radial-gradient(
    60% 60% at 50% 30%,
    rgba(72, 160, 176, 0.22),
    rgba(255, 255, 255, 0)
  );
  z-index: -1;
}
.success-badge svg {
  width: 30px;
  height: 30px;
}

.success-title {
  margin: 0 0 8px;
  font-size: 26px;
  letter-spacing: -0.3px;
}
.success-text {
  margin: 0 auto 18px;
  color: var(--text2);
  font-weight: 650;
  max-width: 46ch;
}
.success-actions {
  display: flex;
  gap: 10px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 8px;
}
.success-actions .btn {
  min-width: 140px;
}

/* ===== Telefone com indicativo ===== */
.phone-row {
  display: grid;
  grid-template-columns: 140px 1fr;
  gap: 10px;
  align-items: center;
}

.phone-row select {
  width: 100%;
  padding: 12px;
  border-radius: 12px;
  border: 1px solid var(--border);
  background: #fff;
  font-weight: 850;
  color: var(--text);
  appearance: none;
}

.phone-hint {
  display: block;
  margin-top: 6px;
  color: var(--text2);
  font-weight: 650;
  font-size: 12px;
}

@media (max-width: 400px) {
  .phone-row {
    grid-template-columns: 1fr;
  }
}

.feature .btn {
  margin-top: 16px;
}

.menu a[href*="myfxbook"] {
  position: relative;
  color: var(--primary-dark);
}

.menu a[href*="myfxbook"]::after {
  content: "↗";
  font-size: 11px;
  margin-left: 4px;
  opacity: 0.7;
}

/* =========================
   MYFXBOOK EMBED
========================= */
.myfxbook-embed {
  position: relative;
  width: 100%;
  padding-top: 62%; /* altura proporcional */
  overflow: hidden;
  border-radius: 14px;
}

.myfxbook-embed iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
  background: #fff;
}

@media (max-width: 980px) {
  .myfxbook-embed {
    padding-top: 85%;
  }
}
/* ===== Admin polish (usa mesmo style.css) ===== */
.admin-wrap {
  max-width: 980px;
  margin: 0 auto;
}
.admin-table {
  width: 100%;
  border-collapse: collapse;
}
.admin-table th,
.admin-table td {
  padding: 10px;
  border-bottom: 1px solid var(--border);
}
.admin-actions {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

/* ===== Landing Video Gate ===== */
.video-wrap {
  position: relative;
  width: 100%;
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid rgba(215, 237, 243, 0.95);
  background: #000;
  aspect-ratio: 16 / 9;
}

.video-frame {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}

.video-lock {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding: 16px;
  pointer-events: none;
  background: linear-gradient(
    180deg,
    rgba(0, 0, 0, 0) 45%,
    rgba(0, 0, 0, 0.55)
  );
}

.video-lock-card {
  width: min(520px, 100%);
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(215, 237, 243, 0.95);
  border-radius: 16px;
  padding: 12px 14px;
  display: flex;
  gap: 10px;
  align-items: center;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.18);
}

.video-lock-dot {
  width: 12px;
  height: 12px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  box-shadow: 0 10px 20px rgba(32, 128, 160, 0.25);
}

/* =========================
   LANDING DARK (imagem)
========================= */

body.landing {
  background: #070809;
  color: #b8b1a7;
}

body.landing .topbar {
  background: rgba(8, 10, 12, 0.72);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(12px);
}

body.landing .menu a {
  color: rgba(242, 239, 234, 0.78);
}
body.landing .menu a:hover {
  background: rgba(255, 255, 255, 0.05);
  color: #f2efea;
}
body.landing .menu a.active {
  background: rgba(45, 142, 164, 0.12);
  border: 1px solid rgba(45, 142, 164, 0.22);
  color: #9ee6f2;
}

body.landing .btn {
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.02);
  color: #f2efea;
}

body.landing .btn.primary {
  border: 1px solid rgba(45, 142, 164, 0.35);
  background: linear-gradient(
    135deg,
    rgba(20, 24, 28, 0.75),
    rgba(45, 142, 164, 0.88)
  );
  box-shadow: 0 18px 55px rgba(45, 142, 164, 0.22);
}

/* HERO */
.lp-hero {
  padding: 86px 0 54px;
  background:
    radial-gradient(
      1100px 520px at 50% 0%,
      rgba(45, 142, 164, 0.18),
      transparent 60%
    ),
    radial-gradient(
      900px 420px at 20% 70%,
      rgba(216, 210, 200, 0.08),
      transparent 60%
    ),
    linear-gradient(180deg, rgba(0, 0, 0, 0.92), rgba(0, 0, 0, 0.78));
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.lp-hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 26px;
  align-items: center;
}

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

.lp-title {
  margin: 0 0 14px;
  font-size: clamp(44px, 5.2vw, 78px);
  line-height: 0.98;
  letter-spacing: -1.2px;
  color: #d8d2c8;
  text-wrap: balance;
}

.lp-sub {
  margin: 0 0 18px;
  max-width: 60ch;
  color: rgba(242, 239, 234, 0.75);
  font-weight: 650;
  font-size: 18px;
}

.lp-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 28px;
  border-radius: 999px;
  color: #efeae2;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: linear-gradient(
    90deg,
    rgba(25, 28, 32, 0.88),
    rgba(45, 142, 164, 0.78)
  );
  box-shadow: 0 18px 55px rgba(0, 0, 0, 0.45);
  margin: 6px 0 22px;
  font-weight: 800;
}

.lp-cta-row {
  display: flex;
  gap: 14px;
  align-items: center;
  flex-wrap: wrap;
  margin-top: 6px;
}

.lp-buy {
  padding: 13px 22px;
  font-weight: 950;
}

.lp-price {
  display: flex;
  flex-direction: column;
  line-height: 1.05;
  padding: 10px 14px;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.02);
}

.lp-price-label {
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(242, 239, 234, 0.6);
  font-weight: 900;
}

.lp-price-value {
  font-size: 20px;
  color: #f2efea;
  font-weight: 950;
}

.lp-trust {
  display: flex;
  gap: 10px 14px;
  flex-wrap: wrap;
  margin-top: 16px;
  color: rgba(242, 239, 234, 0.66);
  font-weight: 700;
}

.lp-trust-item {
  padding: 8px 12px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.02);
}

/* IMAGEM */
.lp-image-frame {
  position: relative;
  border-radius: 22px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.02);
  box-shadow: 0 26px 90px rgba(0, 0, 0, 0.55);
}

.lp-image-frame img {
  width: 100%;
  height: auto;
  display: block;
}

.lp-image-glow {
  position: absolute;
  inset: -30%;
  background: radial-gradient(
    circle at 50% 30%,
    rgba(45, 142, 164, 0.25),
    transparent 55%
  );
  pointer-events: none;
}

/* CONTEÚDO */
.lp-section {
  padding: 66px 0 82px;
  background:
    radial-gradient(
      1000px 520px at 50% 0%,
      rgba(45, 142, 164, 0.1),
      transparent 60%
    ),
    linear-gradient(180deg, rgba(7, 8, 9, 1), rgba(7, 8, 9, 1));
}

.lp-content {
  display: grid;
  gap: 18px;
}

.lp-card {
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.03),
    rgba(255, 255, 255, 0.01)
  );
  box-shadow: 0 18px 70px rgba(0, 0, 0, 0.45);
  padding: 22px;
}

.lp-card h2 {
  margin: 0 0 12px;
  color: #d8d2c8;
  letter-spacing: -0.3px;
}

.lp-text {
  color: rgba(242, 239, 234, 0.7);
  font-weight: 650;
  line-height: 1.7;
}

.lp-grid3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

@media (max-width: 980px) {
  .lp-grid3 {
    grid-template-columns: 1fr;
  }
}

.lp-mini {
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.02);
  padding: 18px;
  box-shadow: 0 16px 60px rgba(0, 0, 0, 0.35);
}

.lp-mini h3 {
  margin: 0 0 10px;
  color: #d8d2c8;
}

.lp-mini ul {
  margin: 0;
  padding-left: 18px;
  color: rgba(242, 239, 234, 0.7);
  font-weight: 650;
}

.lp-highlight {
  border: 1px solid rgba(45, 142, 164, 0.28);
  box-shadow: 0 24px 90px rgba(45, 142, 164, 0.12);
}

.lp-sub2 {
  margin: 0 0 14px;
  color: rgba(242, 239, 234, 0.7);
  font-weight: 650;
}

.lp-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  align-items: center;
}

/* FAQ */
body.landing details {
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  padding: 12px 14px;
  background: rgba(255, 255, 255, 0.02);
}

body.landing details + details {
  margin-top: 10px;
}

body.landing summary {
  cursor: pointer;
  font-weight: 950;
  color: #f2efea;
}

body.landing details p {
  margin: 10px 0 0;
  color: rgba(242, 239, 234, 0.72);
  font-weight: 650;
}

/* Footer na landing */
body.landing .footer {
  background: transparent;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

body.landing .foot {
  color: rgba(242, 239, 234, 0.6);
}

.modal {
  display: none;
}
.modal.open {
  display: block !important;
}
.modal-backdrop {
  z-index: 9998 !important;
}
.modal-card {
  z-index: 9999 !important;
}
