/* ============================================================
   VELORA — CSS GLOBAL
   ============================================================ */

:root {
  --bg:        #07070f;
  --bg2:       #0d0d1a;
  --bg3:       #12121f;
  --card:      rgba(255,255,255,0.04);
  --border:    rgba(255,255,255,0.08);
  --border2:   rgba(255,255,255,0.12);
  --primary:   #9333ea;
  --primary2:  #7c22d4;
  --secondary: #ec4899;
  --grad:      linear-gradient(135deg, #9333ea, #ec4899);
  --grad2:     linear-gradient(135deg, #6d28d9, #be185d);
  --text:      #f8f8ff;
  --text2:     #a1a1aa;
  --text3:     #71717a;
  --success:   #22c55e;
  --error:     #ef4444;
  --warning:   #f59e0b;
  --radius:    12px;
  --radius-lg: 20px;
  --shadow:    0 8px 32px rgba(0,0,0,0.4);
  --shadow-lg: 0 20px 60px rgba(0,0,0,0.6);
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', -apple-system, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

a { color: var(--primary); text-decoration: none; transition: opacity .2s; }
a:hover { opacity: .8; }
img { max-width: 100%; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

/* ============================================================
   SCROLLBAR
   ============================================================ */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--bg2); }
::-webkit-scrollbar-thumb { background: var(--border2); border-radius: 3px; }

/* ============================================================
   CONTAINER
   ============================================================ */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .6rem 1.4rem;
  border-radius: 50px;
  font-size: .9rem;
  font-weight: 600;
  transition: all .2s ease;
  white-space: nowrap;
}

.btn-primary {
  background: var(--grad);
  color: #fff;
  box-shadow: 0 4px 20px rgba(147,51,234,.3);
}
.btn-primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 8px 30px rgba(147,51,234,.45);
  opacity: 1;
}

.btn-ghost {
  background: var(--card);
  color: var(--text);
  border: 1px solid var(--border2);
  backdrop-filter: blur(10px);
}
.btn-ghost:hover { background: var(--border); opacity: 1; }

.btn-lg { padding: .9rem 2rem; font-size: 1rem; }
.btn-sm { padding: .4rem 1rem; font-size: .8rem; }
.btn-full { width: 100%; justify-content: center; }
.btn-loader { letter-spacing: 4px; animation: blink 1s infinite; }

@keyframes blink { 0%,100%{opacity:1} 50%{opacity:.3} }

/* ============================================================
   LOGO
   ============================================================ */
.logo {
  display: inline-flex;
  align-items: center;
  gap: .3rem;
  font-size: 1.6rem;
  font-weight: 900;
  color: var(--text);
  text-decoration: none;
}
.logo:hover { opacity: 1; }
.logo-icon {
  background: var(--grad);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.logo-text { color: var(--text); }

/* ============================================================
   GRADIENT TEXT
   ============================================================ */
.gradient-text {
  background: var(--grad);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ============================================================
   BLOBS
   ============================================================ */
.hero-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
  z-index: 0;
}
.blob-1 {
  width: 600px; height: 600px;
  background: rgba(147,51,234,.15);
  top: -200px; left: -200px;
}
.blob-2 {
  width: 500px; height: 500px;
  background: rgba(236,72,153,.1);
  bottom: -100px; right: -150px;
}
.blob-3 {
  width: 300px; height: 300px;
  background: rgba(109,40,217,.2);
  top: 50%; left: 50%; transform: translate(-50%,-50%);
}
.blob-cta-1 { width:400px;height:400px;background:rgba(147,51,234,.2);top:-100px;left:-100px; }
.blob-cta-2 { width:300px;height:300px;background:rgba(236,72,153,.15);bottom:-50px;right:-50px; }

/* ============================================================
   NAV
   ============================================================ */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: rgba(7,7,15,.85);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
}
.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 1rem 1.5rem;
  display: flex;
  align-items: center;
  gap: 2rem;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  margin-left: auto;
}
.nav-links a { color: var(--text2); font-size: .95rem; font-weight: 500; }
.nav-links a:not(.btn):hover { color: var(--text); opacity: 1; }
.nav-mobile-toggle { display:none; font-size:1.5rem; color:var(--text); margin-left:auto; }
.nav-mobile-menu {
  display: none;
  flex-direction: column;
  gap: 1rem;
  padding: 1rem 1.5rem;
  border-top: 1px solid var(--border);
}
.nav-mobile-menu.open { display: flex; }

/* ============================================================
   LANDING HERO
   ============================================================ */
.landing-body { overflow-x: hidden; }

.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  padding: 8rem 1.5rem 5rem;
  overflow: hidden;
}
.hero-bg { position: absolute; inset: 0; z-index: 0; }

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 620px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  background: var(--card);
  border: 1px solid var(--border2);
  padding: .4rem 1rem;
  border-radius: 50px;
  font-size: .85rem;
  color: var(--text2);
  margin-bottom: 1.5rem;
  backdrop-filter: blur(10px);
}
.badge-dot {
  width: 8px; height: 8px;
  background: var(--success);
  border-radius: 50%;
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%,100%{box-shadow:0 0 0 0 rgba(34,197,94,.4)}
  50%{box-shadow:0 0 0 6px rgba(34,197,94,0)}
}

.hero-title {
  font-size: clamp(2.8rem, 6vw, 5rem);
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: -.03em;
  margin-bottom: 1.5rem;
}
.hero-subtitle {
  font-size: 1.15rem;
  color: var(--text2);
  max-width: 500px;
  margin-bottom: 2.5rem;
}
.hero-cta { display: flex; gap: 1rem; flex-wrap: wrap; margin-bottom: 3rem; }

.hero-stats {
  display: flex;
  align-items: center;
  gap: 2rem;
}
.stat { display: flex; flex-direction: column; gap: .2rem; }
.stat-value { font-size: 1.5rem; font-weight: 800; background: var(--grad); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.stat-label { font-size: .8rem; color: var(--text3); text-transform: uppercase; letter-spacing: .05em; }
.stat-divider { width: 1px; height: 40px; background: var(--border2); }

/* Floating cards */
.hero-cards { position: absolute; right: 5%; top: 50%; transform: translateY(-50%); display: flex; flex-direction: column; gap: 1rem; z-index: 1; }
.floating-card {
  background: rgba(13,13,26,.8);
  backdrop-filter: blur(20px);
  border: 1px solid var(--border2);
  border-radius: var(--radius);
  padding: 1rem 1.25rem;
  display: flex;
  align-items: center;
  gap: .75rem;
  font-size: .875rem;
  color: var(--text2);
  box-shadow: var(--shadow);
  animation: float 3s ease-in-out infinite;
}
.card-1 { animation-delay: 0s; }
.card-2 { animation-delay: .5s; font-size: .8rem; color: var(--success); }
.card-3 { animation-delay: 1s; flex-direction: column; }
@keyframes float {
  0%,100%{transform:translateY(0)}
  50%{transform:translateY(-8px)}
}
.fcard-avatar { width:36px;height:36px;border-radius:50%; flex-shrink:0; }
.fcard-name { font-weight:600; color:var(--text); font-size:.85rem; }
.fcard-val { color:var(--success); font-weight:700; font-size:.9rem; }
.fcard-chart { display:flex; align-items:flex-end; gap:4px; height:40px; }
.bar { width:8px; border-radius:4px 4px 0 0; background:var(--grad); }

/* ============================================================
   SECTIONS
   ============================================================ */
.section { padding: 6rem 0; }
.section-dark { background: var(--bg2); }
.section-cta { position: relative; overflow: hidden; }

.section-header { text-align: center; margin-bottom: 4rem; }
.section-tag {
  display: inline-block;
  background: rgba(147,51,234,.15);
  color: var(--primary);
  border: 1px solid rgba(147,51,234,.3);
  padding: .35rem .9rem;
  border-radius: 50px;
  font-size: .8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .05em;
  margin-bottom: 1rem;
}
.section-title { font-size: clamp(1.8rem,4vw,2.8rem); font-weight: 800; margin-bottom: .75rem; }
.section-desc { color: var(--text2); font-size: 1.05rem; }

/* Steps */
.steps-grid { display: grid; grid-template-columns: repeat(auto-fit,minmax(240px,1fr)); gap: 1.5rem; }
.step-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2rem;
  position: relative;
  transition: border-color .3s, transform .3s;
}
.step-card:hover { border-color: rgba(147,51,234,.4); transform: translateY(-4px); }
.step-num { font-size: .75rem; font-weight: 800; color: var(--text3); letter-spacing: .1em; margin-bottom: .75rem; }
.step-icon { font-size: 2rem; margin-bottom: 1rem; }
.step-card h3 { font-size: 1.1rem; font-weight: 700; margin-bottom: .5rem; }
.step-card p { color: var(--text2); font-size: .9rem; line-height: 1.6; }

/* Creator split */
.creator-split { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; }
.creator-text .section-title { text-align: left; }
.feature-list { list-style: none; display: flex; flex-direction: column; gap: .9rem; margin: 1.5rem 0 2rem; }
.feature-list li { display: flex; align-items: flex-start; gap: .75rem; }
.feature-icon { background: var(--grad); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; font-weight: 800; flex-shrink: 0; }
.feature-list li div { color: var(--text2); font-size: .95rem; }
.feature-list li strong { color: var(--text); }

/* Phone mockup */
.phone-mockup {
  background: var(--bg3);
  border: 1px solid var(--border2);
  border-radius: 40px;
  padding: 1.5rem;
  max-width: 300px;
  margin: 0 auto;
  box-shadow: var(--shadow-lg);
}
.phone-screen { background: var(--bg); border-radius: 28px; padding: 1.5rem; overflow: hidden; }
.phone-profile { text-align: center; margin-bottom: 1rem; }
.phone-avatar { width: 70px; height: 70px; border-radius: 50%; background: var(--grad); margin: 0 auto 0.5rem; }
.phone-name { font-weight: 700; font-size: .95rem; }
.phone-subs { color: var(--text3); font-size: .75rem; }
.phone-price { color: var(--primary); font-weight: 700; margin: .4rem 0; }
.phone-btn { background: var(--grad); color: #fff; border: none; padding: .5rem 1.5rem; border-radius: 50px; font-size: .8rem; font-weight: 600; cursor: pointer; }
.phone-grid { display: grid; grid-template-columns: 1fr 1fr; gap: .5rem; margin-top: 1rem; }
.phone-thumb { height: 80px; border-radius: 8px; }
.t1,.t3 { background: linear-gradient(135deg,#3b0764,#9333ea); }
.t2,.t4 { background: linear-gradient(135deg,#831843,#ec4899); }

/* Security grid */
.security-grid { display: grid; grid-template-columns: repeat(auto-fit,minmax(200px,1fr)); gap: 1.5rem; }
.security-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.75rem;
  text-align: center;
  transition: border-color .3s;
}
.security-card:hover { border-color: rgba(147,51,234,.4); }
.security-icon { font-size: 2rem; margin-bottom: .75rem; }
.security-card h3 { font-size: 1rem; font-weight: 700; margin-bottom: .4rem; }
.security-card p { color: var(--text2); font-size: .85rem; }

/* CTA box */
.cta-box {
  background: rgba(147,51,234,.08);
  border: 1px solid rgba(147,51,234,.2);
  border-radius: var(--radius-lg);
  padding: 4rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-box h2 { font-size: 2.5rem; font-weight: 800; margin-bottom: 1rem; }
.cta-box p { color: var(--text2); font-size: 1.1rem; margin-bottom: 2rem; }

/* ============================================================
   FOOTER
   ============================================================ */
.footer { background: var(--bg2); border-top: 1px solid var(--border); padding: 4rem 0 0; }
.footer-inner { display: grid; grid-template-columns: 1fr 2fr; gap: 4rem; padding-bottom: 3rem; }
.footer-brand p { color: var(--text3); font-size: .85rem; margin-top: .75rem; max-width: 240px; }
.footer-links { display: grid; grid-template-columns: repeat(3,1fr); gap: 2rem; }
.footer-col { display: flex; flex-direction: column; gap: .6rem; }
.footer-col h4 { font-weight: 700; font-size: .9rem; color: var(--text); margin-bottom: .25rem; }
.footer-col a { color: var(--text3); font-size: .85rem; }
.footer-col a:hover { color: var(--text); }
.footer-bottom {
  border-top: 1px solid var(--border);
  padding: 1.25rem 0;
}
.footer-bottom .container { display: flex; justify-content: space-between; color: var(--text3); font-size: .8rem; }

/* ============================================================
   AUTH PAGES
   ============================================================ */
.auth-body {
  height: 100vh;
  position: relative;
  overflow: hidden;
  background: var(--bg);
}

.auth-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  width: 100%;
  height: 100vh;
  position: relative;
  z-index: 1;
}

.auth-side-left {
  background: linear-gradient(135deg, rgba(147,51,234,.15), rgba(236,72,153,.08));
  border-right: 1px solid var(--border);
  padding: 4rem;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  height: 100vh;
  overflow-y: auto;
}
.auth-side-left::before, .auth-side-left::after {
  content: '';
  margin: auto;
}
.auth-side-left h1 { font-size: 2.2rem; font-weight: 800; line-height: 1.2; }
.auth-side-left p { color: var(--text2); font-size: 1rem; }
.auth-perks { display: flex; flex-direction: column; gap: .75rem; margin-top: .5rem; }
.perk { display: flex; align-items: center; gap: .6rem; font-size: .9rem; color: var(--text2); }
.perk span { color: var(--success); font-weight: 700; }

.auth-card {
  padding: 3rem;
  display: flex;
  flex-direction: column;
  max-width: 520px;
  margin: 0 auto;
  width: 100%;
  height: 100vh;
  overflow-y: auto;
}
.auth-card::before, .auth-card::after {
  content: '';
  margin: auto;
}
.auth-tabs { display: flex; gap: 1.5rem; margin-bottom: 2rem; border-bottom: 1px solid var(--border); padding-bottom: .75rem; }
.auth-tab { font-size: .95rem; font-weight: 600; color: var(--text3); padding-bottom: .75rem; cursor: pointer; }
.auth-tab.active { color: var(--text); border-bottom: 2px solid var(--primary); }
.auth-title { font-size: 1.75rem; font-weight: 800; margin-bottom: .4rem; }
.auth-subtitle { color: var(--text2); font-size: .9rem; margin-bottom: 1.75rem; }

.auth-form { display: flex; flex-direction: column; gap: 1rem; }
.form-group { display: flex; flex-direction: column; gap: .4rem; }
.form-group label {
  font-size: .85rem;
  font-weight: 600;
  color: var(--text2);
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.label-link { color: var(--primary); font-weight: 500; font-size: .8rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-group input[type="text"],
.form-group input[type="email"],
.form-group input[type="password"] {
  background: var(--card);
  border: 1px solid var(--border2);
  border-radius: var(--radius);
  padding: .75rem 1rem;
  color: var(--text);
  font-size: .95rem;
  font-family: inherit;
  transition: border-color .2s;
  outline: none;
  width: 100%;
}
.form-group input:focus { border-color: var(--primary); box-shadow: 0 0 0 3px rgba(147,51,234,.15); }
.form-group input::placeholder { color: var(--text3); }

.input-prefix, .input-suffix {
  display: flex;
  align-items: center;
  background: var(--card);
  border: 1px solid var(--border2);
  border-radius: var(--radius);
  overflow: hidden;
  transition: border-color .2s;
}
.input-prefix:focus-within,
.input-suffix:focus-within { border-color: var(--primary); box-shadow: 0 0 0 3px rgba(147,51,234,.15); }
.input-prefix span { padding: 0 .75rem; color: var(--text3); background: rgba(255,255,255,.03); border-right: 1px solid var(--border2); font-size: .9rem; white-space: nowrap; align-self: stretch; display: flex; align-items: center; }
.input-prefix input,
.input-suffix input { background: transparent; border: none; box-shadow: none; flex: 1; min-width: 0; }
.input-prefix input:focus,
.input-suffix input:focus { border: none; box-shadow: none; }
.toggle-pwd { padding: 0 .75rem; color: var(--text3); background: none; border: none; cursor: pointer; font-size: 1rem; }

.password-strength { height: 3px; border-radius: 3px; margin-top: .3rem; transition: all .3s; }
.pwd-weak   { background: var(--error);   width: 33%; }
.pwd-medium { background: var(--warning); width: 66%; }
.pwd-strong { background: var(--success); width: 100%; }

.account-type-selector { display: grid; grid-template-columns: 1fr 1fr; gap: .75rem; }
.account-type-option input { display: none; }
.account-type-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .3rem;
  padding: 1rem;
  background: var(--card);
  border: 2px solid var(--border2);
  border-radius: var(--radius);
  cursor: pointer;
  transition: all .2s;
  text-align: center;
}
.account-type-option input:checked + .account-type-card {
  border-color: var(--primary);
  background: rgba(147,51,234,.1);
}
.account-type-icon { font-size: 1.5rem; }
.account-type-label { font-weight: 700; font-size: .9rem; }
.account-type-desc { color: var(--text3); font-size: .75rem; }

.checkbox-label { display: flex; align-items: flex-start; gap: .6rem; cursor: pointer; font-size: .85rem; color: var(--text2); }
.checkbox-label input[type="checkbox"] { margin-top: .1rem; accent-color: var(--primary); width: 16px; height: 16px; flex-shrink: 0; }
.checkbox-label strong { color: var(--text); }

.auth-divider { display: flex; align-items: center; gap: 1rem; margin: 1rem 0; color: var(--text3); font-size: .8rem; }
.auth-divider::before, .auth-divider::after { content: ''; flex: 1; height: 1px; background: var(--border); }
.auth-switch { text-align: center; color: var(--text3); font-size: .875rem; margin-top: 1rem; }
.auth-legal { text-align: center; color: var(--text3); font-size: .75rem; margin-top: .75rem; line-height: 1.5; }

/* ============================================================
   AGE GATE
   ============================================================ */
.age-gate-overlay {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  position: relative;
}
.age-gate-card {
  background: rgba(13,13,26,.95);
  border: 1px solid var(--border2);
  border-radius: var(--radius-lg);
  padding: 3rem;
  max-width: 480px;
  width: 100%;
  text-align: center;
  position: relative;
  z-index: 1;
  box-shadow: var(--shadow-lg);
}
.age-gate-icon { font-size: 3rem; margin-bottom: 1rem; }
.age-gate-title { font-size: 1.75rem; font-weight: 800; margin-bottom: .75rem; }
.age-gate-desc { color: var(--text2); font-size: .95rem; line-height: 1.7; margin-bottom: 1.5rem; }
.age-gate-warning {
  display: flex;
  align-items: center;
  gap: .6rem;
  background: rgba(239,68,68,.1);
  border: 1px solid rgba(239,68,68,.2);
  color: #fca5a5;
  padding: .75rem 1rem;
  border-radius: var(--radius);
  font-size: .85rem;
  margin-bottom: 2rem;
  text-align: left;
}
.age-gate-actions { display: flex; flex-direction: column; gap: .75rem; }
.age-gate-legal { color: var(--text3); font-size: .75rem; margin-top: 1.5rem; line-height: 1.6; }

/* ============================================================
   ALERT
   ============================================================ */
.alert {
  padding: .75rem 1rem;
  border-radius: var(--radius);
  font-size: .875rem;
  margin-bottom: 1rem;
}
.alert-error { background: rgba(239,68,68,.1); border: 1px solid rgba(239,68,68,.2); color: #fca5a5; }
.alert-success { background: rgba(34,197,94,.1); border: 1px solid rgba(34,197,94,.2); color: #86efac; }

/* ============================================================
   MODAIS — base universal (carregado por todas as páginas)
   ============================================================ */
.modal-overlay {
  position: fixed; inset: 0;
  background: rgba(0,0,0,.75);
  backdrop-filter: blur(6px);
  z-index: 500;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  box-sizing: border-box;
}

.modal-card,
.modal-box,
.modal {
  background: var(--card, #1e1e2e);
  border: 1px solid var(--border, rgba(255,255,255,.1));
  border-radius: 20px;
  width: 100%;
  max-width: 480px;
  max-height: 90vh;
  overflow-y: auto;
  box-shadow: 0 20px 60px rgba(0,0,0,.6);
  box-sizing: border-box;
}
/* modal-box usa conteúdo direto (sem .modal-header/.modal-body) */
.modal-box { padding: 1.5rem; }

.modal-footer {
  display: flex; gap: .75rem; justify-content: flex-end;
  padding: 1rem 1.5rem 1.5rem;
  border-top: 1px solid var(--border, rgba(255,255,255,.1));
}

.modal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.25rem 1.5rem;
  border-bottom: 1px solid var(--border, rgba(255,255,255,.1));
  position: sticky;
  top: 0;
  background: inherit;
  z-index: 1;
}
.modal-header h3 { font-size: 1rem; font-weight: 700; color: var(--text1, #f1f5f9); margin: 0; }
.modal-header button,
.modal-close {
  background: none; border: none; cursor: pointer;
  color: var(--text3, #64748b); font-size: 1.2rem; line-height: 1; padding: 0;
}

.modal-body { padding: 1.5rem; display: flex; flex-direction: column; gap: 1rem; }
.modal-body select {
  background: var(--card, #1e1e2e);
  border: 1px solid var(--border, rgba(255,255,255,.1));
  border-radius: 10px; padding: .75rem 1rem;
  color: var(--text1, #f1f5f9); font-size: .9rem;
  font-family: inherit; outline: none; width: 100%;
}

.modal-title {
  font-size: 1.05rem; font-weight: 700;
  color: var(--text1, #f1f5f9); margin: 0 0 1.5rem;
}

.modal-actions {
  display: flex; gap: .75rem; justify-content: flex-end;
  margin-top: 1.25rem; padding-top: 1rem;
  border-top: 1px solid var(--border, rgba(255,255,255,.1));
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .hero-cards { display: none; }
  .creator-split { grid-template-columns: 1fr; }
  .creator-preview { display: none; }
}

@media (max-width: 768px) {
  .nav-links { display: none; }
  .nav-mobile-toggle { display: block; }
  .auth-wrapper { grid-template-columns: 1fr; }
  .auth-side-left { display: none; }
  .auth-card { padding: 2rem 1.5rem; max-width: 100%; }
  .footer-inner { grid-template-columns: 1fr; gap: 2rem; }
  .footer-links { grid-template-columns: 1fr 1fr; }
  .hero-stats { gap: 1rem; }
  .form-row { grid-template-columns: 1fr; }
  .cta-box { padding: 2.5rem 1.5rem; }
}

@media (max-width: 480px) {
  .hero-title { font-size: 2.2rem; }
  .hero-cta { flex-direction: column; }
  .section { padding: 4rem 0; }
  .footer-links { grid-template-columns: 1fr; }

  /* Modais mobile — bottom sheet */
  .modal-overlay {
    padding: 0;
    align-items: flex-end;
  }
  .modal-card,
  .modal-box,
  .modal {
    border-radius: 24px 24px 0 0;
    max-width: 100%;
    max-height: 92vh;
  }
  .modal-header { padding: 1rem 1.25rem; }
  .modal-body  { padding: 1.25rem; }
  .modal-actions {
    flex-wrap: wrap;
    padding-bottom: env(safe-area-inset-bottom, 0);
  }
  .modal-actions .btn { flex: 1 1 auto; text-align: center; justify-content: center; }
}
