@font-face {
  font-family: "Intro Rust";
  src: url("../fonts/IntroRust.otf") format("opentype");
  font-weight: 400 900;
  font-style: normal;
  font-display: swap;
}

:root {
  --primary-color: #5a1fc7;
  --primary-hover: #4714a6;
  --primary-light: rgba(90, 31, 199, 0.1);
  --text-dark: #3b2d54;
  --text-muted: #5e546f;
  --bg-cream: #f1efe4;
  --border-color: #d8d5cb;
  --transition-smooth: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

html {
  scroll-behavior: smooth;
}

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

body {
  font-family: "Open Sans", system-ui, -apple-system, sans-serif;
  background-color: #f1efe4;
  color: #2a1f1a;
  min-height: 100vh;
  overflow-x: hidden;
  overflow-y: auto;
  position: relative;
}

body::before {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url('../assets/map-bg.png');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 0.10; /* Reduzido para um tom sutil de fundo */
  z-index: -1;
  pointer-events: none;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* ── Container principal ── */
.landing-container {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  position: relative;
  width: 100%;
  min-height: 100vh;
}

/* ── Seção da landing (fluxo contínuo) ── */
.landing__page {
  position: relative;
  width: 100%;
  min-height: 0;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: stretch;
  overflow: visible;
}

.landing__page--hero {
  padding-bottom: clamp(20px, 3vw, 40px);
}

.landing__page--member {
  padding-top: clamp(16px, 2.5vw, 32px);
  padding-bottom: clamp(40px, 6vw, 72px);
}

.landing__page-header {
  width: 100%;
  max-width: 1360px;
  margin: 0 auto;
  padding: clamp(16px, 2.5vh, 40px) clamp(24px, 5vw, 80px) 0;
  box-sizing: border-box;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  z-index: 5;
}

/* ── Conteúdo Central por Seção ── */
.landing__page-content {
  width: 100%;
  max-width: 1360px;
  margin: 0 auto;
  padding: clamp(8px, 1.5vh, 20px) clamp(24px, 5vw, 80px);
  box-sizing: border-box;
  flex-grow: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 4;
}

/* ── Rodapé Dedicado por Página ── */
.landing__page-footer {
  width: 100%;
  max-width: 1360px;
  margin: 0 auto;
  padding: 0 80px 24px;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 14px;
  z-index: 5;
}

.landing__privacy-link {
  color: var(--primary-color);
  font-family: 'Outfit', sans-serif;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: color 0.2s ease, opacity 0.2s ease;
}

.landing__privacy-link:hover {
  color: #6c2dee;
  opacity: 0.9;
}

.landing__legal-line {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 8px 12px;
}

.landing__legal-copy {
  color: var(--primary-color);
  font-family: 'Outfit', sans-serif;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.landing__legal-sep {
  color: var(--primary-color);
  font-family: 'Outfit', sans-serif;
  font-size: 0.8rem;
  font-weight: 700;
  opacity: 0.45;
  user-select: none;
}

/* ── Layout Hero Grid (Lado a Lado) ── */
.landing__hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  align-items: center;
  width: 100%;
  gap: 60px;
}

/* ── Coluna Esquerda Hero ── */
.landing__hero-left {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  text-align: left;
  width: 100%;
  max-width: 1000px;
}

.landing__header {
  width: 100%;
  margin-bottom: 48px;
}

.landing__branding {
  position: relative;
  z-index: 1;
  width: 100%;
}

.landing__logo-wrapper {
  position: relative;
  width: clamp(840px, 62vw, 1140px);
  aspect-ratio: 689 / 340;
  display: inline-block;
  z-index: 2;
  max-width: 100%;
}

.landing__bg-circles-wrapper {
  display: none;
}

.landing__logo {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

/* ── Texto Hero ── */
.landing__intro {
  width: 100%;
  max-width: 620px;
  margin-bottom: 28px;
}

.landing__headline {
  font-family: "Intro Rust", "League Spartan", system-ui, sans-serif;
  font-size: clamp(2rem, 3.2vw, 3.2rem);
  font-weight: 700;
  text-transform: uppercase;
  color: #5a1fc7;
  line-height: 1.05;
  letter-spacing: -0.01em;
  margin-bottom: clamp(10px, 1.2vh, 18px);
  max-width: 620px;
}

.landing__nowrap {
  white-space: nowrap;
}

.landing__subhead {
  font-family: "Open Sans", system-ui, sans-serif;
  font-size: clamp(1.15rem, 1.5vw, 1.5rem);
  font-weight: 600;
  color: #5a1fc7;
  line-height: 1.35;
  max-width: 580px;
}

/* ── Downloads Badges ── */
.landing__downloads-section {
  width: 100%;
  max-width: 450px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
}

.landing__downloads-section--member {
  align-items: center;
  margin-inline: auto;
  margin-top: 8px;
  animation: fadeInUp 0.8s ease-out 0.6s both;
}

.landing__downloads-section--member .landing__downloads {
  justify-content: center;
}

.landing__downloads-title {
  font-family: "Open Sans", system-ui, sans-serif;
  font-size: 1.15rem;
  font-weight: 600;
  color: #5a1fc7;
  margin-bottom: 2px;
}

.landing__downloads {
  display: flex;
  gap: 16px;
  width: 100%;
  max-width: 450px;
}

.landing__download-btn {
  flex: 1;
  max-width: 217px;
  display: block;
  transition: transform 0.2s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.landing__download-btn:hover {
  transform: translateY(-3px) scale(1.02);
}

.landing__download-btn:active {
  transform: translateY(0) scale(0.98);
}

.landing__download-btn img {
  width: 100%;
  height: auto;
  display: block;
}

/* ── Newsletter Form ── */
.landing__newsletter {
  width: 100%;
  max-width: 450px;
  margin-bottom: 40px;
}

.landing__newsletter-form {
  display: flex;
  flex-direction: column;
  gap: 14px;
  width: 100%;
}

.landing__form-group {
  position: relative;
  width: 100%;
}

.landing__newsletter-form input {
  width: 100%;
  padding: 1.05rem 1.75rem;
  border: 2px solid #5a1fc7;
  border-radius: 999px;
  background-color: #f5efe6;
  font-family: "Open Sans", inherit;
  /* 16px mínimo evita o zoom automático do Safari iOS ao focar o campo */
  font-size: 1.05rem;
  font-weight: 700;
  color: #5a1fc7;
  outline: none;
  text-align: left;
  transition: box-shadow 0.2s ease, border-color 0.2s ease, background-color 0.2s ease, font-size 0.15s ease, color 0.15s ease;
}

.landing__newsletter-form input::placeholder {
  color: #5a1fc7;
  opacity: 1;
  font-weight: 700;
  text-transform: uppercase;
  font-family: "Open Sans", inherit;
  transition: opacity 0.15s ease;
}

.landing__newsletter-form input:focus::placeholder {
  opacity: 0.45;
}

.landing__newsletter-form input:focus,
.landing__newsletter-form input:not(:placeholder-shown) {
  font-size: 1.05rem;
  color: #000000;
  font-weight: 600;
}

.landing__input-label {
  position: absolute;
  top: 8px;
  left: 24px;
  font-family: "Open Sans", inherit;
  font-size: 0.72rem;
  font-weight: 700;
  color: #5a1fc7;
  pointer-events: none;
  transition: opacity 0.15s ease;
  text-transform: uppercase;
}

.landing__newsletter-form input:focus {
  border-color: #5a1fc7;
  box-shadow: 0 0 0 4px rgba(90, 31, 199, 0.15);
}

.landing__newsletter-btn {
  width: 100%;
  padding: 1.05rem 2rem;
  border: none;
  border-radius: 999px;
  background: #5a1fc7;
  color: #ffffff;
  font-family: "Intro Rust", "League Spartan", system-ui, sans-serif;
  font-size: 1.05rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition: background 0.25s ease, transform 0.2s ease, box-shadow 0.25s ease;
  animation: newsletter-btn-pulse 2.8s ease-in-out infinite;
}

.landing__newsletter-btn:hover:not(:disabled) {
  background: #4714a6;
  transform: translateY(-2px) scale(1.01);
  box-shadow: 0 10px 24px rgba(90, 31, 199, 0.3);
  animation: none;
}

.landing__newsletter-btn:active:not(:disabled) {
  transform: translateY(0) scale(0.99);
}

.landing__newsletter-btn:disabled {
  cursor: not-allowed;
  opacity: 0.85;
  animation: none;
}

.landing__newsletter-btn.is-loading {
  animation: none;
  pointer-events: none;
}

.landing__newsletter-btn.is-loading .landing__newsletter-btn-label::after {
  content: '';
  display: inline-block;
  width: 0.9em;
  height: 0.9em;
  margin-left: 0.5em;
  border: 2px solid rgba(255, 255, 255, 0.35);
  border-top-color: #ffffff;
  border-radius: 50%;
  vertical-align: -0.1em;
  animation: newsletter-btn-spin 0.7s linear infinite;
}

.landing__newsletter-btn.is-success {
  background: #2e9e5b;
  animation: newsletter-btn-success 0.55s ease;
  box-shadow: 0 8px 24px rgba(46, 158, 91, 0.35);
}

.landing__newsletter-btn.is-error {
  animation: newsletter-btn-shake 0.45s ease;
}

.landing__newsletter-message {
  min-height: 1.25rem;
  font-family: "Open Sans", inherit;
  font-size: 0.95rem;
  font-weight: 700;
  margin-top: 4px;
  padding-left: 1.2rem;
  text-transform: uppercase;
}

.landing__newsletter-message--success {
  color: #2e9e5b;
}

.landing__newsletter-message--error {
  color: #c0392b;
}

.landing__newsletter-message--info {
  color: #5a1fc7;
}

/* ── Coluna Direita / Mockup Celular ── */
.landing__hero-right {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  width: 100%;
  padding-top: 0;
}

.landing__mockup-wrapper {
  width: 100%;
  max-width: min(550px, 100%);
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: phone-float 6s ease-in-out infinite;
}

.landing__mockup-wrapper--mobile {
  display: none;
}

.landing__phone-mockup {
  width: auto;
  max-width: 100%;
  max-height: min(75vh, 700px);
  height: auto;
  display: block;
  object-fit: contain;
  filter: drop-shadow(0 18px 28px rgba(45, 25, 75, 0.28))
    drop-shadow(0 6px 12px rgba(90, 31, 199, 0.18));
  /* Fix Safari drop-shadow clipping bug during translations/animations */
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
  will-change: transform, filter;
}

/* ── Rodapé com Redes Sociais ── */
.landing__footer {
  width: 100%;
  display: flex;
  justify-content: center;
  padding-bottom: 24px;
  padding-top: 16px;
  z-index: 10;
}

.landing__social-pill {
  background-color: #000000;
  padding: 10px 40px;
  border-radius: 999px;
  display: flex;
  gap: 8px;
  align-items: center;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
  transition: transform 0.3s ease;
}

.landing__social-pill:hover {
  transform: scale(1.02);
}

.landing__social-pill a {
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: color 0.2s ease, transform 0.2s ease, filter 0.2s ease;
  text-decoration: none;
}

.landing__social-pill a svg {
  width: 36px;
  height: 36px;
  display: block;
}

.landing__social-pill a.landing__social-link--tiktok {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.landing__social-pill a.landing__social-link--tiktok img {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: block;
  object-fit: cover;
}

.landing__social-pill a:hover {
  transform: scale(1.18);
}

.landing__social-pill a.landing__social-link--instagram:hover {
  color: #e1306c;
  filter: drop-shadow(0 0 6px rgba(225, 48, 108, 0.6)) drop-shadow(1.5px 1.5px 0px #fcb045) drop-shadow(-1.5px -1.5px 0px #833ab4);
}

.landing__social-pill a.landing__social-link--tiktok:hover {
  filter: drop-shadow(0 0 5px rgba(0, 242, 254, 0.6)) drop-shadow(1px 1px 0px #ff0050) drop-shadow(-1px -1px 0px #00f2fe);
}

.landing__social-pill a.landing__social-link--facebook:hover {
  color: #1877f2;
  filter: drop-shadow(0 0 6px rgba(24, 119, 242, 0.6)) drop-shadow(1.5px 1.5px 0px #00f2fe) drop-shadow(-1.5px -1.5px 0px #4d4dff);
}

.landing__social-pill a.landing__social-link--linkedin:hover {
  color: #0077b5;
  filter: drop-shadow(0 0 6px rgba(0, 119, 181, 0.6)) drop-shadow(1.5px 1.5px 0px #00a0dc) drop-shadow(-1.5px -1.5px 0px #0a66c2);
}

.landing__social-pill a.landing__social-link--youtube:hover {
  color: #ff0000;
  filter: drop-shadow(0 0 6px rgba(255, 0, 0, 0.6)) drop-shadow(1.5px 1.5px 0px #ff9900) drop-shadow(-1.5px -1.5px 0px #ff0055);
}

/* ── Animações ── */
@keyframes phone-float {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-12px);
  }
}

@keyframes newsletter-btn-pulse {
  0%, 100% {
    box-shadow: 0 0 0 0 rgba(90, 31, 199, 0.25);
  }
  50% {
    box-shadow: 0 0 0 10px rgba(90, 31, 199, 0);
  }
}

@keyframes newsletter-btn-spin {
  to {
    transform: rotate(360deg);
  }
}

@keyframes newsletter-btn-success {
  0% {
    transform: scale(1);
  }
  40% {
    transform: scale(1.05);
  }
  100% {
    transform: scale(1);
  }
}

@keyframes newsletter-btn-shake {
  0%, 100% {
    transform: translateX(0);
  }
  20%, 60% {
    transform: translateX(-6px);
  }
  40%, 80% {
    transform: translateX(6px);
  }
}

/* ── Desktop / laptop ── */
@media (min-width: 993px) {
  .landing__page--hero {
    padding-bottom: clamp(12px, 2vh, 28px);
  }

  .landing__page--hero .landing__page-header {
    padding-top: clamp(8px, 1.4vh, 20px);
    padding-bottom: 0;
  }

  .landing__page--hero .landing__logo-wrapper {
    width: clamp(936px, 70vw, 1176px);
    margin-left: calc(-72px - 4vw);
    max-width: 130%;
    margin-bottom: clamp(8px, 1.2vh, 18px);
  }

  .landing__page--hero .landing__page-content {
    padding-top: 0;
    margin-top: 0;
    align-items: flex-start;
  }

  .landing__hero-grid {
    align-items: center;
    gap: clamp(24px, 3vw, 48px);
    grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
  }

  .landing__hero-left {
    max-width: 1000px;
  }

  .landing__intro {
    margin-bottom: clamp(14px, 2vh, 22px);
  }

  .landing__hero-right {
    align-self: center;
    padding-top: 10vh;
  }

  .landing__mockup-wrapper {
    max-width: min(700px, 100%);
  }

  .landing__phone-mockup {
    max-height: min(90vh, 900px);
  }
}

/* Telas largas */
@media (min-width: 1400px) {
  .landing__page--hero .landing__logo-wrapper {
    width: clamp(1080px, 66vw, 1320px);
    margin-left: calc(-88px - 4vw);
    max-width: 130%;
    margin-bottom: clamp(10px, 1.4vh, 20px);
  }

  .landing__page--hero .landing__page-content {
    margin-top: 0;
  }

  .landing__phone-mockup {
    max-height: min(88vh, 950px);
  }
}

/* Notebooks / altura baixa (ex.: 1772×792) */
@media (min-width: 993px) and (max-height: 860px) {
  .landing__page--hero .landing__page-header {
    padding-top: 6px;
  }

  .landing__page--hero .landing__logo-wrapper {
    width: clamp(768px, 58vw, 984px);
    margin-left: calc(-56px - 4vw);
    max-width: 130%;
    margin-bottom: clamp(4px, 0.8vh, 12px);
  }

  .landing__page--hero .landing__page-content {
    margin-top: 0;
  }

  .landing__headline {
    font-size: clamp(1.85rem, 2.4vw, 2.5rem);
    margin-bottom: 8px;
  }

  .landing__subhead {
    font-size: clamp(1.05rem, 1.2vw, 1.25rem);
  }

  .landing__intro {
    margin-bottom: 12px;
  }

  .landing__hero-grid {
    gap: 20px;
  }

  .landing__mockup-wrapper {
    max-width: min(550px, 100%);
  }

  .landing__phone-mockup {
    max-height: min(78vh, 680px);
  }

  .landing__page--member {
    padding-top: 12px;
    padding-bottom: 40px;
  }

  .hero-subtitle {
    margin-bottom: 28px;
  }

  .features-grid {
    margin-bottom: 32px;
  }
}

/* ── Tablet / mobile largo ── */
@media (max-width: 992px) {
  .landing__hero-grid {
    grid-template-columns: 1fr;
    gap: 28px;
    text-align: center;
    width: 100%;
  }

  .landing__hero-left {
    align-items: center;
    text-align: center;
    max-width: 100%;
  }

  .landing__page-header {
    padding: clamp(16px, 3vh, 28px) clamp(16px, 4vw, 32px) 0;
    justify-content: center;
  }

  .landing__page-content {
    padding: clamp(12px, 2vh, 24px) clamp(16px, 4vw, 32px);
  }

  .landing__logo-wrapper {
    display: block;
    width: 100%;
    max-width: min(900px, 100%);
    aspect-ratio: 689 / 340;
    margin: 0 auto clamp(8px, 1.5vh, 16px);
  }

  .landing__intro {
    margin-bottom: clamp(24px, 4vh, 36px);
  }

  .landing__headline {
    font-size: clamp(1.8rem, 5.5vw, 2.35rem);
    max-width: 620px;
    margin-inline: auto;
  }

  .landing__subhead {
    max-width: 540px;
    margin-inline: auto;
    font-size: clamp(1.1rem, 2.8vw, 1.35rem);
  }

  .landing__newsletter {
    margin: 0 auto clamp(28px, 5vh, 48px);
    width: 100%;
    max-width: 420px;
  }

  .landing__downloads-section {
    align-items: center;
    margin-inline: auto;
    margin-bottom: 0;
  }

  .landing__downloads {
    justify-content: center;
  }

  .landing__hero-right {
    display: none;
  }

  .landing__mockup-wrapper--mobile {
    display: block;
    margin: clamp(8px, 2vh, 20px) auto clamp(28px, 4vh, 40px);
    max-width: min(280px, 58vw);
    width: 100%;
  }

  .landing__mockup-wrapper--mobile .landing__phone-mockup {
    width: 100%;
    max-width: 100%;
    max-height: none;
    height: auto;
  }

  .landing__page-footer {
    padding-top: 4px;
    padding-bottom: calc(24px + env(safe-area-inset-bottom));
    padding-left: 24px;
    padding-right: 24px;
  }

  .landing__legal-line {
    width: 100%;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 6px;
    text-align: center;
  }

  .landing__legal-copy,
  .landing__privacy-link {
    text-align: center;
    font-size: 0.68rem;
    letter-spacing: 0.04em;
  }

  .landing__legal-copy {
    white-space: nowrap;
  }

  .landing__legal-sep {
    display: none;
  }

  .landing__social-pill {
    padding: 10px 32px;
    gap: 12px;
  }

  .landing__social-pill a svg {
    width: 22px;
    height: 22px;
  }

  .landing__social-pill a.landing__social-link--tiktok {
    width: 22px;
    height: 22px;
  }

  .landing__social-pill a.landing__social-link--tiktok img {
    width: 22px;
    height: 22px;
    border-radius: 50%;
    display: block;
    object-fit: cover;
  }
}

/* ── Página de status (descadastro newsletter) ── */
.landing--status {
  justify-content: center;
  min-height: 100vh;
  padding-top: clamp(48px, 8vw, 96px);
  padding-bottom: clamp(48px, 8vw, 96px);
  display: flex;
  flex-direction: column;
  align-items: center;
}

.landing img.landing__status-brand {
  width: min(220px, 58vw);
  max-width: 220px;
  height: auto;
  margin-top: 0;
  margin-bottom: clamp(32px, 5vw, 48px);
}

.landing__status {
  padding-top: 0;
  padding-bottom: 0;
}

.landing__status-panel {
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 28rem;
  margin-inline: auto;
}

.landing__status-panel[hidden] {
  display: none !important;
}

.landing__status-message {
  font-family: "Open Sans", inherit;
  font-size: clamp(1.15rem, 2.5vw, 1.65rem);
  font-weight: 600;
  font-style: italic;
  line-height: 1.45;
  color: #5a1fc7;
  margin-bottom: clamp(28px, 4vw, 40px);
  text-align: center;
}

.landing__status-message--error {
  color: #c0392b;
}

.landing__newsletter-title {
  font-family: "Intro Rust", "League Spartan", system-ui, sans-serif;
  font-size: clamp(2rem, 3.2vw, 2.8rem);
  font-weight: 700;
  text-transform: uppercase;
  color: #5a1fc7;
  text-align: center;
  margin-bottom: 1rem;
}

.landing__newsletter-title--error {
  color: #c0392b;
}

a.landing__newsletter-btn.landing__status-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  max-width: 28rem;
  text-decoration: none;
  text-align: center;
  animation: none;
}

/* ==========================================================================
   ── Estilos da Página de Membro (lp-plus) ──
   ========================================================================== */

.hero-container {
    max-width: 1100px;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.hero-title {
    font-family: "Intro Rust", "League Spartan", system-ui, sans-serif;
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    font-weight: 700;
    color: var(--primary-color);
    letter-spacing: -0.01em;
    line-height: 1.2;
    margin-bottom: 24px;
    text-transform: uppercase;
    animation: fadeInDown 0.8s ease-out;
}

.hero-subtitle {
    font-size: clamp(0.95rem, 1.8vw, 1.25rem);
    font-weight: 400;
    color: var(--primary-color);
    max-width: 860px;
    line-height: 1.7;
    margin-bottom: 40px;
    animation: fadeIn 1s ease-out 0.2s both;
}

/* Features Grid */
.features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: clamp(16px, 2.5vw, 36px);
    width: 100%;
    margin-bottom: 48px;
    animation: fadeIn 1s ease-out 0.4s both;
}

.feature-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 16px;
    transition: var(--transition-smooth);
}

.plus-icon {
    color: var(--primary-color);
    width: 64px;
    height: 64px;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.plus-icon svg {
    width: 100%;
    height: 100%;
}

.feature-card:hover .plus-icon {
    transform: scale(1.2) rotate(90deg);
}

.feature-text {
    font-size: 1.05rem;
    font-weight: 500;
    color: var(--primary-color);
    line-height: 1.5;
    max-width: 250px;
}

.cta-container {
    display: flex;
    justify-content: center;
    width: 100%;
    animation: fadeInUp 0.8s ease-out 0.6s both;
}

.cta-button {
    font-family: "Intro Rust", "League Spartan", system-ui, sans-serif;
    font-size: 1.15rem;
    font-weight: 700;
    color: #ffffff;
    background-color: var(--primary-color);
    border: none;
    border-radius: 50px;
    padding: 16px 48px;
    cursor: pointer;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    box-shadow: 0 8px 24px rgba(90, 31, 192, 0.25);
    transition: var(--transition-smooth);
}

.cta-button:hover {
    background-color: var(--primary-hover);
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 12px 30px rgba(90, 31, 192, 0.4);
}

.cta-button:active {
    transform: translateY(-1px) scale(1.01);
    box-shadow: 0 6px 16px rgba(90, 31, 192, 0.3);
}

/* Lead Modal Styles */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(30, 20, 45, 0.4);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.modal-overlay.active {
    opacity: 1;
    pointer-events: auto;
}

.modal-card {
    background-color: var(--bg-cream);
    background-image: radial-gradient(rgba(255, 255, 255, 0.3) 1px, transparent 1px), url('../assets/bg-pattern-email.png');
    background-size: 20px 20px, 450px;
    background-position: center, center;
    background-repeat: repeat, no-repeat;
    width: 92%;
    max-width: 520px;
    border-radius: 28px;
    box-shadow: 0 24px 60px rgba(45, 25, 75, 0.25);
    border: 1px solid rgba(255, 255, 255, 0.4);
    position: relative;
    overflow: hidden;
    transform: scale(0.9) translateY(30px);
    transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.modal-overlay.active .modal-card {
    transform: scale(1) translateY(0);
}

.modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: none;
    border: none;
    color: var(--text-muted);
    font-size: 32px;
    cursor: pointer;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    z-index: 10;
    transition: var(--transition-smooth);
}

.modal-close:hover {
    color: var(--primary-color);
    background-color: rgba(90, 31, 192, 0.08);
}

.modal-content {
    padding: 48px 40px;
}

.modal-form-view {
    transition: opacity 0.3s ease;
}

.modal-title {
    font-family: "Intro Rust", "League Spartan", system-ui, sans-serif;
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-color);
    text-transform: uppercase;
    letter-spacing: -0.01em;
    margin-bottom: 12px;
}

.modal-subtitle {
    font-family: "Open Sans", system-ui, sans-serif;
    font-size: 0.95rem;
    font-weight: 400;
    color: var(--primary-color);
    line-height: 1.6;
    margin-bottom: 32px;
}

/* Floating Input Fields — alinhados ao padrão da landing */
.lead-form.landing__newsletter-form {
    gap: 14px;
}

.lead-form .landing__form-group {
    margin-bottom: 0;
}

.lead-form .landing__newsletter-form input,
.lead-form input[type="text"],
.lead-form input[type="email"] {
    width: 100%;
    padding: 1.35rem 1.5rem 0.65rem 1.5rem;
    border: 2px solid #5a1fc7;
    border-radius: 999px;
    background-color: #f5efe6;
    font-family: "Open Sans", inherit;
    /* 16px mínimo evita o zoom automático do Safari iOS ao focar o campo */
    font-size: 1rem;
    font-weight: 700;
    color: #5a1fc7;
    outline: none;
    text-align: left;
    transition: box-shadow 0.2s ease, border-color 0.2s ease, background-color 0.2s ease, font-size 0.15s ease, color 0.15s ease;
    text-transform: uppercase;
}

.lead-form input:focus,
.lead-form input:not(:placeholder-shown):not(:disabled) {
    font-size: 1.15rem;
    color: #000000;
    font-weight: 400;
}

.lead-form input:focus {
    border-color: #5a1fc7;
    box-shadow: 0 0 0 4px rgba(90, 31, 199, 0.15);
}

.lead-form .landing__input-label {
    position: absolute;
    top: 8px;
    left: 24px;
    font-family: "Open Sans", inherit;
    font-size: 0.72rem;
    font-weight: 700;
    color: #5a1fc7;
    pointer-events: none;
    text-transform: uppercase;
}

.currency-field {
    position: relative;
    padding-top: 1.55rem;
}

.lead-form .currency-field-label.landing__input-label {
    position: absolute;
    top: 0;
    left: 8px;
    margin-bottom: 0;
    padding-left: 0;
    display: block;
}

.currency-options {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
}

.currency-option {
    font-family: "Open Sans", inherit;
    font-size: 0.85rem;
    font-weight: 700;
    color: #5a1fc7;
    background-color: #f5efe6;
    border: 2px solid #5a1fc7;
    border-radius: 999px;
    padding: 0.95rem 0.5rem;
    cursor: pointer;
    text-transform: uppercase;
    transition: background 0.2s ease, color 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.currency-option:hover {
    border-color: #5a1fc7;
    color: #5a1fc7;
    box-shadow: 0 0 0 4px rgba(90, 31, 199, 0.12);
}

.currency-option.active {
    color: #ffffff;
    background-color: #5a1fc7;
    border-color: #5a1fc7;
    box-shadow: 0 0 0 4px rgba(90, 31, 199, 0.15);
}

.lead-form input:disabled {
    opacity: 0.55;
    cursor: not-allowed;
    background-color: #f5efe6;
}

/* Custom Checkbox */
.form-group-checkbox {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 32px;
}

.form-group-checkbox input[type="checkbox"] {
    width: 20px;
    height: 20px;
    border: 2px solid var(--border-color);
    border-radius: 6px;
    accent-color: var(--primary-color);
    cursor: pointer;
    margin-top: 2px;
    flex-shrink: 0;
}

.form-group-checkbox label {
    font-size: 0.9rem;
    color: var(--text-muted);
    cursor: pointer;
    user-select: none;
    line-height: 1.4;
}

/* Form Submit Button — mesmo padrão do botão da landing */
.lead-form .submit-button.landing__newsletter-btn {
    margin-top: 4px;
    animation: none;
}

.lead-form .submit-button.landing__newsletter-btn:hover:not(:disabled) {
    animation: none;
}

.submit-button {
    width: 100%;
    padding: 1.05rem 2rem;
    background-color: #5a1fc7;
    border: none;
    border-radius: 999px;
    color: #ffffff;
    font-family: "Open Sans", inherit;
    font-size: 1.05rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    cursor: pointer;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: background 0.25s ease, transform 0.2s ease, box-shadow 0.25s ease;
}

.submit-button:hover {
    background-color: #4714a6;
    transform: translateY(-2px) scale(1.01);
    box-shadow: 0 10px 24px rgba(90, 31, 199, 0.3);
}

.submit-button:active {
    transform: translateY(0) scale(0.99);
}

/* Spinner Loader */
.button-loader {
    width: 20px;
    height: 20px;
    border: 3px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    border-top-color: #ffffff;
    animation: spin 0.8s linear infinite;
    display: none;
    position: absolute;
}

.submit-button.loading .button-text {
    opacity: 0;
}

.submit-button.loading .button-loader {
    display: block;
}

/* Modal Success State */
.modal-success-view {
    display: none;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 20px 0;
    opacity: 0;
    transform: translateY(10px);
    transition: opacity 0.4s ease, transform 0.4s ease;
}

.modal-success-view.active {
    display: flex;
    opacity: 1;
    transform: translateY(0);
}

.success-icon-container {
    width: 72px;
    height: 72px;
    background-color: rgba(90, 31, 192, 0.08);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    margin-bottom: 24px;
}

.success-icon-container svg {
    width: 36px;
    height: 36px;
}

.success-title {
    font-family: "Intro Rust", "League Spartan", system-ui, sans-serif;
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--primary-color);
    text-transform: uppercase;
    letter-spacing: -0.01em;
    margin-bottom: 16px;
}

.success-message {
    font-family: "Open Sans", system-ui, sans-serif;
    font-size: 0.95rem;
    font-weight: 400;
    color: var(--primary-color);
    line-height: 1.6;
    margin-bottom: 32px;
}

.close-success-button {
    font-family: "Open Sans", system-ui, sans-serif;
    font-weight: 700;
    font-size: 0.95rem;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: var(--primary-color);
    background-color: transparent;
    border: 2px solid var(--primary-color);
    border-radius: 50px;
    padding: 10px 36px;
    cursor: pointer;
    transition: var(--transition-smooth);
}

.close-success-button:hover {
    background-color: var(--primary-color);
    color: #ffffff;
    box-shadow: 0 6px 16px rgba(90, 31, 192, 0.2);
}

/* Animations */
@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

/* Responsive Media Queries para a Seção de Membros */
@media (min-width: 1025px) and (max-width: 1200px) {
    .hero-title {
        font-size: 2.4rem;
    }
}

@media (max-width: 1024px) {
    .hero-title {
        font-size: clamp(1.7rem, 4.5vw, 2.1rem);
        margin-top: 10px;
    }

    .hero-subtitle {
        font-size: clamp(0.95rem, 2.4vw, 1.1rem);
        margin-bottom: clamp(28px, 5vw, 40px);
    }

    .features-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: clamp(20px, 4vw, 32px) clamp(12px, 2vw, 20px);
        margin-bottom: clamp(32px, 5vw, 48px);
    }

    .feature-card {
        padding: 8px;
    }
    
    .feature-text {
        font-size: 0.95rem;
    }

    .modal-content {
        padding: 40px 24px;
    }

    .modal-card {
        width: min(100%, 520px);
        max-height: min(92vh, 900px);
    }
}

@media (max-width: 580px) {
    .hero-title {
        font-size: 1.65rem;
    }

    .hero-subtitle {
        font-size: 0.98rem;
        line-height: 1.6;
    }

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

    .feature-card {
        padding: 0;
    }

    .plus-icon {
        margin-bottom: 12px;
        width: 38px;
        height: 38px;
    }

    .cta-button {
        padding: 14px 36px;
        font-size: 1.05rem;
        width: 100%;
        max-width: 320px;
    }

}

/* Modal Tabs */
.modal-tabs {
    display: flex;
    gap: 12px;
    margin-bottom: 24px;
    border-bottom: 2px solid var(--border-color);
    padding-bottom: 8px;
}

.modal-tab {
    background: none;
    border: none;
    font-family: 'Outfit', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-muted);
    cursor: pointer;
    padding: 6px 12px;
    border-radius: 8px;
    transition: var(--transition-smooth);
}

.modal-tab.active {
    color: var(--primary-color);
    background-color: var(--primary-light);
}

.modal-tab:hover:not(.active) {
    color: var(--primary-color);
}

/* ── Mobile: fluxo contínuo, centralizado e sem sobreposições ── */
@media (max-width: 580px) {
  html,
  body {
    width: 100%;
    overflow-x: hidden;
  }

  .landing-container,
  .landing__page,
  .landing__page-content,
  .landing__hero-grid,
  .landing__hero-left,
  .hero-container {
    width: 100%;
    max-width: 100%;
  }

  .landing__page {
    min-height: auto;
    overflow: visible;
  }

  .landing__page--hero {
    padding-bottom: 24px;
    overflow: hidden;
  }

  .landing__page--member {
    padding: 24px 0 56px;
  }

  .landing__page-header {
    justify-content: center;
    padding: clamp(48px, 10vh, 72px) 20px 0;
    text-align: center;
    overflow: visible;
  }

  .landing__logo-wrapper {
    width: calc(100% + 140px);
    max-width: calc(100% + 140px);
    margin-inline: -70px;
    margin-bottom: clamp(8px, 1.5vh, 16px);
    transform: translateX(19vw);
  }

  .landing__mockup-wrapper--mobile {
    width: min(250px, 68vw);
    max-width: min(250px, 68vw);
    margin: clamp(8px, 2vh, 16px) auto clamp(28px, 5vh, 40px);
  }

  .landing__mockup-wrapper--mobile .landing__phone-mockup {
    width: 100%;
    max-width: 100%;
    height: auto;
  }

  .landing__page-content {
    display: block;
    padding: 0 24px 0;
  }

  .landing__hero-grid {
    display: block;
  }

  .landing__hero-left,
  .landing__intro,
  .landing__newsletter,
  .landing__newsletter-form,
  .hero-container,
  .landing__downloads-section--member {
    margin-inline: auto;
    text-align: center;
  }

  .landing__intro {
    margin-bottom: 32px;
  }

  .landing__headline {
    max-width: 340px;
    margin-inline: auto;
    font-size: clamp(1.75rem, 8vw, 2.15rem);
    line-height: 1.08;
  }

  .landing__nowrap {
    white-space: normal;
  }

  .landing__subhead {
    max-width: 340px;
    margin-inline: auto;
    font-size: 1.08rem;
    line-height: 1.45;
  }

  .landing__newsletter {
    width: 100%;
    max-width: 360px;
    margin: 0 auto;
  }

  .landing__newsletter-form {
    width: 100%;
  }

  .landing__page--member .landing__page-content {
    padding-inline: 24px;
  }

  .hero-title {
    max-width: 350px;
    margin: 0 auto 20px;
    font-size: 1.75rem;
    line-height: 1.15;
    text-align: center;
  }

  .hero-subtitle {
    max-width: 350px;
    margin: 0 auto 38px;
    font-size: 1rem;
    line-height: 1.6;
    text-align: center;
  }

  .features-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 36px;
    width: 100%;
    margin: 0 auto 48px;
  }

  .feature-card {
    width: 100%;
    max-width: 330px;
    margin-inline: auto;
    padding: 0;
  }

  .plus-icon {
    width: 56px;
    height: 56px;
    margin: 0 auto 14px;
  }

  .feature-text {
    max-width: 300px;
    margin-inline: auto;
    font-size: 1rem;
    line-height: 1.5;
    text-align: center;
  }

  .landing__downloads-section--member {
    width: 100%;
    max-width: 360px;
    margin-top: 0;
  }

  .landing__downloads-title {
    width: 100%;
    text-align: center;
  }

  .landing__downloads {
    width: 100%;
    max-width: 360px;
    align-items: center;
    justify-content: center;
    gap: 10px;
  }

  .landing__download-btn {
    min-width: 0;
    max-width: 175px;
  }

  .landing__page-footer {
    width: 100%;
    padding: 20px 24px calc(28px + env(safe-area-inset-bottom));
  }

  .landing__social-pill {
    max-width: 100%;
  }

  .landing__legal-copy,
  .landing__privacy-link {
    width: 100%;
    line-height: 1.45;
    font-size: 0.62rem;
    letter-spacing: 0.03em;
  }

  .landing__legal-copy {
    white-space: nowrap;
  }

  .modal-card {
    width: calc(100% - 32px);
    max-height: calc(100dvh - 32px);
    overflow-y: auto;
  }

  .modal-title {
    font-size: clamp(1.1rem, 5.8vw, 1.55rem);
    white-space: nowrap;
  }

  .modal-content {
    padding: 44px 20px 28px;
  }

  .landing__newsletter-btn,
  .submit-button {
    font-size: 0.9rem;
    padding: 0.9rem 1.2rem;
  }

  .currency-option {
    font-size: 0.75rem;
    padding: 0.8rem 0.3rem;
  }
}