/* ==========================================================================
   AURION SISTEMAS - FOLHA DE ESTILOS DO SITE OFICIAL (CSS MODERNO / NATIVO)
   Paleta: Dark Slate & Gold Premium (#070b14 / #0f172a / #f59e0b / #fbbf24)
   ========================================================================== */

:root {
  --bg-body: #070b14;
  --bg-surface: #0d1424;
  --bg-card: #131d31;
  --bg-card-hover: #18243d;
  --border-subtle: rgba(255, 255, 255, 0.08);
  --border-gold: rgba(245, 158, 11, 0.35);
  --gold-primary: #f59e0b;
  --gold-light: #fbbf24;
  --gold-dark: #d97706;
  --gold-glow: rgba(245, 158, 11, 0.3);
  --text-main: #f8fafc;
  --text-muted: #94a3b8;
  --text-dim: #64748b;
  --success: #10b981;
  --danger: #ef4444;
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 22px;
  --radius-full: 9999px;
  --shadow-card: 0 10px 30px -5px rgba(0, 0, 0, 0.6);
  --shadow-gold: 0 10px 25px -3px rgba(245, 158, 11, 0.25);
  --transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}

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

html {
  scroll-behavior: smooth;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  background-color: var(--bg-body);
  color: var(--text-main);
  line-height: 1.6;
}

body {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  overflow-x: hidden;
  background-color: transparent;
  position: relative;
}

/* Camadas de conteudo sempre acima do fundo d'agua */
.navbar,
main,
.hero,
.section,
.consultoria-section,
.trial-banner,
.footer,
.auth-wrapper,
.download-wrapper,
.admin-wrapper {
  position: relative;
  z-index: 1;
}

/* ==========================================================================
   FUNDO LÍQUIDO FLUIDO COM TRANSIÇÃO EM FLUXO DE ÁGUA (100% GPU / ZERO PESO)
   ========================================================================== */
.water-canvas-bg {
  position: fixed;
  inset: 0;
  width: 100vw;
  height: 100vh;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
  /* Gradiente oceanico profundo com transicao fluida continua estilo corrente de agua */
  background: linear-gradient(
    125deg,
    #030713 0%,
    #061327 15%,
    #092342 35%,
    #083b5c 52%,
    #082746 70%,
    #05152d 86%,
    #020610 100%
  );
  background-size: 350% 350%;
  animation: waterGradientFlow 18s ease-in-out infinite alternate;
}

/* Malha aquatica profunda com correntes continuas de agua */
.water-canvas-bg::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: 
    radial-gradient(ellipse 55% 50% at 20% 25%, rgba(0, 210, 255, 0.30) 0%, transparent 62%),
    radial-gradient(ellipse 65% 55% at 85% 30%, rgba(14, 165, 233, 0.26) 0%, transparent 62%),
    radial-gradient(ellipse 70% 60% at 60% 85%, rgba(2, 132, 199, 0.24) 0%, transparent 65%),
    radial-gradient(ellipse 55% 50% at 15% 80%, rgba(16, 185, 129, 0.20) 0%, transparent 62%);
  filter: blur(85px);
  animation: waterCurrentsSwirl 25s ease-in-out infinite alternate;
  will-change: transform;
}

/* Correntes liquidas com aceleracao de hardware */
.water-stream {
  position: absolute;
  border-radius: 50%;
  filter: blur(85px);
  will-change: transform;
  backface-visibility: hidden;
  transform: translateZ(0);
}

/* Corrente 1: Ciano Cristalino Superior (Fluindo em onda) */
.water-stream-1 {
  top: -10%;
  left: 6%;
  width: 75vw;
  height: 65vw;
  max-width: 950px;
  max-height: 850px;
  background: radial-gradient(circle, rgba(0, 210, 255, 0.35) 0%, rgba(2, 132, 199, 0.20) 50%, transparent 75%);
  animation: waterWaveFlowOne 20s cubic-bezier(0.4, 0, 0.2, 1) infinite alternate;
}

/* Corrente 2: Azul Cobalto Oceanico Lateral */
.water-stream-2 {
  top: 30%;
  right: -12%;
  width: 80vw;
  height: 70vw;
  max-width: 1000px;
  max-height: 900px;
  background: radial-gradient(circle, rgba(14, 165, 233, 0.30) 0%, rgba(30, 64, 175, 0.18) 50%, transparent 75%);
  animation: waterWaveFlowTwo 25s cubic-bezier(0.4, 0, 0.2, 1) infinite alternate;
}

/* Corrente 3: Esmeralda Marinha Suave */
.water-stream-3 {
  bottom: -15%;
  left: 8%;
  width: 70vw;
  height: 60vw;
  max-width: 900px;
  max-height: 800px;
  background: radial-gradient(circle, rgba(16, 185, 129, 0.24) 0%, rgba(6, 182, 212, 0.16) 50%, transparent 75%);
  animation: waterWaveFlowThree 28s cubic-bezier(0.4, 0, 0.2, 1) infinite alternate;
}

/* Superficie aquatica com ondulacao fluida translucida (reflexos de luz na agua) */
.water-surface-flow {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg, 
    transparent 0%, 
    rgba(0, 210, 255, 0.08) 22%, 
    rgba(255, 255, 255, 0.045) 45%, 
    rgba(14, 165, 233, 0.08) 65%, 
    rgba(16, 185, 129, 0.065) 85%, 
    transparent 100%
  );
  background-size: 280% 280%;
  animation: waterSurfaceShimmer 14s ease-in-out infinite alternate;
  mix-blend-mode: screen;
}

@keyframes waterGradientFlow {
  0% { background-position: 0% 15%; }
  50% { background-position: 100% 85%; }
  100% { background-position: 15% 100%; }
}

@keyframes waterCurrentsSwirl {
  0% { transform: translate3d(0, 0, 0) scale(1) rotate(0deg); }
  33% { transform: translate3d(55px, -45px, 0) scale(1.08) rotate(3deg); }
  66% { transform: translate3d(-50px, 50px, 0) scale(0.95) rotate(-3deg); }
  100% { transform: translate3d(35px, 25px, 0) scale(1.05) rotate(2deg); }
}

@keyframes waterWaveFlowOne {
  0% { transform: translate3d(0, 0, 0) scale(1) rotate(0deg); }
  50% { transform: translate3d(90px, 60px, 0) scale(1.12) rotate(14deg); }
  100% { transform: translate3d(-55px, 90px, 0) scale(0.92) rotate(-10deg); }
}

@keyframes waterWaveFlowTwo {
  0% { transform: translate3d(0, 0, 0) scale(1) rotate(0deg); }
  50% { transform: translate3d(-100px, -60px, 0) scale(1.15) rotate(-16deg); }
  100% { transform: translate3d(50px, -90px, 0) scale(0.90) rotate(12deg); }
}

@keyframes waterWaveFlowThree {
  0% { transform: translate3d(0, 0, 0) scale(1) rotate(0deg); }
  50% { transform: translate3d(75px, -65px, 0) scale(1.11) rotate(12deg); }
  100% { transform: translate3d(-80px, 40px, 0) scale(0.92) rotate(-14deg); }
}

@keyframes waterSurfaceShimmer {
  0% { background-position: 0% 10%; }
  50% { background-position: 100% 70%; }
  100% { background-position: 20% 90%; }
}

a {
  color: var(--gold-light);
  text-decoration: none;
  transition: var(--transition);
}

a:hover {
  color: #ffffff;
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ==========================================================================
   NAVBAR MODERNA (GLASSMORPHISM) & NAVEGAÇÃO
   ========================================================================== */
.navbar {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(7, 12, 22, 0.84);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  padding: 14px 0;
  transition: background 0.3s ease;
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.nav-brand {
  display: flex;
  align-items: center;
  text-decoration: none;
  flex-shrink: 0;
}

.nav-brand img {
  height: 40px;
  width: auto;
  max-width: 180px;
  object-fit: contain;
  display: block;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 24px;
  list-style: none;
}

.nav-links a {
  color: #94a3b8;
  font-size: 14.5px;
  font-weight: 500;
  padding: 8px 12px;
  border-radius: var(--radius-sm);
  transition: all 0.2s ease;
}

.nav-links a:hover {
  color: #ffffff;
  background: rgba(255, 255, 255, 0.05);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.nav-cta-btn {
  padding: 10px 22px;
  font-size: 14px;
  font-weight: 700;
  white-space: nowrap;
}

/* BOTÃO HAMBÚRGUER MOBILE */
.nav-toggle-btn {
  display: none;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  width: 44px;
  height: 44px;
  padding: 11px;
  cursor: pointer;
  flex-direction: column;
  justify-content: space-around;
  align-items: center;
  transition: all 0.25s ease;
  z-index: 1002;
}

.nav-toggle-btn:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(0, 194, 224, 0.4);
}

.nav-toggle-btn .hamburger-bar {
  width: 22px;
  height: 2px;
  background-color: #ffffff;
  border-radius: 2px;
  transition: all 0.3s ease;
  display: block;
}

/* Hambúrguer animando para X */
.nav-toggle-btn.active .hamburger-bar:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.nav-toggle-btn.active .hamburger-bar:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}
.nav-toggle-btn.active .hamburger-bar:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* GAVETA / DRAWER MOBILE */
.mobile-drawer {
  position: fixed;
  top: 68px;
  left: 0;
  width: 100%;
  height: calc(100vh - 68px);
  background: rgba(7, 12, 22, 0.97);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 24px 20px 40px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: opacity 0.3s ease, transform 0.3s ease, visibility 0.3s;
  z-index: 999;
  overflow-y: auto;
}

.mobile-drawer.active {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.mobile-nav-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.mobile-nav-links .mobile-link {
  display: block;
  padding: 14px 18px;
  color: #f1f5f9;
  font-size: 15.5px;
  font-weight: 600;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
  transition: all 0.2s ease;
  text-decoration: none;
}

.mobile-nav-links .mobile-link:active,
.mobile-nav-links .mobile-link:hover {
  background: rgba(245, 158, 11, 0.12);
  border-color: rgba(245, 158, 11, 0.35);
  color: var(--gold-light);
  transform: translateX(4px);
}

.mobile-drawer-footer {
  margin-top: 20px;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.mobile-drawer-footer .btn {
  width: 100%;
  text-align: center;
  justify-content: center;
  font-size: 15px;
  padding: 13px 18px;
}

/* ==========================================================================
   BOTÕES E BADGES
   ========================================================================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 12px 24px;
  border-radius: var(--radius-sm);
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  border: 1px solid transparent;
  transition: var(--transition);
  text-align: center;
  text-decoration: none;
}

.btn-primary {
  background: linear-gradient(135deg, var(--gold-light) 0%, var(--gold-dark) 100%);
  color: #070b14;
  box-shadow: var(--shadow-gold);
  border: none;
}

.btn-primary:hover {
  background: linear-gradient(135deg, #ffffff 0%, var(--gold-light) 100%);
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(245, 158, 11, 0.4);
  color: #070b14;
}

.btn-outline {
  background: rgba(255, 255, 255, 0.04);
  color: var(--text-main);
  border: 1px solid var(--border-gold);
}

.btn-outline:hover {
  background: rgba(245, 158, 11, 0.1);
  border-color: var(--gold-light);
  color: #ffffff;
  transform: translateY(-2px);
}

.btn-lg {
  padding: 16px 36px;
  font-size: 17px;
  border-radius: var(--radius-md);
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  border-radius: var(--radius-full);
  font-size: 13px;
  font-weight: 600;
  background: rgba(245, 158, 11, 0.12);
  color: var(--gold-light);
  border: 1px solid var(--border-gold);
}

/* ==========================================================================
   HERO SECTION
   ========================================================================== */
.hero {
  padding: 70px 0 90px 0;
  text-align: center;
  position: relative;
}

.hero-badge-wrap {
  margin-bottom: 24px;
}

.hero h1 {
  font-size: 50px;
  font-weight: 800;
  letter-spacing: -1px;
  line-height: 1.15;
  margin-bottom: 22px;
  background: linear-gradient(180deg, #ffffff 30%, #cbd5e1 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero h1 span.gold-text {
  background: linear-gradient(135deg, var(--gold-light) 0%, #f97316 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero p.subtitle {
  font-size: 19px;
  color: var(--text-muted);
  max-width: 820px;
  margin: 0 auto 36px auto;
  line-height: 1.6;
}

.hero-ctas {
  display: flex;
  justify-content: center;
  gap: 18px;
  margin-bottom: 50px;
  flex-wrap: wrap;
}

.hero-mockup-wrap {
  margin: 0 auto;
  max-width: 693px; /* Tamanho original nativo para zero distorção */
  width: 100%;
  position: relative;
  padding: 24px 20px;
  background: radial-gradient(ellipse at center, rgba(15, 23, 42, 0.85) 0%, rgba(7, 11, 20, 0.95) 100%);
  border: 1px solid rgba(0, 194, 224, 0.22);
  border-radius: var(--radius-lg);
  box-shadow: 0 25px 60px -15px rgba(0, 0, 0, 0.85), 0 0 35px rgba(0, 194, 224, 0.12);
  backdrop-filter: blur(16px);
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-mockup-wrap::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 95%;
  height: 85%;
  background: radial-gradient(circle, rgba(0, 194, 224, 0.22) 0%, rgba(16, 185, 129, 0.12) 45%, rgba(7, 11, 20, 0) 75%);
  z-index: -1;
  filter: blur(40px);
}

.hero-mockup {
  width: 100%;
  max-width: 693px;
  height: auto;
  aspect-ratio: 693 / 535;
  object-fit: contain;
  display: block;
  border-radius: 0;
  border: none;
  box-shadow: none;
  filter: drop-shadow(0 14px 30px rgba(0, 194, 224, 0.2));
  /* Sem scale no hover para manter nitidez original e não distorcer */
  transition: filter 0.3s ease;
}

.hero-mockup-wrap:hover .hero-mockup {
  filter: drop-shadow(0 18px 40px rgba(0, 194, 224, 0.28));
}


/* ==========================================================================
   SEÇÃO TRIAL 7 DIAS (DESTAQUE)
   ========================================================================== */
.trial-banner {
  background: linear-gradient(135deg, rgba(24, 34, 60, 0.82) 0%, rgba(16, 24, 43, 0.86) 100%);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid var(--border-gold);
  border-radius: var(--radius-lg);
  padding: 40px;
  margin: 40px 0 80px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  box-shadow: var(--shadow-card);
}

.trial-content h2 {
  font-size: 28px;
  color: #ffffff;
  margin-bottom: 10px;
}

.trial-content p {
  color: var(--text-muted);
  font-size: 16px;
  max-width: 650px;
}

.trial-badges {
  display: flex;
  gap: 16px;
  margin-top: 18px;
  flex-wrap: wrap;
}

.trial-badge-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: var(--gold-light);
}

/* ==========================================================================
   SEÇÃO DE RECURSOS / GRID DE MÓDULOS
   ========================================================================== */
.section {
  padding: 80px 0;
}

.section-header {
  text-align: center;
  margin-bottom: 60px;
}

.section-header h2 {
  font-size: 38px;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 14px;
}

.section-header p {
  font-size: 18px;
  color: var(--text-muted);
  max-width: 680px;
  margin: 0 auto;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
  gap: 28px;
}

.feature-card {
  background: rgba(13, 21, 38, 0.72);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: var(--radius-md);
  padding: 32px 28px;
  transition: transform 0.28s cubic-bezier(0.16, 1, 0.3, 1), 
              border-color 0.28s ease, 
              box-shadow 0.28s ease, 
              background 0.28s ease;
  position: relative;
  overflow: hidden;
}

.feature-card:hover {
  transform: translateY(-5px);
  border-color: rgba(245, 158, 11, 0.5);
  box-shadow: 0 20px 40px -10px rgba(0, 0, 0, 0.8), 0 0 28px rgba(245, 158, 11, 0.18);
  background: rgba(18, 30, 54, 0.85);
}

.feature-icon {
  width: 54px;
  height: 54px;
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(245, 158, 11, 0.18) 0%, rgba(245, 158, 11, 0.05) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 22px;
  border: 1px solid rgba(245, 158, 11, 0.35);
  font-size: 28px;
  line-height: 1;
  flex-shrink: 0;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.3), inset 0 1px 1px rgba(255, 255, 255, 0.12);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.feature-card:hover .feature-icon {
  transform: scale(1.12) rotate(3deg);
  border-color: var(--gold-light);
  box-shadow: 0 6px 20px rgba(245, 158, 11, 0.3);
}

.feature-card h3 {
  font-size: 21px;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 12px;
}

.feature-card p {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.6;
}

/* ==========================================================================
   SEÇÃO CONSULTORIA VIP & IMPLANTAÇÃO
   ========================================================================== */
.consultoria-section {
  background: linear-gradient(180deg, rgba(245, 158, 11, 0.04) 0%, rgba(7, 11, 20, 0) 100%);
  border-top: 1px solid var(--border-gold);
  border-bottom: 1px solid var(--border-gold);
  padding: 90px 0;
}

.consultoria-box {
  background: rgba(15, 25, 45, 0.82);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 2px solid var(--gold-primary);
  border-radius: var(--radius-lg);
  padding: 48px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.7), 0 0 35px rgba(245, 158, 11, 0.2);
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 40px;
  align-items: center;
}

.consultoria-info h2 {
  font-size: 32px;
  color: #ffffff;
  margin-bottom: 16px;
}

.consultoria-info p {
  font-size: 16px;
  color: var(--text-muted);
  margin-bottom: 24px;
}

.consultoria-checklist {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.consultoria-checklist li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 15px;
  color: var(--text-main);
}

.consultoria-checklist li span.icon {
  color: var(--gold-light);
  font-size: 16px;
  line-height: 1.2;
}

.consultoria-card-cta {
  background: rgba(20, 32, 56, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid var(--border-gold);
  border-radius: var(--radius-md);
  padding: 32px;
  text-align: center;
}

.consultoria-price-tag {
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--gold-light);
  margin-bottom: 8px;
}

.consultoria-highlight {
  font-size: 26px;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 16px;
}

/* ==========================================================================
   SEÇÃO DE PLANOS & PREÇOS
   ========================================================================== */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 30px;
  align-items: stretch;
}

.pricing-card {
  background: rgba(19, 29, 49, 0.72);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 40px 32px;
  display: flex;
  flex-direction: column;
  position: relative;
  transition: var(--transition);
}

.pricing-card.featured {
  border-color: var(--gold-primary);
  background: linear-gradient(180deg, rgba(25, 37, 64, 0.88) 0%, rgba(16, 25, 46, 0.92) 100%);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.7), 0 0 25px rgba(245, 158, 11, 0.25);
  transform: scale(1.03);
}

.pricing-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--gold-primary);
  color: #070b14;
  padding: 4px 16px;
  border-radius: var(--radius-full);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.pricing-title {
  font-size: 24px;
  color: #ffffff;
  margin-bottom: 8px;
}

.pricing-desc {
  font-size: 14px;
  color: var(--text-muted);
  margin-bottom: 24px;
  min-height: 44px;
}

.pricing-price {
  font-size: 42px;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 28px;
  display: flex;
  align-items: baseline;
  gap: 6px;
}

.pricing-price span.period {
  font-size: 16px;
  font-weight: 400;
  color: var(--text-dim);
}

.pricing-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 36px;
  flex-grow: 1;
}

.pricing-features li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: var(--text-main);
}

.pricing-features li.disabled {
  color: var(--text-dim);
  text-decoration: line-through;
}

/* ==========================================================================
   FORMULÁRIOS & PÁGINAS DE CADASTRO / DOWNLOAD
   ========================================================================== */
.auth-page {
  padding: 60px 0;
  display: flex;
  justify-content: center;
}

.auth-card {
  width: 100%;
  max-width: 540px;
  background: rgba(19, 29, 49, 0.82);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid var(--border-gold);
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: var(--shadow-card);
}

.auth-header {
  text-align: center;
  margin-bottom: 32px;
}

.auth-header img {
  height: 48px;
  margin-bottom: 16px;
}

.auth-header h2 {
  font-size: 26px;
  color: #ffffff;
}

.auth-header p {
  font-size: 15px;
  color: var(--text-muted);
  margin-top: 6px;
}

.form-group {
  margin-bottom: 20px;
  text-align: left;
}

.form-group label {
  display: block;
  font-size: 14px;
  font-weight: 600;
  color: #cbd5e1;
  margin-bottom: 8px;
}

.form-control {
  width: 100%;
  padding: 14px 16px;
  background: #090f1c;
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-sm);
  color: #ffffff;
  font-size: 15px;
  transition: var(--transition);
}

.form-control:focus {
  outline: none;
  border-color: var(--gold-light);
  box-shadow: 0 0 0 3px rgba(245, 158, 11, 0.2);
  background: #0c1527;
}

.form-check {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin: 22px 0;
  cursor: pointer;
}

.form-check input[type="checkbox"] {
  width: 18px;
  height: 18px;
  accent-color: var(--gold-primary);
  margin-top: 3px;
  cursor: pointer;
}

.form-check label {
  font-size: 14px;
  color: var(--text-muted);
  cursor: pointer;
}

/* ==========================================================================
   MODAL DE CONFIRMAÇÃO POR CÓDIGO (6 DÍGITOS)
   ========================================================================== */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(4, 7, 13, 0.88);
  backdrop-filter: blur(8px);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 2000;
  padding: 16px;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}

.modal-overlay.active {
  display: flex;
}

.modal-box {
  background: #0d1527;
  border: 1.5px solid var(--gold-primary);
  border-radius: var(--radius-md);
  padding: 32px 24px;
  max-width: 480px;
  width: 100%;
  max-height: calc(100vh - 32px);
  max-height: calc(100dvh - 32px);
  margin: auto;
  display: flex;
  flex-direction: column;
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.85), 0 0 25px rgba(245, 158, 11, 0.2);
  animation: modalPop 0.22s cubic-bezier(0.16, 1, 0.3, 1);
  box-sizing: border-box;
}

@keyframes modalPop {
  0% { transform: scale(0.92); opacity: 0; }
  100% { transform: scale(1); opacity: 1; }
}

.otp-inputs {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin: 28px 0;
}

.otp-slot {
  width: 52px;
  height: 60px;
  background: #090f1a;
  border: 2px solid var(--border-subtle);
  border-radius: var(--radius-sm);
  color: var(--gold-light);
  font-size: 26px;
  font-weight: 800;
  text-align: center;
  font-family: monospace;
  transition: var(--transition);
}

.otp-slot:focus {
  outline: none;
  border-color: var(--gold-light);
  box-shadow: 0 0 0 3px rgba(245, 158, 11, 0.25);
  background: #111b2f;
}

/* ==========================================================================
   PORTAL DE DOWNLOAD
   ========================================================================== */
.download-hero {
  text-align: center;
  padding: 50px 0;
}

.download-hero h1 {
  font-size: 40px;
  color: #ffffff;
  margin-bottom: 12px;
}

.download-card {
  background: rgba(19, 29, 49, 0.82);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid var(--border-gold);
  border-radius: var(--radius-lg);
  padding: 44px;
  max-width: 720px;
  margin: 0 auto;
  box-shadow: var(--shadow-card);
  text-align: center;
}

.credentials-box {
  background: rgba(9, 14, 26, 0.75);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px dashed var(--border-gold);
  border-radius: var(--radius-md);
  padding: 24px;
  margin: 28px 0;
  text-align: left;
}

.credentials-box h4 {
  color: var(--gold-light);
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 12px;
}

.cred-row {
  display: flex;
  justify-content: space-between;
  padding: 8px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  font-size: 15px;
}

.cred-row:last-child {
  border-bottom: none;
}

.cred-row span.label {
  color: var(--text-dim);
}

.cred-row span.val {
  color: #ffffff;
  font-weight: 600;
  font-family: monospace;
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
  margin: 40px 0;
  text-align: left;
}

.step-card {
  background: #0f172a;
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  padding: 24px;
}

.step-num {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(245, 158, 11, 0.15);
  color: var(--gold-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 16px;
  margin-bottom: 14px;
  border: 1px solid var(--border-gold);
}

.step-card h4 {
  font-size: 16px;
  color: #ffffff;
  margin-bottom: 8px;
}

.step-card p {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.5;
}

/* ==========================================================================
   RODAPÉ
   ========================================================================== */
.footer {
  margin-top: auto;
  background: rgba(5, 8, 16, 0.82);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border-top: 1px solid var(--border-subtle);
  padding: 60px 0 30px 0;
  color: var(--text-dim);
  font-size: 14px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 50px;
}

.footer-brand img {
  height: 38px;
  margin-bottom: 16px;
}

.footer-col h4 {
  color: #ffffff;
  font-size: 15px;
  margin-bottom: 18px;
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-links a {
  color: var(--text-muted);
  font-size: 14px;
}

.footer-links a:hover {
  color: var(--gold-light);
}

.footer-bottom {
  text-align: center;
  padding-top: 30px;
  border-top: 1px solid var(--border-subtle);
  font-size: 13px;
}

/* ==========================================================================
   FEEDBACK TOASTS & SPINNER
   ========================================================================== */
.toast-msg {
  position: fixed;
  bottom: 24px;
  right: 24px;
  background: #0f182c;
  border-left: 4px solid var(--gold-primary);
  border-radius: var(--radius-sm);
  padding: 16px 24px;
  color: #ffffff;
  font-size: 14px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.8);
  z-index: 2000;
  display: none;
  animation: slideIn 0.3s ease;
}

.toast-msg.success { border-left-color: var(--success); }
.toast-msg.error { border-left-color: var(--danger); }

@keyframes slideIn {
  from { transform: translateX(100%); opacity: 0; }
  to { transform: translateX(0); opacity: 1; }
}

/* ==========================================================================
   OTIMIZAÇÃO COMPLETA PARA DISPOSITIVOS MÓVEIS (TABLETS & SMARTPHONES)
   ========================================================================== */
@media (max-width: 960px) {
  .nav-links {
    display: none;
  }
  .nav-toggle-btn {
    display: flex;
  }
  .nav-cta-btn {
    display: none;
  }
  .navbar {
    padding: 10px 0;
  }
  .nav-brand img {
    height: 34px;
    max-width: 150px;
  }
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
  .pricing-grid {
    grid-template-columns: 1fr;
    max-width: 480px;
    margin: 0 auto;
  }
  .pricing-card.featured {
    transform: none;
  }
  .consultoria-box {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .trial-banner {
    flex-direction: column;
    text-align: center;
    gap: 24px;
  }
  .trial-badges {
    justify-content: center;
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }
}

@media (max-width: 640px) {
  .container {
    padding: 0 16px;
  }

  /* Hero no Mobile */
  .hero {
    padding: 36px 0 50px 0;
  }
  .hero-badge-wrap {
    margin-bottom: 14px;
  }
  .hero .badge {
    font-size: 11.5px;
    padding: 6px 12px;
    line-height: 1.4;
    white-space: normal;
    text-align: center;
  }
  .hero h1 {
    font-size: clamp(26px, 8vw, 34px);
    letter-spacing: -0.5px;
    line-height: 1.22;
    margin-bottom: 14px;
  }
  .hero p.subtitle {
    font-size: 15px;
    line-height: 1.55;
    margin-bottom: 26px;
  }
  .hero-ctas {
    flex-direction: column;
    width: 100%;
    gap: 12px;
    margin-bottom: 32px;
  }
  .hero-ctas .btn {
    width: 100%;
    padding: 16px 20px;
    font-size: 16px;
  }

  /* Mockup no Mobile: Tamanho original responsivo, sem distorção e sem transbordo */
  .hero-mockup-wrap {
    padding: 14px 10px;
    border-radius: 16px;
    max-width: 100%;
  }
  .hero-mockup {
    width: 100%;
    max-width: 100%;
    height: auto;
    aspect-ratio: 693 / 535;
    object-fit: contain;
  }

  /* Seções e Grids em 1 Coluna Fluida */
  .features-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .feature-card {
    padding: 24px 20px;
  }
  .trial-banner {
    padding: 28px 18px;
    border-radius: var(--radius-md);
  }
  .trial-badges {
    flex-direction: column;
    align-items: stretch;
    gap: 8px;
  }
  .trial-badge-item {
    font-size: 13.5px;
    justify-content: flex-start;
  }
  .consultoria-box {
    padding: 24px 18px;
    border-radius: var(--radius-md);
  }
  .consultoria-box ul li {
    font-size: 14px;
  }
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  /* Ajustes dos Modais e Autenticação no Mobile */
  .auth-card {
    padding: 24px 18px;
  }
  .otp-inputs {
    gap: 8px;
  }
  .otp-slot {
    width: 42px;
    height: 50px;
    font-size: 22px;
  }
}

/* ==========================================================================
   PAINEL ADMINISTRATIVO MASTER & PLANOS (AURION CLOUD)
   ========================================================================== */
.admin-header-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.admin-badge-master {
  background: linear-gradient(135deg, rgba(245, 158, 11, 0.25) 0%, rgba(217, 119, 6, 0.15) 100%);
  color: var(--gold-light);
  border: 1px solid var(--border-gold);
  font-weight: 700;
  padding: 6px 14px;
  border-radius: var(--radius-full);
  font-size: 13px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.admin-main {
  padding: 32px 0 60px 0;
}

.admin-stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 12px;
  margin-bottom: 20px;
}

.admin-stat-card {
  background: rgba(19, 29, 49, 0.78);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  padding: 16px;
  display: flex;
  flex-direction: column;
  box-shadow: var(--shadow-card);
  transition: var(--transition);
}

.admin-stat-card:hover {
  transform: translateY(-2px);
  border-color: var(--border-gold);
}

.admin-stat-card .stat-icon {
  font-size: 20px;
  margin-bottom: 6px;
}

.stat-dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  margin-bottom: 8px;
  display: inline-block;
  box-shadow: 0 0 8px currentColor;
}

.admin-stat-card .stat-title {
  font-size: 11px;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.admin-stat-card .stat-value {
  font-size: 24px;
  font-weight: 800;
  color: #ffffff;
  margin-top: 2px;
}

.admin-filter-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  background: rgba(19, 29, 49, 0.8);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  padding: 12px 14px;
  margin-bottom: 16px;
  align-items: center;
  justify-content: space-between;
}

.admin-filter-inputs {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  flex: 1;
}

.admin-filter-inputs input,
.admin-filter-inputs select {
  background: rgba(0, 0, 0, 0.35);
  border: 1px solid var(--border-subtle);
  color: var(--text-main);
  padding: 8px 12px;
  border-radius: var(--radius-sm);
  font-size: 13.5px;
}

.admin-filter-inputs input:focus,
.admin-filter-inputs select:focus {
  outline: none;
  border-color: var(--gold-primary);
}

.admin-table-container {
  background: rgba(19, 29, 49, 0.82);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  overflow-x: auto;
  box-shadow: var(--shadow-card);
}

.admin-table {
  width: 100%;
  border-collapse: collapse;
  text-align: left;
  font-size: 13.5px;
}

.admin-table th {
  background: rgba(255, 255, 255, 0.03);
  color: var(--text-muted);
  font-size: 11.5px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  padding: 11px 13px;
  border-bottom: 1px solid var(--border-subtle);
  white-space: nowrap;
}

.admin-table td {
  padding: 11px 13px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
  vertical-align: middle;
}

.admin-table tr:hover {
  background: rgba(245, 158, 11, 0.03);
}

.badge-status {
  padding: 4px 10px;
  border-radius: var(--radius-full);
  font-size: 11.5px;
  font-weight: 600;
  display: inline-block;
  text-transform: uppercase;
}

.badge-status.trial {
  background: rgba(245, 158, 11, 0.15);
  color: var(--gold-light);
  border: 1px solid var(--border-gold);
}

.badge-status.ativa {
  background: rgba(16, 185, 129, 0.15);
  color: #34d399;
  border: 1px solid rgba(16, 185, 129, 0.3);
}

.badge-status.suspensa {
  background: rgba(239, 68, 68, 0.15);
  color: #f87171;
  border: 1px solid rgba(239, 68, 68, 0.3);
}

.badge-status.cancelada {
  background: rgba(100, 116, 139, 0.2);
  color: var(--text-muted);
  border: 1px solid rgba(100, 116, 139, 0.3);
}

.whatsapp-link {
  color: #25d366;
  text-decoration: none;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

.whatsapp-link:hover {
  text-decoration: underline;
}

.table-actions {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.btn-xs {
  padding: 5px 10px;
  font-size: 12px;
  border-radius: 6px;
}

.modal-box-lg {
  max-width: 620px;
  width: 100%;
  padding: 20px 24px;
  text-align: left;
}

.modal-box-xl {
  max-width: 920px;
  width: 96%;
  padding: 22px 26px;
  text-align: left;
}

.badge-online {
  background: rgba(16, 185, 129, 0.15);
  color: #34d399;
  border: 1px solid rgba(16, 185, 129, 0.35);
  padding: 3px 9px;
  border-radius: 9999px;
  font-size: 11.5px;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 5px;
}

.badge-offline {
  background: rgba(148, 163, 184, 0.1);
  color: #94a3b8;
  border: 1px solid rgba(148, 163, 184, 0.25);
  padding: 3px 9px;
  border-radius: 9999px;
  font-size: 11.5px;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 5px;
}

.hwid-chip {
  background: rgba(0, 0, 0, 0.45);
  border: 1px solid var(--border-subtle);
  border-radius: 6px;
  padding: 3px 8px;
  font-family: monospace;
  font-size: 11.5px;
  color: #e2e8f0;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  max-width: 240px;
}

.hwid-copy-btn {
  background: none;
  border: none;
  color: var(--gold-light);
  cursor: pointer;
  padding: 2px 5px;
  font-size: 12px;
  line-height: 1;
  border-radius: 3px;
  transition: var(--transition);
}

.hwid-copy-btn:hover {
  background: rgba(245, 158, 11, 0.25);
  color: #ffffff;
}

.modal-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid var(--border-subtle);
  padding-bottom: 12px;
  margin-bottom: 14px;
  flex-shrink: 0;
}

.modal-close-btn {
  background: none;
  border: none;
  font-size: 22px;
  color: var(--text-muted);
  cursor: pointer;
  padding: 4px 8px;
  line-height: 1;
  transition: var(--transition);
  border-radius: 4px;
}

.modal-close-btn:hover {
  color: #ffffff;
  background: rgba(255, 255, 255, 0.08);
}

.modal-form-scrollable {
  display: flex;
  flex-direction: column;
  overflow: hidden;
  flex: 1 1 auto;
}

.modal-body-content {
  overflow-y: auto;
  overflow-x: hidden;
  flex: 1 1 auto;
  padding-right: 6px;
  max-height: calc(100vh - 170px);
  max-height: calc(100dvh - 170px);
}

/* Scrollbar fina elegante para o modal e tabelas */
.modal-body-content::-webkit-scrollbar,
.admin-table-container::-webkit-scrollbar {
  width: 6px;
  height: 6px;
}

.modal-body-content::-webkit-scrollbar-track,
.admin-table-container::-webkit-scrollbar-track {
  background: rgba(0, 0, 0, 0.2);
  border-radius: 3px;
}

.modal-body-content::-webkit-scrollbar-thumb,
.admin-table-container::-webkit-scrollbar-thumb {
  background: rgba(245, 158, 11, 0.35);
  border-radius: 3px;
}

.modal-body-content::-webkit-scrollbar-thumb:hover,
.admin-table-container::-webkit-scrollbar-thumb:hover {
  background: var(--gold-primary);
}

.modal-footer-actions {
  display: flex;
  justify-content: flex-end;
  gap: 10px;
  margin-top: 14px;
  border-top: 1px solid var(--border-subtle);
  padding-top: 12px;
  flex-shrink: 0;
}

.modal-grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.form-group-sm {
  margin-bottom: 10px;
}

.form-group-sm label {
  font-size: 12px;
  margin-bottom: 4px;
  color: var(--text-muted);
}

.form-group-sm .form-control {
  padding: 8px 12px;
  font-size: 13.5px;
}

.btn-sm {
  padding: 7px 16px;
  font-size: 13px;
  border-radius: var(--radius-sm);
}

/* Otimização especial para telas pequenas, Laptops 125% DPI e Telas Baixas (<= 768px de altura) */
@media (max-height: 750px) {
  .modal-box {
    padding: 14px 18px;
    max-height: calc(100vh - 20px);
  }
  .modal-box-lg,
  .modal-box-xl {
    padding: 14px 18px;
  }
  .modal-header {
    margin-bottom: 10px;
    padding-bottom: 8px;
  }
  .modal-footer-actions {
    margin-top: 10px;
    padding-top: 10px;
  }
  .form-group-sm {
    margin-bottom: 8px;
  }
  .modal-body-content {
    max-height: calc(100vh - 120px);
  }
}

@media (max-width: 640px) {
  .modal-overlay {
    padding: 10px;
    align-items: flex-end;
  }
  .modal-box {
    padding: 18px 14px;
    border-radius: var(--radius-md) var(--radius-md) 0 0;
    max-height: calc(100dvh - 20px);
  }
  .modal-box-lg,
  .modal-box-xl {
    padding: 18px 14px;
  }
  .modal-grid-2 {
    grid-template-columns: 1fr;
    gap: 8px;
  }
}

/* Status do Plano na tela de Download */
.plan-status-card {
  background: rgba(245, 158, 11, 0.06);
  border: 1px solid var(--border-gold);
  border-radius: var(--radius-md);
  padding: 22px;
  margin-bottom: 24px;
  text-align: left;
}

.plan-status-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 16px;
  flex-wrap: wrap;
  gap: 10px;
}

.plan-info-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 12px;
}

.plan-info-item {
  background: rgba(0, 0, 0, 0.25);
  border-radius: var(--radius-sm);
  padding: 10px 14px;
}

.plan-info-item .item-label {
  font-size: 11px;
  color: var(--text-dim);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.plan-info-item .item-val {
  font-size: 14px;
  font-weight: 600;
  color: #ffffff;
  margin-top: 2px;
}

