/**
 * =============================================================================
 * THEME-SITE.CSS — Estilos globais e componentes compartilhados
 * =============================================================================
 *
 * DESCRIÇÃO:
 *   Arquivo central de variáveis CSS, reset, Tipografia, componentes
 *   compartilhados (header, footer, formulários, botões) e páginas de
 *   conteúdo público do site (home, login, checkout, registros).
 *
 * DEPENDÊNCIAS:
 *   - Google Fonts: Manrope (400, 500, 700, 800) + Sora (500, 700, 800)
 *
 * HIERARQUIA DE IMPORTAÇÃO:
 *   Este arquivo é importado pelo tema principal (theme.css) ANTES dos
 *   arquivos de dashboard para garantir que variáveis e estilos base
 *   estejam disponíveis em todos os contextos.
 *
 * CONVENÇÕES:
 *   - Metodologia BEM para nomenclatura de classes
 *   - CSS Custom Properties (variáveis) para cores, espaçamento e tipografia
 *   - Prefixo "site-" para componentes exclusivos do site público
 *
 * MANUTENÇÃO:
 *   - Variáveis CSS → Seção "1. CSS Custom Properties"
 *   - Reset/Global → Seção "2. Reset & Base"
 *   - Header/Footer → Seção "3. Site Header & Navigation"
 *   - Conteúdo pages → Seção "4. Content Pages"
 *   - Login/Register/Checkout → Seção "5. Student Login & Register"
 *   - Admin Login → Seção "6. Admin Login"
 *   - Responsive → Seção "7. Responsive (Site)"
 *
 * =============================================================================
 */

/* =============================================================================
   1. CSS CUSTOM PROPERTIES (Variáveis globais)
   ============================================================================= */

:root {
  /* Brand Colors */
  --brand-980: #030a1f;
  --brand-950: #06112f;
  --brand-920: #0a1a45;
  --brand-700: #3b82f6;
  --brand-600: #2563eb;
  --brand-100: #dce9ff;

  /* Semantic Colors */
  --success: #10b981;
  --error: #ef4444;
  --warning: #f59e0b;
  --info: #3b82f6;

  /* Text Colors */
  --text-main: #f3f7ff;
  --text-soft: #94a3b8;
  --text-muted: #64748b;

  /* Surface Colors */
  --surface: #ffffff;
  --surface-glass: rgba(10, 26, 69, 0.72);
  --surface-glass-dim: rgba(10, 26, 69, 0.45);

  /* Border Colors */
  --line-soft: rgba(148, 163, 184, 0.12);
  --line-medium: rgba(148, 163, 184, 0.24);

  /* CTA (Call-to-Action) Colors */
  --cta-500: #ffad0f;
  --cta-600: #f59e0b;

  /* Border Radius */
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 20px;
  --radius-xl: 30px;

  /* Layout Spacing */
  --site-header-height: 104px;
  --topbar-height: 84px;
  --sidebar-width: 280px;

  /* Typography - Font Families */
  --font-display: 'Bebas Neue', 'Impact', sans-serif;
  --font-heading: 'Sora', 'Segoe UI', sans-serif;
  --font-body: 'Manrope', 'Montserrat', 'Segoe UI', sans-serif;
  --font-mono: 'SF Mono', 'Consolas', monospace;

  /* Typography - Font Sizes (clamp: min, preferred, max) */
  --text-xs: clamp(0.7rem, 0.65rem + 0.25vw, 0.75rem);
  --text-sm: clamp(0.8rem, 0.75rem + 0.25vw, 0.875rem);
  --text-base: clamp(0.9rem, 0.85rem + 0.25vw, 1rem);
  --text-lg: clamp(1rem, 0.95rem + 0.25vw, 1.125rem);
  --text-xl: clamp(1.1rem, 1rem + 0.5vw, 1.25rem);
  --text-2xl: clamp(1.25rem, 1.1rem + 0.75vw, 1.5rem);
  --text-3xl: clamp(1.5rem, 1.25rem + 1.25vw, 2rem);
  --text-4xl: clamp(1.875rem, 1.5rem + 1.875vw, 2.5rem);
  --text-5xl: clamp(2.25rem, 1.75rem + 2.5vw, 3.5rem);
  --text-6xl: clamp(3rem, 2rem + 5vw, 6rem);
}

/* =============================================================================
   TYPOGRAPHY BASE
   ============================================================================= */

body {
  font-family: var(--font-body);
  font-size: var(--text-base);
  font-weight: 400;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4, h5, h6,
.h1, .h2, .h3, .h4, .h5, .h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 0.5em;
  color: var(--text-main);
}

h1, .h1 {
  font-family: var(--font-display);
  font-size: var(--text-6xl);
  font-weight: 400;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

h2, .h2 {
  font-family: var(--font-heading);
  font-size: var(--text-4xl);
  font-weight: 700;
}

h3, .h3 {
  font-family: var(--font-heading);
  font-size: var(--text-3xl);
  font-weight: 600;
}

h4, .h4 {
  font-family: var(--font-heading);
  font-size: var(--text-2xl);
  font-weight: 600;
}

h5, .h5 {
  font-family: var(--font-heading);
  font-size: var(--text-xl);
  font-weight: 500;
}

h6, .h6 {
  font-family: var(--font-heading);
  font-size: var(--text-lg);
  font-weight: 500;
}

p {
  margin-bottom: 1em;
  line-height: 1.7;
}

a {
  color: var(--cta-500);
  text-decoration: none;
  transition: color 0.2s ease;
}

a:hover {
  color: var(--cta-600);
}

strong, b {
  font-weight: 700;
}

small, .small {
  font-size: var(--text-sm);
}

code, pre {
  font-family: var(--font-mono);
}

/* =============================================================================
   2. RESET & BASE
   ============================================================================= */

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

html {
  scroll-behavior: smooth;
  scrollbar-width: thin;
  scrollbar-color: #ffad0f #041131;
}

html::-webkit-scrollbar {
  width: 12px;
}

html::-webkit-scrollbar-track {
  background: #041131;
}

html::-webkit-scrollbar-thumb {
  background: linear-gradient(180deg, #ffba2e 0%, #f59e0b 100%);
  border: 2px solid #041131;
  border-radius: 999px;
}

body {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  font-family: "Manrope", "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  color: var(--text-main);
  background: linear-gradient(150deg, #ecf3ff, #f7faff);
}

.page-main {
  flex: 1;
}

[data-parallax] {
  transform: translate3d(0, var(--parallax-shift, 0px), 0);
  will-change: transform;
}

@media (prefers-reduced-motion: reduce) {
  [data-parallax] {
    transform: none !important;
    will-change: auto;
  }

  body.has-fixed-header .site-header {
    animation: none;
  }
}

/* =============================================================================
   3. SITE HEADER & NAVIGATION
   ============================================================================= */

.site-header {
  position: relative;
  z-index: 120;
  background: linear-gradient(90deg, var(--brand-950), var(--brand-980));
  border-bottom: 1px solid rgba(220, 233, 255, 0.16);
  transition: background-color 0.25s ease, box-shadow 0.25s ease,
    border-color 0.25s ease;
}

body.has-fixed-header .site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 160;
  background: rgba(4, 17, 49, 0.9);
  border-bottom-color: rgba(180, 204, 248, 0.2);
  backdrop-filter: blur(10px);
  box-shadow: 0 12px 26px rgba(1, 10, 31, 0.35);
  animation: header-slide-down 0.22s ease-out;
}

body.has-fixed-header .page-main {
  padding-top: var(--site-header-height, 104px);
}

@keyframes header-slide-down {
  from { transform: translateY(-100%); }
  to { transform: translateY(0); }
}

.menu-wrap {
  width: min(1260px, calc(100% - 48px));
  margin: 0 auto;
  min-height: 104px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  color: #ffffff;
  text-decoration: none;
  flex-shrink: 0;
}

.brand-logo {
  width: clamp(130px, 10vw, 190px);
  height: auto;
  display: block;
}

.site-header-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 24px;
  flex: 1;
}

.main-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(14px, 2vw, 34px);
  flex: 1;
}

.site-nav-toggle,
.site-header-backdrop {
  display: none;
}

.site-nav-toggle {
  width: 52px;
  height: 52px;
  padding: 0;
  border: 1px solid rgba(220, 233, 255, 0.18);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.05);
  color: #ffffff;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  transition: background 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}

.site-nav-toggle:hover {
  background: rgba(255, 255, 255, 0.09);
  border-color: rgba(220, 233, 255, 0.28);
  transform: translateY(-1px);
}

.site-nav-toggle span {
  width: 20px;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
  transition: transform 0.24s ease, opacity 0.24s ease;
}

.site-header-backdrop {
  position: fixed;
  inset: 0;
  border: 0;
  background: rgba(3, 10, 31, 0.46);
  backdrop-filter: blur(6px);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.24s ease;
  z-index: 149;
}

.main-nav a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #ffffff;
  text-decoration: none;
  font-weight: 600;
  font-size: 1.01rem;
  white-space: nowrap;
  transition: color 0.2s ease;
}

.main-nav a:hover {
  color: var(--brand-100);
}

.nav-user i {
  font-size: 1rem;
  line-height: 1;
}

.quote-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  white-space: nowrap;
  background: var(--cta-500);
  color: #101320;
  padding: 14px 24px;
  border-radius: 15px;
  font-weight: 800;
  font-size: 1.01rem;
  box-shadow: 0 12px 24px rgba(245, 158, 11, 0.36);
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.quote-btn:hover {
  transform: translateY(-2px);
  background: var(--cta-600);
  box-shadow: 0 16px 28px rgba(245, 158, 11, 0.45);
}

.quote-btn i {
  font-size: 1rem;
  line-height: 1;
}

/* =============================================================================
   4. SITE FOOTER
   ============================================================================= */

.site-footer {
  margin-top: 0;
  background: radial-gradient(circle at 15% 20%,
      rgba(26, 83, 215, 0.18) 0%,
      rgba(26, 83, 215, 0) 44%),
    linear-gradient(180deg, #041131 0%, #03102d 100%);
  border-top: 1px solid rgba(142, 169, 222, 0.16);
}

.footer-shell {
  width: min(1260px, calc(100% - 48px));
  margin: 0 auto;
  padding: 56px 0 24px;
}

.footer-top {
  display: grid;
  grid-template-columns: 1.18fr 1fr 1fr 1.15fr;
  gap: clamp(20px, 3vw, 40px);
}

.footer-brand-col {
  max-width: 360px;
}

.footer-brand-link {
  display: inline-block;
}

.footer-logo {
  width: clamp(200px, 19vw, 312px);
  height: auto;
  display: block;
}

.footer-brand-text {
  margin: 20px 0 0;
  color: rgba(196, 211, 239, 0.78);
  font-size: clamp(1rem, 1.02vw, 1.22rem);
  line-height: 1.52;
}

.footer-col h3 {
  margin: 0;
  color: #f4f8ff;
  font-size: 1.1rem;
  letter-spacing: 0.08em;
  font-weight: 700;
}

.footer-col ul {
  margin: 20px 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 12px;
}

.footer-col a {
  color: rgba(204, 221, 249, 0.82);
  text-decoration: none;
  font-size: clamp(1rem, 1.04vw, 1.2rem);
  line-height: 1.35;
  transition: color 0.2s ease;
}

.footer-col a:hover {
  color: #ffffff;
}

.footer-contact-list a {
  display: flex;
  align-items: center;
  gap: 10px;
}

.footer-contact-list i {
  font-size: 1rem;
  flex-shrink: 0;
}

.footer-social {
  margin-top: 20px;
  display: flex;
  align-items: center;
  gap: 14px;
}

.footer-social a {
  width: 34px;
  height: 34px;
  border-radius: 10px;
  border: 1px solid rgba(139, 165, 218, 0.32);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.footer-social i {
  font-size: 0.95rem;
  line-height: 1;
}

.footer-bottom {
  margin-top: 34px;
  padding-top: 20px;
  border-top: 1px solid rgba(131, 160, 218, 0.2);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px 18px;
}

.footer-bottom p {
  margin: 0;
  color: rgba(188, 209, 244, 0.64);
  font-size: clamp(0.92rem, 0.96vw, 1.08rem);
}

/* =============================================================================
   5. CONTENT PAGES (landing pages institucionais)
   ============================================================================= */

.content-page {
  background: radial-gradient(circle at 18% 12%,
      rgba(37, 99, 235, 0.18) 0%,
      rgba(37, 99, 235, 0) 42%),
    linear-gradient(180deg, #eef4ff 0%, #f8fbff 52%, #eef5ff 100%);
}

.content-page .page-main {
  padding-bottom: clamp(42px, 7vw, 96px);
}

.content-page-shell {
  width: min(1120px, calc(100% - 48px));
  margin: 0 auto;
}

.content-page-hero {
  padding: clamp(36px, 6vw, 86px) 0 28px;
}

.content-page-back {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #1d4ed8;
  font-weight: 700;
  text-decoration: none;
  margin-bottom: 22px;
}

.content-page-back:hover {
  color: #163aa4;
}

.content-page-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(280px, 0.78fr);
  gap: clamp(24px, 3vw, 36px);
  align-items: start;
}

.content-page-hero-grid.is-full {
  grid-template-columns: 1fr;
}

.content-page-hero-copy,
.content-page-outline {
  border-radius: 28px;
  border: 1px solid rgba(132, 162, 224, 0.22);
  box-shadow: 0 28px 60px rgba(12, 35, 88, 0.12);
}

.content-page-hero-copy {
  padding: clamp(26px, 4vw, 40px);
  background: linear-gradient(135deg, #071938 0%, #0d2657 100%);
  color: #f4f8ff;
}

.content-page-kicker {
  margin: 0 0 14px;
  color: rgba(198, 216, 255, 0.8);
  font-size: 0.84rem;
  font-weight: 800;
  letter-spacing: 0.18em;
}

.content-page-hero-copy h1 {
  margin: 0;
  font-family: "Sora", "Manrope", sans-serif;
  font-size: clamp(2rem, 4vw, 3.3rem);
  line-height: 1.02;
}

.content-page-hero-text {
  margin: 18px 0 0;
  max-width: 760px;
  color: rgba(226, 236, 255, 0.9);
  font-size: clamp(1rem, 1.2vw, 1.16rem);
  line-height: 1.7;
}

.content-page-updated {
  margin: 18px 0 0;
  color: rgba(194, 212, 247, 0.74);
  font-size: 0.96rem;
  font-weight: 700;
}

.content-page-summary {
  list-style: none;
  margin: 28px 0 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.content-page-summary li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 16px 18px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(205, 222, 255, 0.14);
  color: #eff5ff;
  line-height: 1.5;
}

.content-page-summary i {
  margin-top: 2px;
  color: #7dd3fc;
  flex-shrink: 0;
}

.content-page-outline {
  position: sticky;
  top: calc(var(--site-header-height, 104px) + 22px);
  padding: 24px;
  background: rgba(255, 255, 255, 0.88);
  backdrop-filter: blur(12px);
}

.content-page-outline-kicker {
  margin: 0 0 16px;
  color: #1d4ed8;
  font-size: 0.84rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.content-page-outline-links {
  display: grid;
  gap: 10px;
}

.content-page-outline-links a {
  color: #0f234d;
  text-decoration: none;
  font-weight: 700;
  line-height: 1.45;
  padding: 12px 14px;
  border-radius: 14px;
  background: rgba(219, 232, 255, 0.56);
  transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.content-page-outline-links a:hover {
  background: rgba(196, 217, 255, 0.9);
  color: #0b1c3f;
  transform: translateX(2px);
}

.content-page-body {
  padding: 0 0 clamp(36px, 6vw, 78px);
}

.content-page-article {
  display: grid;
  gap: 22px;
}

.content-page-section {
  padding: clamp(24px, 4vw, 38px);
  border-radius: 26px;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(149, 178, 230, 0.24);
  box-shadow: 0 22px 50px rgba(15, 35, 77, 0.08);
  color: #10213b;
}

.content-page-section-head {
  margin-bottom: 10px;
}

.content-page-section h2 {
  margin: 0;
  color: #0f234d;
  font-family: "Sora", "Manrope", sans-serif;
  font-size: clamp(1.24rem, 2vw, 1.72rem);
}

.content-page-section-lead {
  margin: 12px 0 0;
  color: #31508e;
  font-weight: 700;
  line-height: 1.6;
}

.content-page-section p {
  margin: 14px 0 0;
  color: #40546f;
  font-size: 1rem;
  line-height: 1.78;
}

.content-page-list {
  margin: 18px 0 0;
  padding-left: 1.3rem;
  display: grid;
  gap: 10px;
  color: #334155;
  line-height: 1.72;
}

.content-page-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px 28px;
  padding: clamp(24px, 4vw, 34px);
  border-radius: 28px;
  background: linear-gradient(135deg, #071938 0%, #123375 100%);
  color: #f4f8ff;
  box-shadow: 0 28px 60px rgba(12, 35, 88, 0.18);
}

.content-page-cta h2 {
  margin: 0;
  font-family: "Sora", "Manrope", sans-serif;
  font-size: clamp(1.3rem, 2vw, 1.9rem);
}

.content-page-cta p {
  margin: 12px 0 0;
  color: rgba(218, 230, 255, 0.86);
  line-height: 1.7;
}

.content-page-cta-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 12px;
}

.content-page-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 22px;
  border-radius: 16px;
  text-decoration: none;
  font-weight: 800;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease,
    color 0.2s ease, border-color 0.2s ease;
}

.content-page-btn:hover {
  transform: translateY(-1px);
}

.content-page-btn-primary {
  background: var(--cta-500);
  color: #101320;
  box-shadow: 0 14px 28px rgba(245, 158, 11, 0.28);
}

.content-page-btn-primary:hover {
  background: var(--cta-600);
}

.content-page-btn-secondary {
  border: 1px solid rgba(214, 229, 255, 0.24);
  background: rgba(255, 255, 255, 0.06);
  color: #eff5ff;
}

.content-page-btn-secondary:hover {
  border-color: rgba(214, 229, 255, 0.4);
  background: rgba(255, 255, 255, 0.12);
}

@media (max-width: 960px) {
  .content-page-hero-grid {
    grid-template-columns: 1fr;
  }

  .content-page-outline {
    position: static;
  }

  .content-page-cta {
    flex-direction: column;
    align-items: flex-start;
  }

  .content-page-cta-actions {
    justify-content: flex-start;
  }
}

@media (max-width: 720px) {
  .content-page-shell {
    width: min(100%, calc(100% - 28px));
  }

  .content-page-summary {
    grid-template-columns: 1fr;
  }

  .content-page-hero-copy,
  .content-page-outline,
  .content-page-section,
  .content-page-cta {
    border-radius: 22px;
  }

  .content-page-cta-actions,
  .content-page-btn {
    width: 100%;
  }
}

/* =============================================================================
   6. STUDENT LOGIN & REGISTER
   ============================================================================= */

.student-login-page {
  background: radial-gradient(circle at 20% 22%,
      rgba(24, 78, 205, 0.2) 0%,
      rgba(24, 78, 205, 0) 46%),
    linear-gradient(160deg, #03102d 0%, #051338 50%, #081a44 100%);
}

.student-register-page {
  background: radial-gradient(circle at 18% 18%, rgba(37, 99, 235, 0.22) 0%, rgba(37, 99, 235, 0) 44%),
    linear-gradient(160deg, #03102d 0%, #051338 50%, #081a44 100%);
}

.student-login-page .page-main,
.student-register-page .page-main {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: clamp(34px, 5vw, 70px) 24px;
}

.student-login-section {
  width: min(1120px, 100%);
}

.student-login-shell {
  position: relative;
  display: grid;
  grid-template-columns: 1.04fr 1fr;
  gap: clamp(24px, 3vw, 42px);
  border-radius: 28px;
  border: 1px solid rgba(139, 169, 226, 0.2);
  background: linear-gradient(140deg,
      rgba(7, 23, 56, 0.88),
      rgba(9, 28, 68, 0.84));
  padding: clamp(22px, 3vw, 36px);
  box-shadow: 0 24px 46px rgba(2, 12, 35, 0.42);
  overflow: hidden;
}

.student-login-copy {
  position: relative;
  display: grid;
  align-content: start;
  gap: 0;
  border: 1px solid rgba(143, 174, 233, 0.16);
  border-radius: 24px;
  padding: clamp(22px, 3vw, 32px);
  background: linear-gradient(160deg,
      rgba(8, 24, 61, 0.78),
      rgba(6, 19, 49, 0.58));
  overflow: hidden;
}

.student-login-copy::before {
  content: "";
  position: absolute;
  inset: -48% auto auto -24%;
  width: 320px;
  aspect-ratio: 1 / 1;
  border-radius: 50%;
  background: radial-gradient(circle,
      rgba(59, 130, 246, 0.24) 0%,
      rgba(59, 130, 246, 0) 72%);
  pointer-events: none;
}

.student-login-copy::after {
  content: "";
  position: absolute;
  right: -88px;
  bottom: -96px;
  width: 220px;
  height: 220px;
  border-radius: 28px;
  transform: rotate(18deg);
  background: linear-gradient(180deg,
      rgba(255, 173, 15, 0.14),
      rgba(255, 173, 15, 0));
  pointer-events: none;
}

.student-login-kicker {
  margin: 0;
  color: #ffad0f;
  text-transform: uppercase;
  letter-spacing: 0.33em;
  font-weight: 800;
  font-size: 0.78rem;
  position: relative;
  z-index: 1;
}

.student-login-badge {
  margin: 18px 0 0;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  width: fit-content;
  min-height: 36px;
  padding: 0 14px;
  border-radius: 999px;
  border: 1px solid rgba(255, 173, 15, 0.28);
  background: rgba(31, 29, 22, 0.38);
  color: #ffd16f;
  font-size: 0.75rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  position: relative;
  z-index: 1;
}

.student-login-badge i {
  font-size: 0.86rem;
}

.student-login-copy h1 {
  margin: 18px 0 0;
  color: #f3f7ff;
  font-family: "Sora", "Manrope", sans-serif;
  font-size: clamp(2rem, 3.1vw, 3rem);
  line-height: 1.06;
  position: relative;
  z-index: 1;
}

.student-login-copy p {
  margin: 16px 0 0;
  color: rgba(196, 211, 239, 0.8);
  font-size: clamp(1rem, 1.18vw, 1.28rem);
  line-height: 1.45;
  max-width: 40ch;
  position: relative;
  z-index: 1;
}

.student-login-highlights {
  margin: 26px 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 12px;
  position: relative;
  z-index: 1;
}

.student-login-highlights li {
  display: grid;
  grid-template-columns: 24px 1fr;
  align-items: start;
  gap: 10px;
  color: rgba(225, 235, 255, 0.92);
  font-size: 0.95rem;
  line-height: 1.46;
}

.student-login-highlights i {
  color: #ffb84d;
  margin-top: 2px;
}

.student-login-panel {
  position: relative;
  display: grid;
  align-content: start;
  gap: 18px;
  border: 1px solid rgba(145, 174, 229, 0.22);
  border-radius: 24px;
  background: linear-gradient(150deg,
      rgba(6, 20, 52, 0.9),
      rgba(7, 22, 56, 0.72));
  padding: clamp(20px, 2.8vw, 30px);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
  overflow: hidden;
}

.student-login-panel::before {
  content: "";
  position: absolute;
  inset: auto -120px -120px auto;
  width: 280px;
  aspect-ratio: 1 / 1;
  border-radius: 50%;
  background: radial-gradient(circle,
      rgba(255, 173, 15, 0.12) 0%,
      rgba(255, 173, 15, 0) 72%);
  pointer-events: none;
}

.student-login-panel-head {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 6px;
}

.student-login-panel-kicker {
  margin: 0;
  color: #ffad0f;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 0.72rem;
  font-weight: 800;
}

.student-login-panel-head h2 {
  margin: 0;
  color: #f4f8ff;
  font-family: "Sora", "Manrope", sans-serif;
  font-size: clamp(1.7rem, 2.3vw, 2.16rem);
  line-height: 1.04;
}

.student-login-panel-head p {
  margin: 0;
  color: rgba(198, 214, 243, 0.78);
  font-size: 0.96rem;
  line-height: 1.5;
  max-width: 34ch;
}

.student-login-home-link {
  margin-top: 22px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: #9bc2ff;
  font-size: 0.98rem;
  font-weight: 700;
  position: relative;
  z-index: 1;
}

.student-login-home-link:hover {
  color: #d9e8ff;
}

.student-login-form {
  display: grid;
  gap: 15px;
  align-content: start;
  position: relative;
  z-index: 1;
}

.student-register-access-shell {
  width: min(1240px, 100%);
  grid-template-columns: 0.86fr 1.14fr;
}

.student-register-access-form {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.student-field-wide {
  grid-column: 1 / -1;
}

.student-field {
  display: grid;
  gap: 8px;
}

.student-field span {
  color: rgba(215, 230, 255, 0.86);
  text-transform: uppercase;
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  font-weight: 700;
}

.student-field input {
  border: 1px solid rgba(129, 161, 223, 0.32);
  border-radius: 14px;
  min-height: 54px;
  background: rgba(4, 15, 38, 0.72);
  color: #f5f8ff;
  font: inherit;
  padding: 12px 15px;
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.student-field input:focus {
  border-color: rgba(59, 130, 246, 0.92);
  box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.22);
}

.student-field-error {
  color: #fecaca;
  font-size: 0.88rem;
}

.student-login-submit {
  margin-top: 4px;
  min-height: 56px;
  border: none;
  border-radius: 13px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: linear-gradient(165deg, #ffb11a 0%, #f59e0b 100%);
  color: #111427;
  font-family: "Sora", "Manrope", sans-serif;
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 800;
  cursor: pointer;
  box-shadow: 0 14px 24px rgba(245, 158, 11, 0.28);
}

.student-login-submit:hover {
  background: linear-gradient(165deg, #ffc14d 0%, #f59e0b 100%);
  transform: translateY(-2px);
  box-shadow: 0 18px 32px rgba(245, 158, 11, 0.38);
}

.student-auth-consent {
  display: grid;
  grid-template-columns: 20px 1fr;
  align-items: start;
  gap: 10px;
  color: rgba(213, 226, 251, 0.82);
  font-size: 0.86rem;
  line-height: 1.45;
  position: relative;
  z-index: 1;
}

.student-auth-consent input {
  width: 18px;
  height: 18px;
  margin: 1px 0 0;
  accent-color: #2f86ff;
}

.student-auth-consent a {
  color: #76b5ff;
  font-weight: 800;
  text-underline-offset: 0.18em;
}

.student-login-feedback {
  margin: 2px 0 0;
  border-radius: 12px;
  border: 1px solid rgba(74, 222, 128, 0.36);
  background: rgba(16, 98, 51, 0.2);
  color: #d1fae5;
  font-size: 0.94rem;
  padding: 11px 12px;
}

.student-login-feedback-error {
  border-color: rgba(248, 113, 113, 0.44);
  background: rgba(127, 29, 29, 0.25);
  color: #ffe0e0;
}

.student-login-divider {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 2px 0 0;
  color: rgba(187, 205, 239, 0.62);
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  position: relative;
  z-index: 1;
}

.student-login-divider::before,
.student-login-divider::after {
  content: "";
  flex: 1;
  height: 1px;
  background: rgba(139, 169, 226, 0.18);
}

.student-google-login {
  display: grid;
  gap: 10px;
  padding: 16px;
  border-radius: 18px;
  border: 1px solid rgba(129, 161, 223, 0.18);
  background: rgba(4, 17, 46, 0.46);
  position: relative;
  z-index: 1;
}

.student-google-login.is-disabled {
  opacity: 0.72;
}

.student-google-login-form {
  margin: 0;
}

.student-google-login-trigger {
  width: 100%;
  min-height: 54px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 0 18px;
  border-radius: 999px;
  border: 1px solid rgba(219, 234, 254, 0.2);
  background: #ffffff;
  color: #111827;
  font-family: "Sora", "Manrope", sans-serif;
  font-size: 0.95rem;
  font-weight: 700;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, opacity 0.2s ease;
  box-shadow: 0 16px 28px rgba(2, 12, 35, 0.18);
}

.student-google-login-trigger:hover:not(:disabled) {
  transform: translateY(-1px);
}

.student-google-login-trigger:disabled {
  cursor: wait;
  opacity: 0.74;
}

.student-google-login.is-loading .student-google-login-trigger {
  opacity: 0.82;
}

.student-google-login-icon {
  width: 22px;
  height: 22px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: #4285f4;
  flex: 0 0 auto;
}

.student-google-login-icon i {
  font-size: 1rem;
}

.student-google-login-note {
  margin: 0;
  color: rgba(196, 211, 239, 0.72);
  font-size: 0.9rem;
  line-height: 1.45;
}

.student-google-login-error {
  margin: 0;
  color: #fecaca;
  font-size: 0.88rem;
}

.student-google-login-fallback {
  padding: 0;
  border: 0;
  background: transparent;
  color: rgba(214, 228, 255, 0.8);
  font-size: 0.88rem;
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 0.18em;
  cursor: pointer;
}

.student-google-login-fallback:hover {
  color: #ffffff;
}

.student-create-account {
  display: grid;
  gap: 15px;
  padding: 18px;
  border-radius: 19px;
  border: 1px solid rgba(255, 184, 77, 0.4);
  background:
    radial-gradient(circle at 92% 10%, rgba(255, 184, 77, 0.16), transparent 34%),
    linear-gradient(145deg, rgba(21, 49, 105, 0.72), rgba(5, 20, 51, 0.9));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06), 0 18px 38px rgba(2, 12, 35, 0.28);
  position: relative;
  z-index: 1;
  overflow: hidden;
}

.student-create-account div {
  display: grid;
  gap: 5px;
}

.student-create-account-eyebrow {
  margin: 0;
  color: #ffbd50;
  font-size: 0.68rem;
  font-weight: 900;
  letter-spacing: 0.16em;
  line-height: 1.2;
}

.student-create-account strong {
  color: #f8fbff;
  font-family: "Sora", "Manrope", sans-serif;
  font-size: 1rem;
}

.student-create-account span {
  color: rgba(209, 223, 249, 0.82);
  font-size: 0.86rem;
  line-height: 1.45;
}

.student-create-account a {
  width: 100%;
  min-height: 54px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 11px;
  padding: 0 17px;
  border-radius: 14px;
  border: 1px solid rgba(255, 211, 128, 0.72);
  background: linear-gradient(150deg, #ffc247 0%, #f59e0b 100%);
  color: #151728;
  text-decoration: none;
  font-size: 0.88rem;
  font-weight: 900;
  box-shadow: 0 14px 28px rgba(245, 158, 11, 0.3);
  transition: transform 0.2s ease, box-shadow 0.2s ease, filter 0.2s ease;
}

.student-create-account a b {
  font: inherit;
  text-align: left;
}

.student-create-account a:hover {
  color: #111427;
  transform: translateY(-2px);
  filter: brightness(1.04);
  box-shadow: 0 18px 34px rgba(245, 158, 11, 0.42);
}

.student-create-account a i:last-child {
  transition: transform 0.2s ease;
}

.student-create-account a:hover i:last-child {
  transform: translateX(3px);
}

@media (max-width: 760px) {
  .student-register-access-form {
    grid-template-columns: 1fr;
  }

  .student-field-wide {
    grid-column: auto;
  }
}

/* =============================================================================
   7. ADMIN LOGIN
   ============================================================================= */

.admin-login-page {
  background: radial-gradient(circle at 16% 20%,
      rgba(47, 125, 255, 0.22) 0%,
      rgba(47, 125, 255, 0) 42%),
    radial-gradient(circle at 86% 14%,
      rgba(245, 158, 11, 0.16) 0%,
      rgba(245, 158, 11, 0) 34%),
    linear-gradient(155deg, #020a1f 0%, #06163e 52%, #041535 100%);
}

.admin-login-page .page-main {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: clamp(34px, 5vw, 74px) 24px;
}

.admin-login-section {
  width: min(1160px, 100%);
}

.admin-login-shell {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(24px, 3vw, 40px);
  border-radius: 30px;
  border: 1px solid rgba(141, 170, 228, 0.24);
  background: linear-gradient(130deg,
      rgba(5, 18, 46, 0.86),
      rgba(8, 24, 58, 0.8));
  padding: clamp(22px, 3vw, 36px);
  box-shadow: 0 24px 48px rgba(1, 11, 32, 0.5);
}

.admin-login-copy {
  position: relative;
  border: 1px solid rgba(143, 174, 233, 0.18);
  border-radius: 24px;
  padding: clamp(22px, 3vw, 32px);
  background: linear-gradient(160deg,
      rgba(8, 24, 61, 0.86),
      rgba(6, 19, 49, 0.7));
  overflow: hidden;
}

.admin-login-copy::before {
  content: "";
  position: absolute;
  inset: -60% auto auto -38%;
  width: 320px;
  aspect-ratio: 1 / 1;
  border-radius: 50%;
  background: radial-gradient(circle,
      rgba(59, 130, 246, 0.34) 0%,
      rgba(59, 130, 246, 0) 70%);
  pointer-events: none;
}

.admin-login-badge {
  margin: 0;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 34px;
  padding: 0 14px;
  border-radius: 999px;
  border: 1px solid rgba(255, 173, 15, 0.4);
  background: rgba(35, 31, 20, 0.42);
  color: #ffc350;
  font-size: 0.76rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.11em;
  position: relative;
  z-index: 1;
}

.admin-login-badge i {
  font-size: 0.86rem;
}

.admin-login-logo {
  margin-top: 22px;
  width: clamp(140px, 13vw, 190px);
  height: auto;
  display: block;
  position: relative;
  z-index: 1;
}

.admin-login-copy h1 {
  margin: 20px 0 0;
  color: #f5f8ff;
  font-family: "Sora", "Manrope", sans-serif;
  font-size: clamp(2rem, 3.2vw, 3rem);
  line-height: 1.04;
  position: relative;
  z-index: 1;
}

.admin-login-copy>p {
  margin: 14px 0 0;
  color: rgba(202, 219, 247, 0.82);
  font-size: clamp(0.98rem, 1.05vw, 1.12rem);
  line-height: 1.5;
  max-width: 37ch;
  position: relative;
  z-index: 1;
}

.admin-login-highlights {
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 12px;
  position: relative;
  z-index: 1;
}

.admin-login-highlights li {
  display: grid;
  grid-template-columns: 24px 1fr;
  align-items: start;
  gap: 10px;
  color: rgba(220, 233, 255, 0.9);
  font-size: 0.95rem;
  line-height: 1.45;
}

.admin-login-highlights i {
  color: #ffad0f;
  margin-top: 2px;
}

.admin-login-home-link {
  margin-top: 22px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #9dc4ff;
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 700;
  position: relative;
  z-index: 1;
}

.admin-login-home-link:hover {
  color: #f4f8ff;
}

.admin-login-form {
  display: grid;
  align-content: start;
  gap: 14px;
  border: 1px solid rgba(145, 174, 229, 0.22);
  border-radius: 22px;
  background: linear-gradient(150deg,
      rgba(6, 20, 52, 0.9),
      rgba(7, 22, 56, 0.72));
  padding: clamp(20px, 2.8vw, 30px);
}

.admin-login-form-head {
  display: grid;
  gap: 6px;
  margin-bottom: 4px;
}

.admin-login-kicker {
  margin: 0;
  color: #ffad0f;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 0.72rem;
  font-weight: 800;
}

.admin-login-form-head h2 {
  margin: 0;
  color: #f4f8ff;
  font-family: "Sora", "Manrope", sans-serif;
  font-size: clamp(1.6rem, 2.1vw, 2rem);
  line-height: 1.05;
}

.admin-login-field input {
  background: rgba(4, 15, 38, 0.72);
  border-color: rgba(133, 163, 223, 0.34);
}

.admin-login-field input:focus {
  border-color: rgba(59, 130, 246, 0.92);
  box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.22);
}

.admin-login-submit {
  margin-top: 10px;
  width: 100%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.admin-login-submit i {
  font-size: 1rem;
  line-height: 1;
}

/* =============================================================================
   8. STUDENT CHECKOUT & REGISTER
   ============================================================================= */

.student-checkout-page,
.student-register-page,
.student-dashboard-page {
  background: radial-gradient(circle at 18% 18%,
      rgba(24, 78, 205, 0.2) 0%,
      rgba(24, 78, 205, 0) 46%),
    linear-gradient(160deg, #03102d 0%, #051338 56%, #081a44 100%);
}

.student-checkout-page .page-main,
.student-register-page .page-main {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: clamp(34px, 5vw, 74px) 24px;
}

.student-checkout-section,
.student-register-section {
  width: min(1120px, 100%);
}

.student-checkout-shell,
.student-register-shell {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(24px, 3vw, 42px);
  border-radius: 28px;
  border: 1px solid rgba(139, 169, 226, 0.2);
  background: linear-gradient(140deg,
      rgba(7, 23, 56, 0.88),
      rgba(9, 28, 68, 0.84));
  padding: clamp(22px, 3vw, 36px);
  box-shadow: 0 24px 46px rgba(2, 12, 35, 0.42);
}

.student-checkout-kicker,
.student-register-kicker,
.student-dashboard-kicker {
  margin: 0;
  color: #ffad0f;
  text-transform: uppercase;
  letter-spacing: 0.33em;
  font-weight: 800;
  font-size: 0.78rem;
}

.student-checkout-summary h1,
.student-register-copy h1 {
  margin: 14px 0 0;
  color: #f3f7ff;
  font-family: "Sora", "Manrope", sans-serif;
  font-size: clamp(2rem, 3.1vw, 3rem);
  line-height: 1.06;
}

.student-checkout-summary p,
.student-register-copy p {
  margin: 16px 0 0;
  color: rgba(196, 211, 239, 0.8);
  font-size: clamp(1rem, 1.18vw, 1.2rem);
  line-height: 1.45;
}

.student-checkout-meta {
  margin: 24px 0 0;
  padding: 0;
  display: grid;
  gap: 14px;
}

.student-checkout-meta div {
  border: 1px solid rgba(124, 157, 218, 0.28);
  border-radius: 14px;
  background: rgba(4, 17, 46, 0.66);
  padding: 12px 14px;
}

.student-checkout-meta dt {
  color: rgba(196, 211, 239, 0.72);
  text-transform: uppercase;
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  font-weight: 700;
}

.student-checkout-meta dd {
  margin: 8px 0 0;
  color: #f6f8ff;
  font-size: 1.2rem;
  font-weight: 800;
}

.student-checkout-free-link {
  margin-top: 18px;
  display: inline-flex;
  color: #9bc2ff;
  text-decoration: none;
  font-weight: 700;
}

.student-checkout-free-link:hover {
  color: #f6f8ff;
}

.student-checkout-form,
.student-register-form {
  display: grid;
  gap: 14px;
  align-content: start;
}

.student-checkout-form h2 {
  margin: 0;
  color: #f3f7ff;
  font-family: "Sora", "Manrope", sans-serif;
  font-size: clamp(1.5rem, 2vw, 2rem);
}

.student-payment-option {
  border: 1px solid rgba(129, 161, 223, 0.28);
  border-radius: 14px;
  background: rgba(4, 17, 46, 0.72);
  min-height: 70px;
  padding: 14px 16px;
  display: flex;
  gap: 12px;
  align-items: center;
}

.student-payment-option input {
  margin-top: 2px;
}

.student-payment-option strong {
  display: block;
  color: #f6f8ff;
  font-size: 1rem;
}

.student-payment-option small {
  display: block;
  margin-top: 4px;
  color: rgba(194, 210, 240, 0.7);
  font-size: 0.88rem;
}

.student-checkout-note {
  margin: 0;
  color: rgba(181, 202, 241, 0.72);
  font-size: 0.88rem;
}

.student-payment-field {
  display: grid;
  gap: 8px;
  text-align: left;
}

.student-payment-field span {
  font-size: 0.92rem;
  color: rgba(226, 232, 240, 0.8);
  font-weight: 700;
}

.student-payment-field input,
.student-payment-field select {
  width: 100%;
  padding: 12px 14px;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(10, 26, 69, 0.35);
  color: rgba(244, 248, 255, 0.94);
  font-weight: 600;
  outline: none;
}

.student-payment-field input:focus,
.student-payment-field select:focus {
  border-color: rgba(255, 173, 15, 0.65);
  box-shadow: 0 0 0 4px rgba(255, 173, 15, 0.12);
}

.student-payment-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.student-mp-input {
  min-height: 46px;
  display: flex;
  align-items: center;
  padding: 12px 14px;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(10, 26, 69, 0.35);
}

.student-mp-input iframe {
  width: 100%;
}

@media (max-width: 760px) {
  .student-payment-grid {
    grid-template-columns: 1fr;
  }
}

.student-register-grid {
  display: grid;
  grid-template-columns: 1fr 140px;
  gap: 14px;
}

.student-register-plan-box {
  margin-top: 22px;
  border: 1px solid rgba(114, 149, 219, 0.3);
  background: rgba(4, 17, 46, 0.72);
  border-radius: 14px;
  padding: 14px;
  display: grid;
  gap: 8px;
}

.student-register-plan-box strong {
  color: #f6f8ff;
  font-size: 1rem;
}

.student-register-plan-box span {
  color: rgba(194, 210, 240, 0.78);
  font-size: 0.9rem;
  line-height: 1.4;
}

.student-field select,
.student-field textarea {
  border: 1px solid rgba(129, 161, 223, 0.32);
  border-radius: 12px;
  min-height: 50px;
  background: rgba(5, 17, 44, 0.72);
  color: #f5f8ff;
  font: inherit;
  padding: 12px 14px;
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.student-field textarea {
  min-height: 110px;
  resize: vertical;
}

.student-field select:focus,
.student-field textarea:focus {
  border-color: rgba(59, 130, 246, 0.92);
  box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.22);
}

.student-primary-btn,
.student-secondary-btn {
  min-height: 54px;
  padding: 12px 28px;
  border: none;
  border-radius: 13px;
  font-family: "Sora", "Manrope", sans-serif;
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 800;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  text-decoration: none;
}

.student-primary-btn {
  background: var(--cta-500);
  color: #111427;
  box-shadow: 0 8px 20px rgba(245, 158, 11, 0.25);
  position: relative;
  overflow: hidden;
}

.student-primary-btn:hover {
  background: var(--cta-600);
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(245, 158, 11, 0.35);
}

.student-primary-btn:active {
  transform: translateY(0);
  box-shadow: 0 4px 12px rgba(245, 158, 11, 0.2);
}

.student-primary-btn::after {
  display: none;
}

.student-primary-btn:hover::after {
  left: auto;
}

.student-secondary-btn {
  color: #eff4ff;
  border: 1px solid rgba(125, 161, 231, 0.34);
  background: rgba(7, 22, 54, 0.72);
}

.student-secondary-btn:hover {
  border-color: rgba(164, 194, 255, 0.52);
}

.student-inline-feedback,
.student-inline-error {
  margin: 0;
  border-radius: 12px;
  padding: 11px 12px;
  font-size: 0.92rem;
}

.student-inline-feedback {
  border: 1px solid rgba(74, 222, 128, 0.36);
  background: rgba(16, 98, 51, 0.2);
  color: #d1fae5;
}

.student-inline-error,
.student-inline-feedback-error {
  border: 1px solid rgba(248, 113, 113, 0.44);
  background: rgba(127, 29, 29, 0.25);
  color: #ffe0e0;
}

/* =============================================================================
   9. PAGE LOADING OVERLAY (compartilhado)
   ============================================================================= */

.page-loading-overlay {
  position: fixed;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(3, 10, 31, 0.92);
  backdrop-filter: blur(10px);
  z-index: 99999;
  opacity: 1;
  visibility: visible;
  transition: opacity 0.22s ease, visibility 0.22s ease;
}

.page-loading-overlay.is-hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.page-loading-card {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px 18px;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(10, 26, 69, 0.55);
  color: #f3f7ff;
  font-family: Manrope, Segoe UI, Tahoma, Geneva, Verdana, sans-serif;
  font-weight: 800;
  letter-spacing: 0.02em;
}

.page-loading-spinner {
  width: 22px;
  height: 22px;
  border-radius: 999px;
  border: 3px solid rgba(255, 255, 255, 0.18);
  border-top-color: #ffad0f;
  animation: pageLoadingSpin 0.9s linear infinite;
}

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

@media (prefers-reduced-motion: reduce) {
  .page-loading-spinner {
    animation: none;
  }
}

/* =============================================================================
   10. RESPONSIVE — SITE & LOGIN/REGISTER
   ============================================================================= */

@media (max-width: 980px) {
  .menu-wrap {
    width: min(1260px, calc(100% - 28px));
    min-height: 88px;
    padding: 16px 0;
    flex-wrap: nowrap;
    justify-content: space-between;
  }

  .brand {
    width: auto;
    justify-content: flex-start;
  }

  .site-nav-toggle {
    display: inline-flex;
  }

  .site-header-actions {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    width: min(360px, 100vw);
    padding: 96px 20px 24px;
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    gap: 20px;
    background: linear-gradient(180deg, rgba(4, 17, 49, 0.98), rgba(2, 11, 31, 0.98));
    box-shadow: -24px 0 48px rgba(1, 10, 31, 0.4);
    transform: translateX(100%);
    transition: transform 0.28s ease;
    z-index: 150;
    overflow-y: auto;
  }

  .main-nav {
    order: 1;
    width: 100%;
    flex: 0 0 auto;
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    gap: 10px;
  }

  .main-nav a {
    min-height: 54px;
    padding: 0 16px;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(220, 233, 255, 0.08);
  }

  .quote-btn {
    width: 100%;
    justify-content: center;
    min-height: 54px;
  }

  body.site-nav-open {
    overflow: hidden;
  }

  body.site-nav-open .site-header-actions {
    transform: translateX(0);
  }

  body.site-nav-open .site-header-backdrop {
    display: block;
    opacity: 1;
    pointer-events: auto;
  }

  body.site-nav-open .site-nav-toggle span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }

  body.site-nav-open .site-nav-toggle span:nth-child(2) {
    opacity: 0;
  }

  body.site-nav-open .site-nav-toggle span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }

  .student-login-page .page-main {
    padding: 44px 20px;
  }

  .student-login-shell {
    grid-template-columns: 1fr;
    border-radius: 24px;
  }

  .student-login-copy,
  .student-login-panel {
    border-radius: 20px;
  }

  .admin-login-page .page-main {
    padding: 44px 20px;
  }

  .admin-login-shell {
    grid-template-columns: 1fr;
    border-radius: 24px;
  }

  .admin-login-copy {
    padding: 24px;
  }

  .student-checkout-page .page-main,
  .student-register-page .page-main {
    padding: 44px 20px;
  }

  .student-checkout-shell,
  .student-register-shell {
    grid-template-columns: 1fr;
    border-radius: 24px;
  }

  .student-register-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 620px) {
  .quote-btn {
    width: 100%;
    justify-content: center;
  }

  .student-login-page .page-main {
    padding: 34px 16px;
  }

  .student-login-shell {
    padding: 18px 16px;
    border-radius: 18px;
  }

  .student-login-copy,
  .student-login-panel {
    border-radius: 16px;
    padding: 18px 16px;
  }

  .admin-login-page .page-main {
    padding: 34px 16px;
  }

  .admin-login-shell {
    padding: 16px;
    border-radius: 18px;
  }

  .admin-login-copy {
    border-radius: 16px;
    padding: 18px;
  }

  .admin-login-copy h1 {
    font-size: clamp(1.62rem, 8.5vw, 2.15rem);
  }

  .admin-login-form {
    border-radius: 16px;
    padding: 18px 16px;
  }

  .admin-login-form-head h2 {
    font-size: clamp(1.35rem, 7vw, 1.7rem);
  }

  .admin-login-submit {
    min-height: 52px;
    border-radius: 12px;
  }

  .student-checkout-page .page-main,
  .student-register-page .page-main {
    padding: 34px 16px;
  }

  .student-checkout-shell,
  .student-register-shell {
    padding: 18px 16px;
    border-radius: 18px;
  }

  .student-primary-btn,
  .student-secondary-btn {
    min-height: 52px;
    border-radius: 12px;
  }

  .student-login-copy h1 {
    font-size: clamp(1.65rem, 8vw, 2.2rem);
  }

  .student-login-panel-head h2 {
    font-size: clamp(1.42rem, 7vw, 1.82rem);
  }

  .student-login-submit {
    min-height: 52px;
    border-radius: 12px;
  }

  .student-google-login {
    padding: 14px;
    border-radius: 16px;
  }
}

@media (max-width: 560px) {
  .site-header {
    padding: 16px 0 0;
  }

  .menu-wrap {
    width: min(1260px, calc(100% - 20px));
    min-height: 76px;
    padding: 12px 14px;
    border-radius: 18px;
    gap: 14px;
  }

  .brand-logo {
    width: clamp(118px, 34vw, 156px);
  }

  .site-nav-toggle {
    width: 48px;
    height: 48px;
    border-radius: 14px;
  }

  .site-header-actions {
    width: min(320px, 100vw);
    padding: 88px 16px 20px;
  }

  .main-nav a {
    min-height: 50px;
    padding: 0 14px;
    font-size: 0.96rem;
  }

  .quote-btn {
    min-height: 52px;
    border-radius: 16px;
  }
}

@media (max-width: 320px) {
  .plans-section {
    padding: 56px 16px 52px;
  }

  .plan-card {
    padding: 22px 18px;
  }
}

@media (min-width: 1600px) {
  .menu-wrap,
  .footer-shell {
    width: min(1480px, calc(100% - 64px));
  }
}

@media (max-width: 1180px) {
  .home-dots {
    display: none;
  }
}

/* Home redesign inspired by the supplied reference */
.home-page {
  --sq-bg: #020817;
  --sq-panel: rgba(15, 24, 49, 0.82);
  --sq-border: rgba(129, 150, 206, 0.26);
  --sq-purple: #9a5cff;
  --sq-gold: #ffad0f;
  --sq-green: #25e374;
  --sq-text: #f7f9ff;
  --sq-muted: rgba(215, 224, 245, 0.74);
  background: linear-gradient(180deg, #010611 0%, #06142f 48%, #020817 100%);
}

.home-page .site-header {
  position: sticky;
  top: 0;
  background: rgba(2, 8, 23, 0.92);
  border-bottom: 1px solid rgba(119, 139, 194, 0.18);
  backdrop-filter: blur(16px);
}

.home-page .menu-wrap {
  min-height: 86px;
  width: min(1260px, calc(100% - 48px));
}

.home-page .brand-logo {
  width: clamp(132px, 10vw, 170px);
}

.home-page .main-nav {
  gap: clamp(16px, 1.8vw, 28px);
}

.home-page .main-nav a {
  position: relative;
  color: rgba(255, 255, 255, 0.92);
  font-size: 0.9rem;
  font-weight: 800;
}

.home-page .main-nav a:first-child {
  color: var(--sq-gold);
}

.home-page .main-nav a:first-child::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -12px;
  height: 2px;
  border-radius: 999px;
  background: var(--sq-gold);
}

.login-btn,
.quote-btn {
  min-height: 50px;
  border-radius: 8px;
  padding: 0 28px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  font-size: 0.92rem;
  white-space: nowrap;
}

.login-btn {
  color: #fff;
  border: 1px solid rgba(135, 153, 211, 0.55);
  background: rgba(6, 13, 32, 0.78);
}

.login-btn:hover {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.78);
}

.home-page .quote-btn {
  color: #080b16;
  background: linear-gradient(180deg, #ffb622, #ff9d00);
  box-shadow: 0 12px 26px rgba(255, 173, 15, 0.25);
}

.sq-container {
  width: min(1180px, calc(100% - 48px));
  margin: 0 auto;
}

.sq-hero {
  position: relative;
  overflow: hidden;
  padding: 58px 0 0;
}



.sq-hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(460px, 1.1fr);
  gap: 44px;
  align-items: center;
  min-height: 560px;
}

.sq-hero-copy {
  padding: 34px 0 44px;
}

.sq-pill {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 18px;
  border: 1px solid rgba(154, 92, 255, 0.55);
  border-radius: 999px;
  background: rgba(66, 41, 122, 0.28);
  color: #c8a6ff;
  font-size: 0.76rem;
  font-weight: 900;
  text-transform: uppercase;
  margin: 0 0 28px;
}

.sq-hero h1 {
  max-width: 630px;
  margin: 0;
  font-family: var(--font-heading);
  font-size: clamp(2.7rem, 5vw, 5rem);
  line-height: 1.04;
  letter-spacing: 0;
  text-transform: none;
  color: var(--sq-text);
}

.sq-hero h1 span,
.sq-section-head h2 span {
  color: var(--sq-gold);
}

.sq-hero-lead {
  max-width: 560px;
  margin: 24px 0 0;
  color: var(--sq-muted);
  font-size: 1.05rem;
  line-height: 1.75;
}

.sq-check-list {
  display: grid;
  gap: 12px;
  list-style: none;
  margin: 24px 0 0;
  padding: 0;
  color: rgba(245, 248, 255, 0.88);
  font-weight: 700;
}

.sq-check-list i {
  width: 22px;
  height: 22px;
  margin-right: 9px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--sq-purple);
  color: #fff;
  font-size: 0.72rem;
}

.sq-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  align-items: center;
  margin-top: 30px;
}

.sq-btn {
  min-height: 56px;
  border-radius: 8px;
  padding: 0 30px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  font-weight: 900;
  font-size: 0.94rem;
  text-decoration: none;
}

.sq-btn-primary {
  color: #080b16;
  background: linear-gradient(180deg, #ffbb2a, #ff9e00);
  box-shadow: 0 16px 36px rgba(255, 173, 15, 0.26);
}

.sq-btn-primary:hover {
  color: #080b16;
}

.sq-btn-play {
  color: #fff;
}

.sq-btn-play span {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(154, 92, 255, 0.72);
  color: #b788ff;
  background: rgba(20, 20, 52, 0.56);
}

.sq-guarantee {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 18px 0 0;
  color: rgba(220, 230, 250, 0.78);
  font-size: 0.88rem;
}

.sq-hero-visual {
  position: relative;
  min-height: 548px;
}

.sq-study-photo {
  position: absolute;
  inset: 0 -70px 0 42px;
  border-radius: 0 0 0 140px;
  background:
    linear-gradient(100deg, rgba(2, 8, 23, 0.96) 0%, rgba(2, 8, 23, 0.4) 32%, rgba(2, 8, 23, 0.1) 58%, rgba(2, 8, 23, 0.96) 100%),
    linear-gradient(150deg, rgba(255, 173, 15, 0.34) 0 18%, transparent 19%),
    linear-gradient(22deg, transparent 0 48%, rgba(255, 255, 255, 0.08) 49% 52%, transparent 53%),
    linear-gradient(160deg, #111827 0%, #18162b 46%, #071227 100%);
  box-shadow: inset 0 -120px 120px rgba(2, 8, 23, 0.9);
}

.sq-study-photo::before {
  content: "";
  position: absolute;
  right: 28%;
  top: 46px;
  width: 190px;
  height: 290px;
  border-radius: 90px 90px 34px 34px;
  background: linear-gradient(180deg, #0c0d12 0 31%, #f1bd8d 32% 48%, #111827 49% 100%);
  transform: rotate(9deg);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.36);
}

.sq-study-photo::after {
  content: "";
  position: absolute;
  right: 18%;
  bottom: 56px;
  width: 380px;
  height: 138px;
  border-radius: 10px;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.18) 1px, transparent 1px) 0 0 / 24px 100%,
    linear-gradient(180deg, #f4ead9, #d8c8ad);
  transform: perspective(500px) rotateX(54deg) rotateZ(-5deg);
  box-shadow: 0 24px 44px rgba(0, 0, 0, 0.38);
}

.sq-dashboard-card {
  position: absolute;
  left: 20px;
  bottom: 120px;
  z-index: 2;
  width: 220px;
  min-height: 150px;
  padding: 14px;
  border: 1px solid rgba(130, 159, 224, 0.34);
  border-radius: 10px;
  background: rgba(8, 16, 36, 0.92);
  box-shadow: 0 20px 48px rgba(0, 0, 0, 0.42);
  transform: perspective(640px) rotateY(-16deg) rotateZ(-5deg);
}

.sq-dashboard-top,
.sq-dashboard-lines {
  display: grid;
  gap: 10px;
}

.sq-dashboard-top {
  grid-template-columns: repeat(3, 1fr);
  margin-bottom: 14px;
}

.sq-dashboard-top span,
.sq-dashboard-lines span {
  border-radius: 999px;
  background: linear-gradient(90deg, #2c5fd0, #9a5cff);
}

.sq-dashboard-top span {
  height: 28px;
}

.sq-dashboard-lines span {
  height: 12px;
  background: linear-gradient(90deg, rgba(154, 92, 255, 0.9), rgba(54, 118, 232, 0.32));
}

.sq-dashboard-lines span:nth-child(even) {
  width: 78%;
}

.sq-float-card {
  position: absolute;
  right: 0;
  z-index: 3;
  width: 206px;
  min-height: 116px;
  padding: 18px 20px;
  border: 1px solid rgba(130, 159, 224, 0.3);
  border-radius: 8px;
  background: rgba(22, 30, 61, 0.86);
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.3);
}

.sq-float-one { top: 72px; }
.sq-float-two { top: 214px; }
.sq-float-three { top: 356px; }

.sq-float-card small,
.sq-float-card span {
  display: block;
  color: rgba(218, 228, 250, 0.68);
  font-size: 0.78rem;
}

.sq-float-card strong {
  display: block;
  margin: 8px 0 2px;
  color: #fff;
  font-size: 1.75rem;
  line-height: 1;
}

.sq-hero-exact {
  padding: 0;
  background: #020817;
  line-height: 0;
}



.sq-hero-shot {
  position: relative;
  width: 100%;
  max-width: none;
  margin: 0;
  overflow: hidden;
  background:
    radial-gradient(circle at 18% 22%, rgba(84, 123, 255, 0.18), transparent 34%),
    radial-gradient(circle at 85% 18%, rgba(144, 84, 255, 0.18), transparent 26%),
    #020817;
  isolation: isolate;
}

.sq-hero-shot::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(2, 8, 23, 0.78) 0%, rgba(2, 8, 23, 0.48) 34%, rgba(2, 8, 23, 0.1) 64%, rgba(2, 8, 23, 0) 100%),
    radial-gradient(circle at 18% 28%, rgba(72, 120, 255, 0.12), transparent 30%);
}

.sq-hero-shot::after {
  content: "";
  position: absolute;
  left: 4%;
  top: 4%;
  width: 46%;
  height: 76%;
  z-index: 2;
  pointer-events: none;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(33, 107, 255, 0.2), rgba(33, 107, 255, 0.05) 46%, transparent 74%);
  filter: blur(16px);
}

.sq-hero-shot img {
  display: block;
  width: 100%;
  height: auto;
  min-height: 520px;
  margin: 0;
}

.sq-hero-overlay {
  position: relative;
  z-index: 5;
  display: flex;
  flex-direction: column;
  justify-content: center;
  pointer-events: auto;
  line-height: normal;
}

.sq-hero-overlay::before {
  content: "";
  position: absolute;
  inset: -28px -24px -24px -28px;
  z-index: -1;
  border-radius: 34px;
  background: linear-gradient(180deg, rgba(8, 19, 46, 0.28), rgba(8, 19, 46, 0.08));
  backdrop-filter: blur(6px);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.03);
  opacity: 0.9;
}

@media (min-width: 900px) {
  .sq-hero-overlay {
    position: absolute;
    top: 37%;
    left: 74px;
    transform: translateY(-50%);
    max-width: min(48%, 760px);
  }
}

.sq-hero-overlay h1 {
  font-family: var(--font-heading);
  font-size: clamp(2.55rem, 4.6vw, 5.15rem);
  line-height: 1.02;
  color: rgba(255, 255, 255, 0.98);
  margin: 0;
  text-transform: none;
  letter-spacing: -0.045em;
  text-wrap: balance;
  text-shadow: 0 8px 24px rgba(0, 0, 0, 0.16);
}

.sq-hero-overlay h1 span {
  color: var(--sq-gold);
  text-shadow: 0 0 16px rgba(255, 185, 42, 0.12);
}

.sq-hero-overlay p {
  max-width: 720px;
  margin: 22px 0 0;
  color: rgba(231, 238, 255, 0.88);
  font-size: clamp(1.02rem, 1.26vw, 1.34rem);
  line-height: 1.72;
  text-shadow: 0 6px 18px rgba(0, 0, 0, 0.12);
}

.sq-hero-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin-top: 30px;
}

.sq-hero-buttons .sq-btn {
  min-height: 58px;
  padding: 0 32px;
  font-size: 1rem;
  border-radius: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-weight: 900;
  text-decoration: none;
  transition: transform 0.24s ease, box-shadow 0.24s ease, background 0.24s ease, border-color 0.24s ease;
}

.sq-hero-buttons .sq-btn-primary {
  color: #080b16;
  background: linear-gradient(180deg, #ffc43a, #ffad12);
  box-shadow: 0 18px 42px rgba(255, 173, 15, 0.24), 0 0 0 1px rgba(255, 214, 109, 0.12);
  border: none;
}

.sq-hero-buttons .sq-btn-primary:hover {
  color: #080b16;
  transform: translateY(-3px);
  box-shadow: 0 24px 52px rgba(255, 173, 15, 0.38), 0 0 0 1px rgba(255, 214, 109, 0.2);
}

.sq-hero-buttons .sq-btn-secondary {
  color: #fff;
  background: rgba(12, 23, 49, 0.48);
  border: 1px solid rgba(153, 188, 255, 0.22);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
  backdrop-filter: blur(10px);
}

.sq-hero-buttons .sq-btn-secondary:hover {
  transform: translateY(-3px);
  background: rgba(16, 30, 63, 0.82);
  border-color: rgba(126, 187, 255, 0.52);
  box-shadow: 0 18px 34px rgba(7, 15, 34, 0.26);
}

.sq-hero-accessible {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  border: 0;
  white-space: nowrap;
}

.sq-hero-hotspot {
  position: absolute;
  z-index: 4;
  display: block;
  border-radius: 10px;
  line-height: 1;
}

.sq-hero-hotspot:focus-visible {
  outline: 3px solid rgba(255, 255, 255, 0.88);
  outline-offset: 4px;
}

.sq-hero-hotspot-primary {
  left: 5.2%;
  top: 81.6%;
  width: 13.9%;
  height: 8.9%;
}

.sq-hero-hotspot-video {
  left: 20.7%;
  top: 81.3%;
  width: 17.4%;
  height: 9.2%;
}

.sq-stats {
  padding: 0 0 26px;
}

.sq-stats-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border: 1px solid rgba(130, 159, 224, 0.24);
  border-radius: 8px;
  background: rgba(15, 24, 49, 0.74);
  box-shadow: 0 16px 50px rgba(0, 0, 0, 0.22);
}

.sq-stats-grid article {
  min-height: 116px;
  display: grid;
  grid-template-columns: 58px 1fr;
  align-content: center;
  column-gap: 14px;
  padding: 24px 30px;
  border-right: 1px solid rgba(130, 159, 224, 0.18);
}

.sq-stats-grid article:last-child {
  border-right: 0;
}

.sq-stats-grid i {
  grid-row: span 2;
  width: 52px;
  height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: #a875ff;
  background: rgba(101, 60, 180, 0.28);
  font-size: 1.45rem;
}

.sq-stats-grid strong {
  color: #fff;
  font-size: 1.72rem;
  line-height: 1.1;
}

.sq-stats-grid span {
  color: rgba(220, 230, 250, 0.72);
  font-size: 0.86rem;
}

.sq-section {
  padding: 34px 0 24px;
}

.sq-section-head {
  text-align: center;
  margin-bottom: 28px;
}

.sq-section-head h2 {
  margin: 0;
  color: #fff;
  font-family: var(--font-heading);
  font-size: clamp(1.8rem, 3vw, 2.62rem);
  letter-spacing: 0;
}

.sq-section-head p {
  margin: 8px auto 0;
  max-width: 660px;
  color: var(--sq-muted);
}

.sq-feature-grid,
.sq-testimonial-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 22px;
}

.sq-feature-card,
.sq-method-card,
.sq-plan-card,
.sq-testimonial-card {
  border: 1px solid var(--sq-border);
  border-radius: 8px;
  background: linear-gradient(180deg, rgba(21, 31, 64, 0.78), rgba(9, 17, 38, 0.78));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.sq-feature-card {
  min-height: 184px;
  padding: 28px 26px;
  text-align: center;
}

.sq-feature-card i {
  color: var(--sq-purple);
  font-size: 2.6rem;
}

.sq-feature-card h3,
.sq-method-card h3,
.sq-plan-card h3 {
  margin: 18px 0 0;
  font-size: 1rem;
  color: #fff;
  letter-spacing: 0;
}

.sq-feature-card p,
.sq-method-card p,
.sq-plan-card p,
.sq-testimonial-card p {
  margin: 10px 0 0;
  color: var(--sq-muted);
  font-size: 0.9rem;
  line-height: 1.65;
}


/* ===== Página inicial — estatísticas e recursos ===== */
.sq-stats-home {
  position: relative;
  padding: 8px 0 34px;
}

.sq-stats-home::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 15% 30%, rgba(130, 92, 255, 0.12), transparent 26%),
    radial-gradient(circle at 85% 35%, rgba(0, 204, 255, 0.12), transparent 24%);
}

.sq-stats-home .sq-container,
.sq-approval-section .sq-container {
  position: relative;
  z-index: 1;
}

.sq-stats-home .sq-stats-grid {
  gap: 0;
  border: 1px solid rgba(128, 163, 255, 0.18);
  border-radius: 24px;
  background: linear-gradient(135deg, rgba(12, 21, 47, 0.96), rgba(7, 15, 34, 0.94));
  box-shadow:
    0 28px 70px rgba(0, 0, 0, 0.28),
    inset 0 1px 0 rgba(255, 255, 255, 0.05);
  overflow: hidden;
}

.sq-stats-home .sq-stat-card {
  position: relative;
  min-height: 126px;
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 26px 30px;
  border-right: 1px solid rgba(128, 163, 255, 0.12);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.015), rgba(255, 255, 255, 0)),
    radial-gradient(circle at top left, rgba(115, 86, 255, 0.11), transparent 38%);
  transition: transform 0.28s ease, box-shadow 0.28s ease, background 0.28s ease;
}

.sq-stats-home .sq-stat-card::after {
  content: "";
  position: absolute;
  left: 26px;
  right: 26px;
  bottom: 0;
  height: 1px;
  opacity: 0;
  background: linear-gradient(90deg, rgba(111, 177, 255, 0), rgba(111, 177, 255, 0.7), rgba(111, 177, 255, 0));
  transition: opacity 0.28s ease;
}

.sq-stats-home .sq-stat-card:hover {
  transform: translateY(-4px);
  box-shadow: inset 0 0 0 1px rgba(118, 173, 255, 0.08);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0)),
    radial-gradient(circle at top left, rgba(115, 86, 255, 0.16), transparent 42%);
}

.sq-stats-home .sq-stat-card:hover::after {
  opacity: 1;
}

.sq-stats-home .sq-stat-card:last-child {
  border-right: 0;
}

.sq-stat-icon {
  position: relative;
  flex: 0 0 62px;
  width: 62px;
  height: 62px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 20px;
  background: linear-gradient(180deg, rgba(128, 82, 255, 0.28), rgba(77, 39, 158, 0.2));
  border: 1px solid rgba(156, 121, 255, 0.18);
  box-shadow:
    0 12px 26px rgba(69, 31, 143, 0.24),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.sq-stat-icon::before {
  content: "";
  position: absolute;
  inset: -8px;
  border-radius: 24px;
  background: radial-gradient(circle, rgba(124, 97, 255, 0.2), transparent 65%);
  z-index: -1;
}

.sq-stat-icon i {
  width: auto;
  height: auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 0;
  background: transparent;
  color: #9f74ff;
  font-size: 1.45rem;
  box-shadow: none;
}

.sq-stat-copy {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.sq-stats-home .sq-stat-copy strong {
  margin: 0;
  color: #ffffff;
  font-size: clamp(1.65rem, 2.4vw, 2.05rem);
  line-height: 1;
  letter-spacing: -0.03em;
}

.sq-stats-home .sq-stat-copy span {
  margin: 0;
  color: rgba(224, 233, 255, 0.76);
  font-size: 0.96rem;
  line-height: 1.35;
}

.sq-approval-section {
  position: relative;
  padding-top: 48px;
}

.sq-approval-section::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 20% 10%, rgba(125, 77, 255, 0.14), transparent 26%),
    radial-gradient(circle at 80% 20%, rgba(0, 210, 255, 0.1), transparent 24%);
}

.sq-approval-head {
  margin-bottom: 34px;
}

.sq-section-kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 14px;
  padding: 9px 16px;
  border-radius: 999px;
  border: 1px solid rgba(106, 164, 255, 0.18);
  background: rgba(10, 20, 46, 0.72);
  color: #87b9ff;
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.sq-approval-head h2 {
  max-width: 860px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.08;
}

.sq-approval-head p {
  max-width: 720px;
  font-size: 1.02rem;
  line-height: 1.8;
}

.sq-feature-grid-enhanced {
  gap: 24px;
}

.sq-feature-grid-enhanced .sq-feature-card {
  position: relative;
  min-height: 232px;
  padding: 30px 28px 26px;
  border: 1px solid rgba(118, 150, 227, 0.18);
  border-radius: 24px;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(21, 31, 64, 0.92), rgba(8, 16, 36, 0.96)),
    radial-gradient(circle at top left, rgba(147, 90, 255, 0.12), transparent 36%);
  box-shadow:
    0 18px 44px rgba(0, 0, 0, 0.2),
    inset 0 1px 0 rgba(255, 255, 255, 0.05);
  text-align: left;
  transition: transform 0.32s ease, border-color 0.32s ease, box-shadow 0.32s ease;
}

.sq-feature-grid-enhanced .sq-feature-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 22px;
  right: 22px;
  height: 3px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(136, 90, 255, 0), rgba(136, 90, 255, 0.95), rgba(47, 217, 255, 0.9), rgba(47, 217, 255, 0));
  opacity: 0.7;
}

.sq-feature-grid-enhanced .sq-feature-card::after {
  content: "";
  position: absolute;
  inset: auto -20% -42% auto;
  width: 180px;
  height: 180px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(67, 212, 255, 0.12), transparent 66%);
  pointer-events: none;
}

.sq-feature-grid-enhanced .sq-feature-card:hover {
  transform: translateY(-8px);
  border-color: rgba(118, 184, 255, 0.34);
  box-shadow:
    0 24px 56px rgba(0, 0, 0, 0.28),
    0 0 0 1px rgba(109, 167, 255, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

.sq-feature-icon {
  position: relative;
  width: 72px;
  height: 72px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 22px;
  margin-bottom: 18px;
  background: linear-gradient(180deg, rgba(123, 73, 255, 0.24), rgba(60, 32, 130, 0.18));
  border: 1px solid rgba(146, 106, 255, 0.18);
  box-shadow:
    0 14px 32px rgba(67, 30, 138, 0.24),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.sq-feature-icon::before {
  content: "";
  position: absolute;
  inset: -10px;
  border-radius: 28px;
  background: radial-gradient(circle, rgba(127, 92, 255, 0.18), transparent 68%);
  z-index: -1;
}

.sq-feature-grid-enhanced .sq-feature-card i {
  color: #9b6dff;
  font-size: 2rem;
}

.sq-feature-grid-enhanced .sq-feature-card h3 {
  margin: 0;
  font-size: 1.18rem;
  line-height: 1.35;
}

.sq-feature-grid-enhanced .sq-feature-card p {
  margin-top: 12px;
  font-size: 0.97rem;
  line-height: 1.72;
  color: rgba(225, 234, 255, 0.78);
}

.sq-method-grid {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 60px;
  margin-top: 42px;
}

.sq-method-grid::before {
  content: "";
  position: absolute;
  top: 34px;
  left: 10%;
  right: 10%;
  height: 2px;
  background: repeating-linear-gradient(90deg, rgba(154, 92, 255, 0.88) 0 16px, transparent 16px 34px);
}

.sq-method-card {
  position: relative;
  z-index: 1;
  min-height: 128px;
  padding: 34px 24px 22px;
}

.sq-method-card > div {
  position: absolute;
  top: -28px;
  left: 18px;
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: #ad82ff;
  background: rgba(60, 36, 122, 0.96);
  box-shadow: 0 0 0 8px rgba(60, 36, 122, 0.22);
}

.sq-toggle {
  display: inline-flex;
  gap: 4px;
  align-items: center;
  margin-top: 14px;
  padding: 4px;
  border: 1px solid rgba(130, 159, 224, 0.24);
  border-radius: 999px;
  color: rgba(226, 235, 255, 0.75);
  background: rgba(11, 18, 42, 0.74);
  font-size: 0.78rem;
}

.sq-toggle span,
.sq-toggle strong {
  padding: 5px 16px;
  border-radius: 999px;
}

.sq-toggle strong {
  color: #fff;
  background: var(--sq-purple);
}

.sq-toggle span:last-child {
  color: #fff;
  background: #4d67ff;
}

.sq-plan-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 36px;
  width: min(980px, 100%);
  margin: 18px auto 0;
}

.sq-plan-card {
  position: relative;
  min-height: 410px;
  padding: 28px 28px 22px;
}

.sq-plan-card.is-featured {
  border-color: var(--sq-gold);
  box-shadow: 0 0 0 1px rgba(255, 173, 15, 0.56), 0 24px 64px rgba(255, 173, 15, 0.1);
}

.sq-plan-badge {
  position: absolute;
  top: -13px;
  left: 50%;
  transform: translateX(-50%);
  min-width: 136px;
  padding: 5px 14px;
  border-radius: 999px;
  background: var(--sq-gold);
  color: #fff;
  text-align: center;
  font-size: 0.7rem;
  font-weight: 900;
  text-transform: uppercase;
}

.sq-plan-card h3 {
  color: #a875ff;
  font-size: 1.05rem;
  text-transform: uppercase;
}

.sq-price {
  display: flex;
  align-items: flex-end;
  gap: 8px;
  margin-top: 18px;
  color: #fff;
}

.sq-price strong {
  font-size: 2rem;
  line-height: 1;
}

.sq-plan-card small {
  display: block;
  margin-top: 8px;
  color: rgba(220, 230, 250, 0.72);
}

.sq-plan-card ul {
  display: grid;
  gap: 12px;
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
  color: rgba(245, 248, 255, 0.86);
  font-size: 0.86rem;
}

.sq-plan-card li {
  display: flex;
  gap: 10px;
  align-items: flex-start;
}

.sq-plan-card li i {
  color: var(--sq-green);
  margin-top: 3px;
}

.sq-plan-btn {
  min-height: 48px;
  width: 100%;
  margin-top: 30px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(154, 92, 255, 0.7);
  border-radius: 7px;
  color: #fff;
  font-weight: 900;
}

.is-featured .sq-plan-btn {
  color: #080b16;
  border-color: transparent;
  background: linear-gradient(180deg, #ffbb2a, #ff9e00);
}

.sq-plan-note {
  margin: 22px 0 0;
  color: rgba(220, 230, 250, 0.78);
  text-align: center;
}

.sq-plan-note i {
  color: #5af295;
}

/* ── New Plan Cards (photo background) ────────────────────────── */

.sq-plans-section {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 12% 20%, rgba(87, 55, 190, 0.34), transparent 34%),
    radial-gradient(circle at 88% 80%, rgba(20, 94, 181, 0.25), transparent 32%),
    #020817;
}

.sq-start-now-card {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.45fr) minmax(280px, 0.75fr);
  gap: clamp(32px, 6vw, 84px);
  align-items: center;
  width: min(1120px, 100%);
  margin: 0 auto;
  padding: clamp(32px, 5vw, 68px);
  overflow: hidden;
  border: 1px solid rgba(147, 197, 253, 0.2);
  border-radius: 28px;
  background: linear-gradient(135deg, rgba(17, 28, 62, 0.96), rgba(6, 13, 36, 0.94));
  box-shadow: 0 32px 90px rgba(0, 0, 0, 0.42), inset 0 1px rgba(255, 255, 255, 0.06);
}

.sq-start-now-card::after {
  content: "";
  position: absolute;
  width: 330px;
  height: 330px;
  right: -120px;
  top: -150px;
  border-radius: 50%;
  background: rgba(114, 74, 225, 0.22);
  filter: blur(12px);
  pointer-events: none;
}

.sq-start-now-copy,
.sq-start-now-action {
  position: relative;
  z-index: 1;
}

.sq-start-now-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 18px;
  padding: 8px 13px;
  border: 1px solid rgba(250, 204, 21, 0.35);
  border-radius: 999px;
  color: #fde68a;
  background: rgba(161, 98, 7, 0.16);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.sq-start-now-copy h2 {
  max-width: 720px;
  margin: 0 0 18px;
  color: #fff;
  font-size: clamp(2rem, 4vw, 3.6rem);
  line-height: 1.06;
  letter-spacing: -0.04em;
}

.sq-start-now-copy > p {
  max-width: 720px;
  margin: 0;
  color: rgba(224, 235, 255, 0.82);
  font-size: clamp(1rem, 1.5vw, 1.12rem);
  line-height: 1.7;
}

.sq-start-now-benefits {
  display: grid;
  gap: 10px;
  margin: 25px 0 0;
  padding: 0;
  color: #e8f1ff;
  list-style: none;
}

.sq-start-now-benefits li {
  display: flex;
  align-items: center;
  gap: 10px;
}

.sq-start-now-benefits i {
  color: #5af295;
}

.sq-start-now-action {
  display: grid;
  gap: 13px;
  justify-items: stretch;
}


.sq-quick-login-head {
  display: grid;
  gap: 4px;
  margin-bottom: 2px;
}

.sq-quick-login-head span {
  color: #ffbd50;
  font-size: 0.7rem;
  font-weight: 900;
  letter-spacing: 0.16em;
}

.sq-quick-login-head strong {
  color: #f8fbff;
  font-family: "Sora", "Manrope", sans-serif;
  font-size: 1.08rem;
  line-height: 1.3;
}

.sq-quick-login-form {
  display: grid;
  gap: 11px;
}

.sq-quick-login-field {
  display: grid;
  gap: 7px;
}

.sq-quick-login-field > span {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: rgba(219, 231, 252, 0.88);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.sq-quick-login-field > span i {
  color: #7db4ff;
}

.sq-quick-login-field input {
  width: 100%;
  min-height: 51px;
  border: 1px solid rgba(132, 166, 226, 0.34);
  border-radius: 12px;
  background: rgba(3, 13, 35, 0.76);
  color: #f7faff;
  font: inherit;
  padding: 11px 14px;
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.sq-quick-login-field input::placeholder {
  color: rgba(173, 193, 226, 0.48);
}

.sq-quick-login-field input:focus {
  border-color: rgba(88, 154, 255, 0.9);
  background: rgba(4, 17, 45, 0.94);
  box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.2);
}

.sq-quick-login-submit {
  min-height: 54px;
  margin-top: 2px;
  border: 1px solid rgba(255, 211, 128, 0.7);
  border-radius: 13px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: linear-gradient(155deg, #ffc247 0%, #f59e0b 100%);
  color: #141627;
  font-family: "Sora", "Manrope", sans-serif;
  font-size: 0.87rem;
  font-weight: 900;
  letter-spacing: 0.04em;
  cursor: pointer;
  box-shadow: 0 14px 28px rgba(245, 158, 11, 0.28);
  transition: transform 0.2s ease, box-shadow 0.2s ease, filter 0.2s ease;
}

.sq-quick-login-submit:hover {
  transform: translateY(-2px);
  filter: brightness(1.04);
  box-shadow: 0 18px 34px rgba(245, 158, 11, 0.4);
}

.sq-quick-login-divider {
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(189, 207, 238, 0.58);
  font-size: 0.67rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.sq-quick-login-divider::before,
.sq-quick-login-divider::after {
  content: "";
  flex: 1;
  height: 1px;
  background: rgba(143, 170, 222, 0.2);
}

.sq-quick-google-login {
  display: grid;
  gap: 8px;
}

.sq-quick-register {
  display: grid;
  gap: 11px;
  margin-top: 2px;
  padding: 14px;
  border: 1px solid rgba(82, 157, 255, 0.3);
  border-radius: 15px;
  background: linear-gradient(145deg, rgba(24, 72, 151, 0.24), rgba(5, 22, 58, 0.58));
}

.sq-quick-register > div {
  display: grid;
  gap: 3px;
}

.sq-quick-register strong {
  color: #f5f9ff;
  font-family: "Sora", "Manrope", sans-serif;
  font-size: 0.9rem;
}

.sq-quick-register span {
  color: rgba(199, 217, 247, 0.76);
  font-size: 0.78rem;
  line-height: 1.4;
}

.sq-quick-register a {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 0 15px;
  border: 1px solid rgba(126, 189, 255, 0.54);
  border-radius: 12px;
  background: linear-gradient(140deg, #2568dd, #14a9e5);
  color: #ffffff;
  font-size: 0.82rem;
  font-weight: 900;
  text-decoration: none;
  box-shadow: 0 12px 24px rgba(31, 112, 219, 0.27);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.sq-quick-register a:hover {
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 16px 30px rgba(31, 132, 231, 0.38);
}

.sq-google-start-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 13px;
  min-height: 58px;
  padding: 14px 20px;
  border: 1px solid rgba(255, 255, 255, 0.7);
  border-radius: 12px;
  color: #172033;
  background: #fff;
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.28);
  font-size: 1rem;
  font-weight: 800;
  text-decoration: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.sq-google-start-btn:hover {
  color: #172033;
  transform: translateY(-2px);
  box-shadow: 0 22px 50px rgba(0, 0, 0, 0.36);
}

.sq-google-mark {
  display: grid;
  width: 28px;
  height: 28px;
  place-items: center;
  border-radius: 50%;
  color: #4285f4;
  font: 900 1.25rem/1 Arial, sans-serif;
}

.sq-start-now-action small {
  color: rgba(207, 221, 248, 0.66);
  font-size: 0.76rem;
  line-height: 1.5;
  text-align: center;
}

.sq-start-now-feedback {
  margin-top: 18px !important;
  padding: 12px 14px;
  border: 1px solid rgba(248, 113, 113, 0.35);
  border-radius: 10px;
  color: #fecaca !important;
  background: rgba(127, 29, 29, 0.22);
  font-size: 0.9rem !important;
}

@media (max-width: 800px) {
  .sq-start-now-card {
    grid-template-columns: 1fr;
    gap: 30px;
    border-radius: 20px;
  }

  .sq-start-now-action {
    width: 100%;
  }
}

/* Tabs */
.sq-plan-tabs {
  display: flex;
  justify-content: center;
  margin: 0 0 36px;
}

.sq-plan-tabs-inner {
  position: relative;
  display: inline-flex;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 999px;
  padding: 4px;
  gap: 0;
}

.sq-plan-tab-indicator {
  position: absolute;
  top: 4px;
  left: 4px;
  height: calc(100% - 8px);
  border-radius: 999px;
  background: linear-gradient(135deg, #4a2a93, #1e3485);
  box-shadow: 0 4px 16px rgba(74, 42, 147, 0.45);
  transition: transform 0.32s cubic-bezier(0.4, 0, 0.2, 1), width 0.32s cubic-bezier(0.4, 0, 0.2, 1);
  pointer-events: none;
  z-index: 0;
}

.sq-plan-tab {
  position: relative;
  z-index: 1;
  background: none;
  border: none;
  cursor: pointer;
  padding: 10px 26px;
  border-radius: 999px;
  font-size: 0.875rem;
  font-weight: 700;
  color: rgba(220, 230, 255, 0.6);
  white-space: nowrap;
  transition: color 0.2s ease;
  user-select: none;
}

.sq-plan-tab.is-active {
  color: #fff;
}

/* Cards panel visibility */
.sq-plan-cards-panel {
  display: none;
}

.sq-plan-cards-panel.is-active {
  display: block;
  animation: sq-fade-in 0.3s ease;
}

@keyframes sq-fade-in {
  from { opacity: 0; transform: translateY(10px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* Plan grid */
.sq-plan-new-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
  width: min(1060px, 100%);
  margin: 0 auto;
}

/* Card */
.sq-plan-new-card {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 360px;
  border-radius: 16px;
  overflow: hidden;
  background-size: cover;
  background-position: center;
  border: 1px solid rgba(255, 255, 255, 0.12);
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.sq-plan-new-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(4, 12, 35, 0.72) 0%,
    rgba(4, 12, 35, 0.55) 40%,
    rgba(4, 12, 35, 0.92) 100%
  );
  z-index: 0;
}

.sq-plan-new-card.is-featured {
  border-color: rgba(255, 193, 35, 0.55);
  box-shadow: 0 0 0 1px rgba(255, 193, 35, 0.3), 0 24px 56px rgba(255, 155, 0, 0.15);
}

.sq-plan-new-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 28px 64px rgba(0, 0, 0, 0.45);
}

.sq-plan-new-top,
.sq-plan-new-bottom {
  position: relative;
  z-index: 1;
  padding: 22px 22px 0;
}

.sq-plan-new-bottom {
  padding: 0 22px 22px;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
}

/* Badge */
.sq-plan-new-badge {
  display: inline-block;
  padding: 4px 12px;
  border-radius: 999px;
  border: 1px solid rgba(255, 205, 60, 0.8);
  color: #ffd560;
  font-size: 0.68rem;
  font-weight: 900;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 14px;
}

.sq-plan-new-top h3 {
  color: #fff;
  font-size: clamp(1.35rem, 2vw, 1.85rem);
  line-height: 1.2;
  font-weight: 900;
  margin: 0 0 12px;
  text-transform: none;
  letter-spacing: normal;
}

.sq-plan-new-top p {
  color: rgba(220, 235, 255, 0.82);
  font-size: 0.875rem;
  line-height: 1.55;
  margin: 0;
}

/* Investment */
.sq-plan-new-invest {
  flex: 0 0 auto;
}

.sq-plan-invest-label {
  display: block;
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: rgba(220, 230, 255, 0.5);
  text-transform: uppercase;
  margin-bottom: 4px;
}

.sq-plan-invest-price {
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  font-weight: 900;
  color: #fff;
  line-height: 1;
}

/* Action buttons */
.sq-plan-new-actions {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 8px;
  flex: 0 0 auto;
}

.sq-plan-action-details {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(220, 235, 255, 0.75);
  text-decoration: none;
  white-space: nowrap;
  transition: color 0.18s ease;
}

.sq-plan-action-details:hover {
  color: #fff;
}

.sq-plan-action-buy {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 9px 18px;
  border-radius: 7px;
  background: linear-gradient(135deg, #ffbb1e, #ff9600);
  color: #080b16;
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-decoration: none;
  white-space: nowrap;
  transition: filter 0.18s ease, transform 0.18s ease;
}

.sq-plan-action-buy:hover {
  filter: brightness(1.1);
  transform: translateY(-1px);
}

.sq-plan-action-cart {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: linear-gradient(135deg, #ffbb1e, #ff9600);
  color: #080b16;
  font-size: 1.1rem;
  text-decoration: none;
  transition: filter 0.18s ease, transform 0.18s ease;
}

.sq-plan-action-cart:hover {
  filter: brightness(1.1);
  transform: translateY(-1px);
}

/* Responsive */
@media (max-width: 860px) {
  .sq-plan-new-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 560px) {
  .sq-plan-new-grid {
    grid-template-columns: 1fr;
  }

  .sq-plan-tab {
    padding: 9px 16px;
    font-size: 0.78rem;
  }
}

.sq-testimonial-card {
  padding: 22px;
}

.sq-person {
  display: flex;
  gap: 14px;
  align-items: center;
}

.sq-person > span {
  width: 52px;
  height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: linear-gradient(180deg, #f4d1b0, #b86d47);
  color: #fff;
  font-weight: 900;
}

.sq-person strong,
.sq-person small {
  display: block;
}

.sq-person strong {
  color: #fff;
}

.sq-person small {
  color: rgba(220, 230, 250, 0.66);
  font-size: 0.76rem;
}

.sq-more-link {
  margin: 24px auto 0;
  display: flex;
  width: max-content;
  align-items: center;
  gap: 12px;
  color: #b77aff;
  font-weight: 900;
}

.sq-final-cta {
  padding: 20px 0 34px;
}

.sq-rocket-panel {
  min-height: 178px;
  display: grid;
  grid-template-columns: 1fr 360px;
  align-items: center;
  gap: 28px;
  padding: 28px 40px;
  border-radius: 8px;
  overflow: hidden;
  background:
    linear-gradient(100deg, rgba(74, 42, 147, 0.95), rgba(57, 29, 124, 0.92) 52%, rgba(25, 52, 133, 0.74)),
    linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0));
}

.sq-rocket-panel h2 {
  margin: 0;
  font-size: clamp(1.7rem, 3vw, 2.45rem);
  color: #fff;
}

.sq-rocket-panel p {
  max-width: 560px;
  margin: 8px 0 18px;
  color: rgba(255, 255, 255, 0.86);
}

.sq-rocket {
  min-height: 150px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.sq-rocket-img {
  width: 140px;
  height: auto;
  transform: rotate(35deg);
  filter: drop-shadow(0 24px 40px rgba(255, 126, 0, 0.42));
}

.home-page .site-footer {
  background: rgba(2, 8, 23, 0.96);
  border-top: 1px solid rgba(130, 159, 224, 0.18);
}

.home-page .footer-shell {
  padding: 36px 0 18px;
}

.home-page .footer-logo {
  width: 148px;
}

.home-page .footer-brand-text,
.home-page .footer-col a {
  font-size: 0.9rem;
}

.home-page .footer-col h3 {
  color: #a875ff;
  font-size: 0.82rem;
}

.footer-whatsapp-btn {
  min-height: 36px;
  margin-top: 14px;
  padding: 0 16px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border-radius: 999px;
  background: #0f7a45;
  color: #fff !important;
  font-size: 0.78rem !important;
  font-weight: 900;
  text-transform: uppercase;
}

.home-page .footer-bottom {
  justify-content: space-between;
  flex-wrap: wrap;
  color: rgba(220, 230, 250, 0.62);
}

.footer-dev-credit {
  margin: 0;
  font-size: 0.85rem;
  color: rgba(188, 209, 244, 0.5);
}

.footer-dev-credit a {
  color: rgba(168, 117, 255, 0.85);
  text-decoration: none;
  font-weight: 600;
  transition: color 0.2s ease;
}

.footer-dev-credit a:hover {
  color: #a875ff;
  text-decoration: underline;
}

@media (max-width: 1120px) {
  .home-page .main-nav {
    gap: 14px;
  }

  .home-page .main-nav a {
    font-size: 0.82rem;
  }

  .login-btn,
  .quote-btn {
    padding: 0 20px;
  }

  .sq-hero-grid {
    grid-template-columns: 1fr;
  }

  .sq-hero-visual {
    min-height: 420px;
  }

  .sq-study-photo {
    inset: 0;
    border-radius: 8px;
  }

  .sq-float-card {
    right: 18px;
  }

  .sq-feature-grid,
  .sq-testimonial-grid,
  .sq-stats-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .sq-stats-home .sq-stat-card:nth-child(2) {
    border-right: 0;
  }

  .sq-stats-home .sq-stat-card:nth-child(-n + 2) {
    border-bottom: 1px solid rgba(130, 159, 224, 0.14);
  }

  .sq-method-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .sq-method-grid::before {
    display: none;
  }

  .sq-plan-grid {
    gap: 20px;
  }
}

@media (max-width: 880px) {
  .home-page .site-nav-toggle {
    display: inline-flex;
  }

  .home-page .site-header-actions {
    position: fixed;
    top: 0;
    right: 0;
    width: min(360px, 100vw);
    height: 100vh;
    padding: 96px 20px 24px;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    gap: 14px;
    background: rgba(3, 10, 31, 0.98);
    border-left: 1px solid rgba(220, 233, 255, 0.13);
    transform: translateX(100%);
    transition: transform 0.24s ease;
    z-index: 150;
  }

  .home-page .main-nav {
    flex-direction: column;
    align-items: stretch;
  }

  .home-page .main-nav a {
    min-height: 48px;
  }

  .home-page .main-nav a:first-child::after {
    display: none;
  }

  .login-btn,
  .quote-btn {
    width: 100%;
  }

  .sq-plan-grid,
  .sq-rocket-panel {
    grid-template-columns: 1fr;
  }

  .sq-rocket {
    min-height: 100px;
  }

  .sq-rocket-img {
    width: 100px;
  }
}

@media (max-width: 680px) {
  .sq-container,
  .home-page .menu-wrap {
    width: min(100% - 28px, 1180px);
  }

  .sq-hero {
    padding-top: 34px;
  }

  .sq-hero-grid {
    min-height: auto;
    gap: 20px;
  }

  .sq-hero-copy {
    padding: 18px 0 12px;
  }

  .sq-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .sq-btn {
    width: 100%;
  }

  .sq-hero-visual {
    min-height: 360px;
  }

  .sq-dashboard-card {
    width: 180px;
    left: 12px;
    bottom: 42px;
  }

  .sq-float-card {
    position: relative;
    top: auto;
    right: auto;
    width: calc(100% - 26px);
    min-height: 82px;
    margin: 12px 13px;
    padding: 14px 16px;
  }

  .sq-float-one {
    margin-top: 24px;
  }

  .sq-float-two,
  .sq-float-three {
    display: none;
  }

  .sq-feature-grid,
  .sq-testimonial-grid,
  .sq-stats-grid,
  .sq-method-grid {
    grid-template-columns: 1fr;
  }

  .sq-stats-home .sq-stat-card,
  .sq-stats-home .sq-stat-card:nth-child(2),
  .sq-stats-home .sq-stat-card:nth-child(-n + 2) {
    border-right: 0;
    border-bottom: 1px solid rgba(130, 159, 224, 0.14);
  }

  .sq-stats-home .sq-stat-card:last-child {
    border-bottom: 0;
  }

  .sq-stats-home .sq-stat-card {
    padding: 24px 22px;
  }

  .sq-feature-grid-enhanced .sq-feature-card {
    min-height: auto;
    padding: 26px 22px 24px;
  }

  .sq-feature-icon {
    width: 64px;
    height: 64px;
    margin-bottom: 16px;
  }

  .sq-method-grid {
    gap: 42px;
  }

  .sq-plan-card {
    min-height: auto;
  }

  .sq-rocket-panel {
    padding: 24px 20px;
  }

  .home-dots {
    display: none;
  }
}

.sq-hero-exact {
  padding: 0;
}

.sq-hero-exact .sq-hero-shot {
  line-height: 0;
}

@media (max-width: 991px) {
  .sq-hero-exact {
    display: flex;
    flex-direction: column;
    background: #020817;
  }
  
  .sq-hero-exact .sq-hero-shot {
    order: 2;
    position: relative;
  }
  
  .sq-hero-exact .sq-hero-overlay {
    order: 1;
    position: relative;
    top: auto;
    left: auto;
    transform: none;
    max-width: 100%;
    padding: 18px 22px 14px;
    text-align: center;
    align-items: center;
  }
  
  .sq-hero-exact .sq-hero-buttons {
    justify-content: center;
    width: 100%;
  }
}



@media (max-width: 767px) {
  .sq-hero-shot::before,
  .sq-hero-shot::after {
    display: none;
  }

  .sq-hero-shot img {
    min-height: 0;
  }

  .sq-hero-overlay::before {
    inset: -10px -10px -14px;
    border-radius: 24px;
    opacity: 0.72;
  }

  .sq-hero-overlay h1 {
    font-size: clamp(2.08rem, 9vw, 2.95rem);
    line-height: 1.06;
    letter-spacing: -0.04em;
  }

  .sq-hero-overlay p {
    margin-top: 16px;
    font-size: 0.98rem;
    line-height: 1.62;
  }

  .sq-hero-buttons .sq-btn {
    width: 100%;
  }
}

/* =============================================================================
   NOVO DESIGN DE CARDS DE PLANOS
   ============================================================================= */
.sq-plan-new-card {
  min-height: 436px;
  border-radius: 20px;
  border: none !important;
}

.sq-plan-new-card::before {
  content: "" !important;
  position: absolute !important;
  inset: 0 !important;
  background-image: var(--card-bg-image) !important;
  background-size: cover !important;
  background-position: center !important;
  opacity: 1 !important; /* Show the golden border of the image at 100% opacity */
  z-index: 0 !important;
  display: block !important;
  pointer-events: none !important;
}

.sq-plan-new-top, .sq-plan-new-bottom {
  position: relative !important;
  z-index: 1 !important;
}

.sq-plan-new-card.is-featured {
  border: none !important;
  box-shadow: 0 0 25px rgba(255, 188, 0, 0.35), 0 24px 56px rgba(255, 155, 0, 0.15);
}

.sq-plan-new-badge {
  border: 1px solid #ffbc00 !important;
  color: #ffbc00 !important;
  border-radius: 50px !important;
  font-family: Sora, sans-serif !important;
  font-size: 0.72rem !important;
  font-weight: 700 !important;
  padding: 5px 14px !important;
}

.sq-plan-new-top h3 {
  text-transform: uppercase;
  font-family: Sora, sans-serif;
  font-weight: 900;
  font-size: 1.65rem;
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: #ffffff;
  margin-bottom: 12px;
}

.sq-plan-new-top p {
  color: rgba(220, 235, 255, 0.75);
  font-size: 0.85rem;
  line-height: 1.5;
}

.sq-plan-invest-price {
  font-family: Sora, sans-serif;
  font-size: clamp(1.25rem, 2vw, 1.65rem) !important;
}

.sq-plan-new-bottom {
  display: flex !important;
  flex-direction: column !important;
  gap: 16px !important;
  width: 100% !important;
  padding: 0 20px 20px !important;
  align-items: stretch !important;
}

.sq-plan-new-price-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  gap: 8px;
}

.sq-plan-action-details {
  border: 1.5px solid #ffbc00;
  color: #ffbc00;
  border-radius: 8px;
  padding: 6px 10px;
  font-size: 0.58rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  text-decoration: none;
  white-space: nowrap;
  transition: background-color 0.2s, transform 0.2s;
}

.sq-plan-action-details:hover {
  background-color: rgba(255, 188, 0, 0.1);
  transform: translateY(-1px);
}

.sq-plan-new-cta-row {
  width: 100%;
}

.sq-plan-btn-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  background: linear-gradient(135deg, #ffbc00 0%, #ff9500 100%);
  color: #040c23 !important;
  font-family: Sora, sans-serif;
  font-weight: 800;
  font-size: 0.88rem;
  letter-spacing: 0.06em;
  border-radius: 12px;
  padding: 15px 24px;
  text-decoration: none;
  text-transform: uppercase;
  box-shadow: 0 4px 15px rgba(255, 188, 0, 0.3);
  transition: transform 0.2s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.2s ease;
  border: none;
  position: relative;
  cursor: pointer;
}

.sq-plan-btn-cta:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(255, 188, 0, 0.5);
}

.sq-plan-btn-cta:active {
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(255, 188, 0, 0.3);
}

.sq-plan-btn-free i {
  margin-right: 8px;
  font-size: 1rem;
}

.sq-btn-arrow-wrap {
  position: absolute;
  right: 14px;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background-color: #040c23;
  color: #ffbc00;
  font-size: 0.75rem;
  transition: transform 0.2s ease;
}

.sq-plan-btn-cta:hover .sq-btn-arrow-wrap {
  transform: translateY(-50%) scale(1.1);
}

/* =============================================================================
   FIM — theme-site.css
   ============================================================================= */
