/* ==========================================
   IDLEDOCK LANDING PAGE - DESIGN SYSTEM
   Dark Solid Blue Theme & Formal Architecture
   ========================================== */

:root {
  /* Cores Sólidas Azul Escuro */
  --bg-page: #080d1a;            /* Fundo sólido geral da página */
  --bg-hero: #090f20;            /* Fundo da Hero (com leve gradiente superior) */
  --bg-section-solid: #0b1224;   /* Fundo sólido para Benefícios */
  --bg-pricing-solid: #080d1a;   /* Fundo sólido para Oferta */
  --bg-footer-solid: #050811;    /* Fundo sólido para Rodapé */
  
  --bg-card: #0f182e;            /* Fundo sólido de cards */
  --bg-card-hover: #131f3b;      /* Hover sólido de cards */
  --border-color: rgba(255, 255, 255, 0.08);
  --border-focus: #0ea5e9;

  --text-main: #f8fafc;
  --text-muted: #94a3b8;
  --text-sub: #cbd5e1;

  --accent: #0284c7;
  --accent-hover: #0369a1;
  --accent-cyan: #38bdf8;
  --success: #10b981;

  --font-primary: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --font-display: 'Plus Jakarta Sans', var(--font-primary);

  --container-max: 1180px;
}

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

html {
  scroll-behavior: smooth;
  background-color: var(--bg-page);
  color: var(--text-main);
  font-family: var(--font-primary);
}

body {
  background-color: var(--bg-page);
  color: var(--text-main);
  line-height: 1.6;
  overflow-x: hidden;
}

.container {
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 24px;
  position: relative;
  z-index: 2;
}

/* ==========================================
   NAVBAR (Sólida Azul Escuro com Blur)
   ========================================== */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 68px;
  background: rgba(8, 13, 26, 0.92);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border-color);
  z-index: 100;
  display: flex;
  align-items: center;
}

.nav-container {
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.brand-icon {
  width: 32px;
  height: 32px;
  border-radius: 6px;
  object-fit: contain;
}

.brand-name {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 19px;
  color: #ffffff;
  letter-spacing: -0.2px;
}

.brand-name span {
  color: var(--accent-cyan);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
}

.nav-links a {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 13px;
  font-weight: 500;
  transition: color 0.2s ease;
}

.nav-links a:hover {
  color: #ffffff;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--font-primary);
  font-weight: 600;
  text-decoration: none;
  border-radius: 8px;
  transition: all 0.2s ease;
  cursor: pointer;
  border: none;
}

.btn-nav {
  background: rgba(14, 165, 233, 0.1);
  border: 1px solid rgba(14, 165, 233, 0.3);
  color: #38bdf8;
  padding: 7px 16px;
  font-size: 13px;
}

.btn-nav:hover {
  background: var(--accent);
  color: #ffffff;
  border-color: var(--accent);
}

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

.btn-nav-login {
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: #cbd5e1;
  padding: 7px 15px;
  font-size: 13px;
  border-radius: 8px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.2s ease;
}

.btn-nav-login:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.3);
  color: #ffffff;
}

/* ==========================================
   HERO SECTION (ÚNICA COM GRADIENTE E MARCA D'ÁGUA)
   ========================================== */
.hero-section {
  position: relative;
  padding-top: 130px;
  padding-bottom: 90px;
  background: linear-gradient(180deg, #0f1933 0%, #080d1a 100%);
  overflow: hidden;
  border-bottom: 1px solid var(--border-color);
}

/* Marca d'água restrita apenas à Hero Section */
.hero-bg-watermark {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
  z-index: 1;
  opacity: 0.035;
  display: flex;
  align-items: center;
  justify-content: center;
}

.watermark-img {
  width: 650px;
  height: 650px;
  max-width: 90vw;
  object-fit: contain;
  filter: grayscale(100%);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 44px;
  align-items: center;
  position: relative;
  z-index: 2;
}

.badge-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(15, 24, 46, 0.9);
  border: 1px solid var(--border-color);
  padding: 6px 14px;
  border-radius: 16px;
  font-size: 12px;
  font-weight: 600;
  color: var(--text-sub);
  margin-bottom: 18px;
}

.hero-title {
  font-family: var(--font-display);
  font-size: 40px;
  font-weight: 800;
  line-height: 1.18;
  color: #ffffff;
  margin-bottom: 16px;
  letter-spacing: -0.8px;
}

.text-gradient {
  color: #38bdf8;
}

.hero-subtitle {
  font-size: 16px;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 28px;
  max-width: 520px;
}

.hero-cta-group {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 32px;
  flex-wrap: wrap;
}

.btn-primary {
  background: var(--accent);
  color: #ffffff;
  padding: 13px 26px;
  font-size: 14px;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.btn-primary:hover {
  background: var(--accent-hover);
  transform: translateY(-1px);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border-color);
  color: var(--text-sub);
  padding: 13px 22px;
  font-size: 14px;
  border-radius: 8px;
}

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

.hero-trust-row {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  color: #94a3b8;
}

/* Moldura do Vídeo */
.video-mockup-frame {
  background: #0b1224;
  border: 1px solid var(--border-color);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.6);
}

.frame-header {
  height: 36px;
  background: #0f182e;
  border-bottom: 1px solid var(--border-color);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 14px;
}

.window-dots {
  display: flex;
  gap: 6px;
}

.dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
}

.dot.red { background: #ef4444; }
.dot.yellow { background: #f59e0b; }
.dot.green { background: #10b981; }

.window-title {
  font-size: 11px;
  font-weight: 600;
  color: #94a3b8;
}

.window-actions-dummy {
  width: 35px;
}

.video-container {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 10;
  background: #050811;
  overflow: hidden;
}

.video-placeholder {
  width: 100%;
  height: 100%;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.video-placeholder video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.video-overlay-helper {
  position: absolute;
  cursor: pointer;
  user-select: none;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(8, 13, 26, 0.88);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 20px;
  text-align: center;
  gap: 10px;
}

.play-button-circle {
  width: 54px;
  height: 54px;
  background: var(--accent);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: transform 0.2s ease, background 0.2s ease;
  padding-left: 3px;
}

.play-button-circle:hover {
  transform: scale(1.06);
  background: var(--accent-hover);
}

.video-helper-text {
  font-size: 14px;
  font-weight: 600;
  color: #f1f5f9;
}

.video-helper-sub {
  font-size: 11px;
  color: #64748b;
}

.video-helper-sub code {
  background: rgba(255, 255, 255, 0.08);
  padding: 2px 5px;
  border-radius: 4px;
  color: #38bdf8;
}

.frame-footer {
  height: 34px;
  background: #0f182e;
  border-top: 1px solid var(--border-color);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 14px;
  font-size: 11px;
  font-weight: 600;
}

.footer-indicator {
  display: flex;
  align-items: center;
  gap: 6px;
}

.status-live {
  color: #10b981;
}

.status-fps {
  color: #94a3b8;
}

/* ==========================================
   SEÇÃO DE BENEFÍCIOS (COR SÓLIDA AZUL ESCURO)
   ========================================== */
.benefits-section {
  padding: 90px 0;
  background-color: var(--bg-section-solid); /* Sólido #0b1224 */
  border-bottom: 1px solid var(--border-color);
}

.text-center {
  text-align: center;
}

.section-tag {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.2px;
  color: var(--accent-cyan);
  margin-bottom: 8px;
  display: block;
}

.section-title {
  font-family: var(--font-display);
  font-size: 32px;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 10px;
  letter-spacing: -0.4px;
}

.section-desc {
  font-size: 15px;
  color: var(--text-muted);
  max-width: 580px;
  margin: 0 auto 50px auto;
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.benefit-card {
  background-color: var(--bg-card); /* Sólido #0f182e */
  border: 1px solid var(--border-color);
  border-radius: 12px;
  padding: 28px 24px;
  transition: transform 0.2s ease, border-color 0.2s ease, background-color 0.2s ease;
}

.benefit-card:hover {
  transform: translateY(-3px);
  border-color: rgba(255, 255, 255, 0.15);
  background-color: var(--bg-card-hover);
}

.benefit-card.highlight-card {
  border-color: rgba(16, 185, 129, 0.25);
}

.card-icon-wrapper {
  width: 44px;
  height: 44px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
}

.card-title {
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 700;
  color: #f8fafc;
  margin-bottom: 8px;
}

.card-desc {
  font-size: 13.5px;
  color: var(--text-muted);
  line-height: 1.6;
}

/* ==========================================
   SEÇÃO DE OFERTA / PRICING (BANNER DE LARGURA TOTAL)
   ========================================== */
.pricing-section {
  padding: 80px 0;
  background-color: var(--bg-pricing-solid); /* Sólido #080d1a */
  border-bottom: 1px solid var(--border-color);
}

.pricing-banner {
  width: 100%;
  background-color: var(--bg-card); /* Sólido #0f182e */
  border: 1px solid rgba(14, 165, 233, 0.25);
  border-radius: 16px;
  padding: 44px 48px;
  display: grid;
  grid-template-columns: 1.35fr 1fr;
  gap: 48px;
  align-items: center;
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.5);
}

.pricing-left {
  display: flex;
  flex-direction: column;
}

.pricing-badge {
  align-self: flex-start;
  background: rgba(14, 165, 233, 0.12);
  border: 1px solid rgba(14, 165, 233, 0.3);
  color: #38bdf8;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.8px;
  padding: 4px 12px;
  border-radius: 8px;
  margin-bottom: 14px;
}

.pricing-title {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 8px;
  letter-spacing: -0.3px;
}

.pricing-subtitle {
  font-size: 14.5px;
  color: var(--text-muted);
  margin-bottom: 24px;
  line-height: 1.5;
}

.pricing-features-grid {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px 20px;
}

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

.pricing-right {
  display: flex;
  flex-direction: column;
  background: rgba(8, 13, 26, 0.7);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  padding: 32px 28px;
  text-align: center;
}

.price-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 20px;
}

.price-old {
  font-size: 13px;
  color: #64748b;
  text-decoration: line-through;
  margin-bottom: 2px;
}

.price-current {
  display: flex;
  align-items: baseline;
  justify-content: center;
  color: #ffffff;
}

.price-current .currency {
  font-size: 22px;
  font-weight: 700;
  color: #38bdf8;
  margin-right: 4px;
}

.price-current .amount {
  font-family: var(--font-display);
  font-size: 54px;
  font-weight: 800;
  line-height: 1;
  color: #ffffff;
}

.price-current .cents {
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 800;
  color: #cbd5e1;
}

.price-type {
  font-size: 12px;
  font-weight: 600;
  color: #10b981;
  margin-top: 4px;
}

.pricing-cta-wrapper {
  display: flex;
  flex-direction: column;
  gap: 8px;
  align-items: center;
}

.btn-cta-large {
  width: 100%;
  padding: 15px 20px;
  font-size: 14px;
  font-weight: 700;
  border-radius: 8px;
  background: var(--accent);
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.btn-cta-large:hover {
  background: var(--accent-hover);
  transform: translateY(-1px);
}

.cta-security-badge {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 11.5px;
  color: #94a3b8;
  margin-top: 4px;
}

.payment-methods-box {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-top: 18px;
  padding-top: 16px;
  border-top: 1px solid var(--border-color);
  flex-wrap: wrap;
}

.payment-item {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 11.5px;
  font-weight: 500;
  color: #94a3b8;
}

/* ==========================================
   FOOTER (SÓLIDO AZUL ESCURO)
   ========================================== */
.site-footer {
  border-top: 1px solid var(--border-color);
  padding: 32px 0;
  background-color: var(--bg-footer-solid); /* Sólido #050811 */
}

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

.footer-brand {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12.5px;
  color: #64748b;
}

.footer-logo {
  width: 20px;
  height: 20px;
  object-fit: contain;
}

.footer-links {
  display: flex;
  align-items: center;
  gap: 18px;
  font-size: 12.5px;
}

.footer-links a {
  color: #94a3b8;
  text-decoration: none;
  transition: color 0.2s ease;
}

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

/* ==========================================
   RESPONSIVIDADE (MOBILE & TABLET)
   ========================================== */
@media (max-width: 960px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .hero-title {
    font-size: 32px;
  }

  .benefits-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .pricing-banner {
    grid-template-columns: 1fr;
    gap: 32px;
    padding: 36px 28px;
  }

  .nav-links {
    display: none;
  }
}

@media (max-width: 640px) {
  .hero-title {
    font-size: 26px;
  }

  .hero-subtitle {
    font-size: 14.5px;
  }

  .benefits-grid {
    grid-template-columns: 1fr;
  }

  .pricing-banner {
    padding: 28px 18px;
  }

  .pricing-features-grid {
    grid-template-columns: 1fr;
  }

  .price-current .amount {
    font-size: 46px;
  }

  .footer-container {
    flex-direction: column;
    align-items: flex-start;
  }
}

/* ==========================================
   CHECKOUT PAGE STYLING
   ========================================== */
.checkout-body, .success-body {
  background: radial-gradient(ellipse 70% 50% at 50% 15%, rgba(14, 165, 233, 0.08) 0%, rgba(6, 10, 20, 0.95) 70%, #050811 100%), #050811;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.nav-security-tag {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  font-weight: 600;
  color: #10b981;
}

.checkout-main, .success-main {
  flex: 1;
  padding-top: 100px;
  padding-bottom: 60px;
}

.checkout-container {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 36px;
  align-items: start;
}

.checkout-summary-card {
  background-color: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 14px;
  padding: 32px 28px;
}

.summary-tag {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1px;
  color: var(--accent-cyan);
  margin-bottom: 8px;
  display: block;
}

.summary-product-name {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 8px;
}

.summary-product-desc {
  font-size: 13.5px;
  color: var(--text-muted);
  line-height: 1.5;
  margin-bottom: 24px;
}

.summary-price-box {
  background: rgba(8, 13, 26, 0.7);
  border: 1px solid var(--border-color);
  border-radius: 10px;
  padding: 18px 20px;
  margin-bottom: 24px;
}

.summary-price-label {
  font-size: 12px;
  color: #94a3b8;
  display: block;
  margin-bottom: 4px;
}

.summary-price-value {
  display: flex;
  align-items: baseline;
  gap: 3px;
  color: #ffffff;
}

.summary-price-value .cur {
  font-size: 18px;
  font-weight: 700;
  color: #38bdf8;
}

.summary-price-value .val {
  font-family: var(--font-display);
  font-size: 40px;
  font-weight: 800;
  line-height: 1;
}

.summary-price-value .cents {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 800;
  color: #cbd5e1;
}

.summary-price-badge {
  font-size: 11.5px;
  font-weight: 600;
  color: #10b981;
  margin-top: 6px;
  display: block;
}

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

.summary-checklist li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  color: var(--text-sub);
}

.checkout-form-card {
  background-color: var(--bg-card);
  border: 1px solid rgba(14, 165, 233, 0.25);
  border-radius: 14px;
  padding: 36px 32px;
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.5);
}

.card-step-header {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 24px;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--border-color);
}

.step-circle {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--accent);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 14px;
  flex-shrink: 0;
}

.step-circle.active-circle {
  background: #10b981;
}

.step-title {
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 2px;
}

.step-desc {
  font-size: 12.5px;
  color: var(--text-muted);
}

.auth-form-checkout {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.form-group label {
  font-size: 12px;
  font-weight: 600;
  color: #cbd5e1;
}

.form-group input {
  background: #080d1a;
  border: 1px solid var(--border-color);
  border-radius: 8px;
  padding: 12px 14px;
  color: #ffffff;
  font-size: 14px;
  outline: none;
  transition: border-color 0.2s ease;
}

.form-group input:focus {
  border-color: #38bdf8;
}

.input-password-wrapper {
  position: relative;
  display: flex;
  align-items: center;
}

.input-password-wrapper input {
  width: 100%;
  padding-right: 40px;
}

.btn-toggle-eye {
  position: absolute;
  right: 12px;
  background: transparent;
  border: none;
  color: #64748b;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}

.btn-toggle-eye:hover {
  color: #cbd5e1;
}

.alert-box {
  background: rgba(239, 68, 68, 0.12);
  border: 1px solid rgba(239, 68, 68, 0.3);
  color: #fca5a5;
  font-size: 12.5px;
  padding: 10px 12px;
  border-radius: 6px;
}

.hidden {
  display: none !important;
}

.alert-box.hidden {
  display: none !important;
}

.btn-checkout-submit {
  width: 100%;
  padding: 15px;
  font-size: 14px;
  font-weight: 700;
  border-radius: 8px;
  margin-top: 6px;
}

/* ==========================================
   TRIAL MODE STYLING (Checkout)
   ========================================== */
.trial-divider {
  display: flex;
  align-items: center;
  text-align: center;
  margin: 6px 0;
  color: #64748b;
  font-size: 11.5px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.trial-divider::before,
.trial-divider::after {
  content: '';
  flex: 1;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.trial-divider span {
  padding: 0 10px;
}

.btn-trial {
  width: 100%;
  padding: 11px 16px;
  font-size: 13px;
  font-weight: 700;
  border-radius: 8px;
  background: rgba(245, 158, 11, 0.12);
  border: 1px solid rgba(245, 158, 11, 0.4);
  color: #fbbf24;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  cursor: pointer;
  transition: all 0.2s ease;
  font-family: inherit;
  margin-bottom: 7px;
}

.btn-trial:hover {
  background: rgba(245, 158, 11, 0.22);
  border-color: #f59e0b;
  color: #fef3c7;
  transform: translateY(-1px);
  box-shadow: 0 4px 14px rgba(245, 158, 11, 0.2);
}

.btn-trial:active {
  transform: translateY(0);
}

.btn-trial:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  transform: none;
  box-shadow: none;
}

.trial-hint {
  font-size: 11.5px;
  color: #94a3b8;
  text-align: center;
  margin-top: 0;
  margin-bottom: 8px;
  line-height: 1.4;
}


/* ==========================================
   PIX PAYMENT BOX
   ========================================== */
.pix-payment-box {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

.pix-qr-wrapper {
  background: #ffffff;
  padding: 12px;
  border-radius: 12px;
  display: flex;
  flex-direction: column;
  align-items: center;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4);
}

.pix-qr-img {
  width: 200px;
  height: 200px;
  display: block;
}

.pix-scan-hint {
  font-size: 11px;
  font-weight: 600;
  color: #0f172a;
  margin-top: 6px;
}

.pix-copy-section {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.pix-label {
  font-size: 11.5px;
  font-weight: 600;
  color: #cbd5e1;
}

.pix-input-group {
  display: flex;
  gap: 8px;
  width: 100%;
}

.pix-input-group input {
  flex: 1;
  background: #080d1a;
  border: 1px solid var(--border-color);
  border-radius: 6px;
  padding: 10px 12px;
  color: #94a3b8;
  font-size: 12px;
  font-family: monospace;
}

.btn-copy-pix {
  background: var(--accent);
  color: #ffffff;
  border: none;
  padding: 0 16px;
  border-radius: 6px;
  font-size: 12px;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 6px;
  transition: background 0.2s ease;
}

.btn-copy-pix:hover {
  background: var(--accent-hover);
}

.pix-listening-status {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 12px;
  color: #38bdf8;
  background: rgba(14, 165, 233, 0.08);
  border: 1px solid rgba(14, 165, 233, 0.2);
  padding: 8px 14px;
  border-radius: 6px;
  width: 100%;
  justify-content: center;
}

.listening-spinner {
  width: 12px;
  height: 12px;
  border: 2px solid rgba(56, 189, 248, 0.3);
  border-top-color: #38bdf8;
  border-radius: 50%;
  animation: spin 1s infinite linear;
}

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

.demo-test-box {
  width: 100%;
  padding-top: 10px;
  border-top: 1px dashed rgba(255, 255, 255, 0.1);
}

.btn-demo-approve {
  width: 100%;
  background: rgba(16, 185, 129, 0.15);
  border: 1px solid rgba(16, 185, 129, 0.35);
  color: #34d399;
  padding: 10px 14px;
  border-radius: 6px;
  font-size: 12px;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: all 0.2s ease;
}

.btn-demo-approve:hover {
  background: #10b981;
  color: #ffffff;
}

/* ==========================================
   SUCCESS / DOWNLOAD PAGE
   ========================================== */
.success-container {
  max-width: 720px;
}

.success-card {
  background-color: var(--bg-card);
  border: 1px solid rgba(16, 185, 129, 0.3);
  border-radius: 16px;
  padding: 44px 36px;
  text-align: center;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.6);
}

.success-icon-badge {
  width: 60px;
  height: 60px;
  background: rgba(16, 185, 129, 0.15);
  border: 1px solid rgba(16, 185, 129, 0.3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px auto;
}

.success-tag {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1px;
  color: #10b981;
  margin-bottom: 6px;
  display: block;
}

.success-title {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 10px;
}

.success-desc {
  font-size: 14.5px;
  color: var(--text-muted);
  max-width: 540px;
  margin: 0 auto 28px auto;
  line-height: 1.5;
}

.account-details-box {
  background: rgba(8, 13, 26, 0.7);
  border: 1px solid var(--border-color);
  border-radius: 10px;
  padding: 16px 20px;
  margin-bottom: 32px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  text-align: left;
}

.detail-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 13px;
}

.detail-label {
  color: #94a3b8;
}

.detail-val {
  color: #ffffff;
  font-weight: 600;
}

.status-badge-active {
  color: #10b981;
  font-weight: 700;
}

.detail-order-id {
  font-family: monospace;
  color: #cbd5e1;
  font-size: 12px;
}

.downloads-section {
  text-align: left;
  margin-bottom: 32px;
}

.downloads-title {
  font-size: 14px;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 14px;
  text-align: center;
}

.downloads-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.download-card {
  background: #080d1a;
  border: 1px solid var(--border-color);
  border-radius: 10px;
  padding: 18px 16px;
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: #ffffff;
  transition: all 0.2s ease;
}

.download-card:hover {
  border-color: var(--accent);
  background: #0c1428;
  transform: translateY(-2px);
}

.download-icon {
  width: 38px;
  height: 38px;
  background: rgba(255, 255, 255, 0.06);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: #38bdf8;
}

.download-info {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.download-os {
  font-size: 13px;
  font-weight: 700;
}

.download-file {
  font-size: 11px;
  color: #64748b;
}

.download-btn-icon {
  color: var(--accent);
}

.quickstart-guide {
  background: rgba(14, 165, 233, 0.05);
  border: 1px solid rgba(14, 165, 233, 0.2);
  border-radius: 10px;
  padding: 18px 20px;
  text-align: left;
}

.quickstart-guide h4 {
  font-size: 13px;
  color: #38bdf8;
  margin-bottom: 8px;
}

.quickstart-guide ol {
  padding-left: 18px;
  font-size: 12.5px;
  color: #94a3b8;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.quickstart-guide ol strong {
  color: #ffffff;
}

@media (max-width: 768px) {
  .checkout-container {
    grid-template-columns: 1fr;
  }
  .downloads-grid {
    grid-template-columns: 1fr;
  }
}

/* ==========================================
   CREDENTIALS DISPLAY & ACCOUNT RECOVERY
   ========================================== */
.credentials-badge-card {
  background: linear-gradient(180deg, rgba(16, 185, 129, 0.09) 0%, rgba(15, 23, 42, 0.7) 100%);
  border: 1px solid rgba(16, 185, 129, 0.35);
  border-radius: 12px;
  padding: 18px 20px;
  margin-bottom: 24px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.25);
}

.cred-header {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #10b981;
  font-size: 13.5px;
  font-weight: 700;
  margin-bottom: 14px;
}

.cred-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding: 8px 12px;
  background: rgba(10, 16, 31, 0.7);
  border: 1px solid rgba(148, 163, 184, 0.12);
  border-radius: 8px;
  margin-bottom: 8px;
}

.cred-label {
  font-size: 12px;
  color: #94a3b8;
}

.cred-val {
  font-size: 13.5px;
  color: #ffffff;
  font-weight: 600;
}

.cred-pwd-text {
  font-family: 'JetBrains Mono', monospace, 'Courier New';
  letter-spacing: 1px;
}

.btn-copy-mini {
  background: rgba(56, 189, 248, 0.12);
  border: 1px solid rgba(56, 189, 248, 0.3);
  color: #38bdf8;
  font-size: 11px;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: 6px;
  cursor: pointer;
  transition: all 0.2s ease;
}

.btn-copy-mini:hover {
  background: rgba(56, 189, 248, 0.25);
  color: #ffffff;
}

.cred-note {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 11.5px;
  color: #94a3b8;
  line-height: 1.45;
  margin-top: 12px;
  padding-top: 10px;
  border-top: 1px solid rgba(148, 163, 184, 0.1);
}

.cred-note svg {
  flex-shrink: 0;
  margin-top: 2px;
}

.checkout-footer-links {
  text-align: center;
  font-size: 13px;
  color: #94a3b8;
  margin-top: 16px;
  padding-top: 12px;
}

.checkout-footer-links a {
  color: #38bdf8;
  text-decoration: none;
  font-weight: 600;
  transition: color 0.2s ease;
}

.checkout-footer-links a:hover {
  color: #ffffff;
  text-decoration: underline;
}

/* Email Delivery Banner (obrigado.php) */
.email-delivery-banner {
  display: flex;
  align-items: center;
  gap: 14px;
  background: rgba(56, 189, 248, 0.08);
  border: 1px solid rgba(56, 189, 248, 0.25);
  border-radius: 10px;
  padding: 14px 18px;
  margin-bottom: 24px;
  text-align: left;
}

.email-banner-icon {
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  background: rgba(56, 189, 248, 0.15);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.email-banner-text {
  font-size: 13px;
  color: #e2e8f0;
  line-height: 1.5;
}

.email-banner-text strong {
  color: #38bdf8;
}

.detail-val-group {
  display: flex;
  align-items: center;
  gap: 8px;
}

/* Recovery Page */
.recovery-card {
  max-width: 520px;
  margin: 0 auto;
}

.recovery-success-box {
  background: rgba(16, 185, 129, 0.08);
  border: 1px solid rgba(16, 185, 129, 0.25);
  border-radius: 10px;
  padding: 20px;
  text-align: center;
  margin-bottom: 20px;
}

.rec-icon {
  width: 44px;
  height: 44px;
  background: rgba(16, 185, 129, 0.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 12px;
}

.recovery-success-box h4 {
  color: #10b981;
  font-size: 15px;
  margin-bottom: 6px;
}

.recovery-success-box p {
  font-size: 13px;
  color: #94a3b8;
  margin-bottom: 16px;
}

.cred-preview-card {
  background: #090e1a;
  border: 1px solid rgba(56, 189, 248, 0.25);
  border-radius: 8px;
  padding: 12px 16px;
  margin-bottom: 12px;
}

.cred-preview-label {
  font-size: 11px;
  color: #64748b;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 6px;
}

.cred-preview-val-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
}

.cred-preview-val-row .cred-pwd-text {
  font-size: 18px;
  font-weight: 700;
  color: #38bdf8;
  letter-spacing: 2px;
}

.cred-hint {
  font-size: 12px;
  color: #cbd5e1;
  line-height: 1.4;
  margin: 0;
}

.mp-guarantee-badge {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: rgba(56, 189, 248, 0.06);
  border: 1px solid rgba(56, 189, 248, 0.2);
  border-radius: 8px;
  padding: 10px 14px;
  margin-top: 14px;
  font-size: 12px;
  color: #94a3b8;
  text-align: center;
}

.mp-guarantee-badge svg {
  flex-shrink: 0;
}

/* ==========================================
   LAYOUT 100VH ESTRITO SEM ROLAGEM (WIDE RESPONSIVE)
   ========================================== */
html.view-100vh,
body.view-100vh {
  height: 100vh !important;
  max-height: 100vh !important;
  min-height: 100vh !important;
  overflow: hidden !important;
  margin: 0 !important;
  padding: 0 !important;
  display: flex !important;
  flex-direction: column !important;
  justify-content: space-between !important;
}

.navbar-compact {
  padding: clamp(6px, 1vh, 12px) 0 !important;
  position: relative !important;
  background: rgba(8, 13, 26, 0.95);
  border-bottom: 1px solid rgba(148, 163, 184, 0.1);
  flex-shrink: 0 !important;
}

.main-100vh {
  flex: 1 1 auto !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  padding: clamp(6px, 1.2vh, 16px) clamp(12px, 2vw, 24px) !important;
  margin: 0 !important;
  overflow: hidden !important;
  min-height: 0 !important;
}

.footer-compact {
  padding: clamp(4px, 0.7vh, 8px) 0 !important;
  flex-shrink: 0 !important;
  border-top: 1px solid rgba(148, 163, 184, 0.08);
  font-size: 11px;
}

/* ------------------------------------------
   CHECKOUT WIDE (100VH)
   ------------------------------------------ */
.main-100vh .checkout-container {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: clamp(16px, 2.5vw, 32px);
  max-width: 1120px;
  width: 100%;
  align-items: center;
}

.main-100vh .checkout-summary-card,
.main-100vh .checkout-form-card {
  padding: clamp(14px, 1.8vh, 22px) clamp(16px, 2vw, 24px) !important;
  border-radius: 12px;
}

.main-100vh .summary-tag {
  font-size: 10px;
  letter-spacing: 1px;
}

.main-100vh .summary-product-name {
  font-size: clamp(17px, 1.8vh, 22px);
  margin-bottom: 4px;
}

.main-100vh .summary-product-desc {
  font-size: 12px;
  margin-bottom: 10px;
  line-height: 1.35;
}

.main-100vh .summary-price-box {
  padding: 8px 14px;
  margin-bottom: 10px;
}

.main-100vh .summary-price-label {
  font-size: 11px;
}

.main-100vh .summary-price-value .cur {
  font-size: 18px;
}

.main-100vh .summary-price-value .val {
  font-size: 36px;
}

.main-100vh .summary-price-value .cents {
  font-size: 18px;
}

.main-100vh .summary-price-badge {
  font-size: 10.5px;
  margin-top: 2px;
}

.main-100vh .summary-checklist {
  margin: 8px 0 0 0;
  gap: 6px;
}

.main-100vh .summary-checklist li {
  font-size: 11.5px;
  gap: 8px;
}

.main-100vh .card-step-header {
  margin-bottom: 10px;
  gap: 10px;
}

.main-100vh .step-circle {
  width: 28px;
  height: 28px;
  font-size: 12px;
}

.main-100vh .step-title {
  font-size: 15px;
}

.main-100vh .step-desc {
  font-size: 11.5px;
  line-height: 1.3;
}

.main-100vh .form-group {
  margin-bottom: 8px;
}

.main-100vh .form-group label {
  font-size: 11.5px;
  margin-bottom: 4px;
}

.main-100vh .form-group input {
  padding: 8px 12px;
  font-size: 13px;
  height: 38px;
}

.main-100vh .btn-checkout-submit {
  padding: 10px 16px;
  font-size: 13px;
  margin-top: 6px;
}

.main-100vh .trial-divider {
  margin: 8px 0 6px 0;
}

.main-100vh .btn-trial {
  padding: 10px 14px;
  font-size: 12.5px;
  margin-bottom: 6px;
}

.main-100vh .trial-hint {
  font-size: 11px;
  margin-top: 0;
  margin-bottom: 6px;
  line-height: 1.35;
}

.main-100vh .mp-guarantee-badge {
  padding: 6px 10px;
  margin-top: 6px;
  font-size: 11px;
}

.main-100vh .checkout-footer-links {
  margin-top: 8px;
  font-size: 11.5px;
}

/* ------------------------------------------
   TURNSTILE SECURITY WIDGET
   ------------------------------------------ */
.turnstile-wrap {
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
  margin: 12px 0 14px;
  display: flex;
  flex-direction: column;
  align-items: center;
  overflow: hidden;
}

.turnstile-label {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 11.5px;
  font-weight: 700;
  color: #94a3b8;
  margin-bottom: 8px;
  text-transform: uppercase;
  letter-spacing: .04em;
  width: 100%;
  justify-content: flex-start;
}

.cf-turnstile {
  max-width: 100%;
  overflow: hidden;
  display: flex;
  justify-content: center;
}

/* ------------------------------------------
   RESPONSIVO CHECKOUT & LOGIN (MOBILE)
   ------------------------------------------ */
@media (max-width: 860px) {
  html.view-100vh,
  body.view-100vh {
    height: auto !important;
    min-height: 100% !important;
    max-height: none !important;
    overflow-y: auto !important;
    overflow-x: hidden !important;
    -webkit-overflow-scrolling: touch !important;
    display: block !important;
  }

  .main-100vh {
    height: auto !important;
    min-height: calc(100vh - 110px) !important;
    overflow: visible !important;
    padding: 20px 14px 44px !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: flex-start !important;
    box-sizing: border-box !important;
  }

  .main-100vh .checkout-container,
  .checkout-container {
    display: flex !important;
    flex-direction: column !important;
    grid-template-columns: 1fr !important;
    gap: 16px !important;
    width: 100% !important;
    max-width: 440px !important;
    margin: 0 auto !important;
    padding: 0 !important;
    box-sizing: border-box !important;
  }

  .main-100vh .checkout-summary-card,
  .main-100vh .checkout-form-card,
  .checkout-summary-card,
  .checkout-form-card {
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
    padding: 22px 18px !important;
  }

  /* No modo login no mobile: oculta resumo lateral para foco imediato no login */
  body.mode-login .checkout-summary-card {
    display: none !important;
  }

  .checkout-summary-card {
    order: 1 !important;
  }
  .checkout-form-card {
    order: 2 !important;
  }

  .btn-checkout-submit,
  .btn-trial {
    width: 100% !important;
    box-sizing: border-box !important;
  }
}

/* ------------------------------------------
   OBRIGADO / SUCESSO ELEGANTE (100VH)
   ------------------------------------------ */
.success-wide-container {
  max-width: 1560px;
  width: 96%;
  margin: 0 auto;
}

.thankyou-card {
  background: linear-gradient(180deg, rgba(13, 22, 40, 0.95) 0%, rgba(8, 14, 26, 0.98) 100%);
  border: 1px solid rgba(56, 189, 248, 0.2);
  border-radius: 14px;
  padding: clamp(14px, 2vh, 22px) clamp(18px, 2.5vw, 28px);
  box-shadow: 0 24px 60px -15px rgba(0, 0, 0, 0.8), 0 0 45px -10px rgba(2, 132, 199, 0.12);
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: clamp(10px, 1.6vh, 16px);
}

.thankyou-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(148, 163, 184, 0.1);
}

.thankyou-badge-wrap {
  display: flex;
  align-items: center;
  gap: 12px;
}

.thankyou-badge-icon {
  width: 42px !important;
  height: 42px !important;
  min-width: 42px !important;
  max-width: 42px !important;
  min-height: 42px !important;
  max-height: 42px !important;
  border-radius: 50% !important;
  aspect-ratio: 1 / 1 !important;
  background: rgba(16, 185, 129, 0.15);
  border: 1px solid rgba(16, 185, 129, 0.35);
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  color: #10b981;
  flex-shrink: 0 !important;
  box-sizing: border-box !important;
}

.thankyou-badge-icon svg {
  width: 22px !important;
  height: 22px !important;
  flex-shrink: 0 !important;
}

.thankyou-status-pill {
  font-size: 10px;
  font-weight: 700;
  color: #10b981;
  text-transform: uppercase;
  letter-spacing: 0.8px;
}

.thankyou-title {
  font-size: clamp(17px, 2vh, 21px);
  font-weight: 800;
  color: #ffffff;
  margin: 2px 0 0 0;
}

.thankyou-email-pill {
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(56, 189, 248, 0.08);
  border: 1px solid rgba(56, 189, 248, 0.2);
  border-radius: 8px;
  padding: 7px 14px;
  font-size: 12px;
  color: #cbd5e1;
}

.thankyou-email-pill strong {
  color: #38bdf8;
  font-weight: 600;
}

.thankyou-grid {
  display: grid;
  grid-template-columns: minmax(360px, 420px) 1fr;
  gap: clamp(14px, 2vw, 24px);
  align-items: stretch;
}

.thankyou-panel {
  background: rgba(10, 16, 30, 0.7);
  border: 1px solid rgba(148, 163, 184, 0.12);
  border-radius: 10px;
  padding: clamp(14px, 2vh, 20px) clamp(16px, 2vw, 22px);
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  gap: 12px;
  height: 100%;
}

.thankyou-panel-header {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 12px;
}

.panel-icon-wrap {
  width: 28px;
  height: 28px;
  border-radius: 6px;
  background: rgba(56, 189, 248, 0.12);
  border: 1px solid rgba(56, 189, 248, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #38bdf8;
  flex-shrink: 0;
}

.thankyou-panel-header h3 {
  font-size: 13px;
  font-weight: 700;
  color: #ffffff;
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.cred-table {
  display: flex;
  flex-direction: column;
  gap: 7px;
  margin-bottom: 12px;
}

.cred-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 7px 11px;
  background: #060a14;
  border-radius: 6px;
  border: 1px solid rgba(148, 163, 184, 0.08);
  font-size: 12px;
}

.cred-label {
  color: #94a3b8;
  font-weight: 500;
  font-size: 12px;
}

.cred-val-wrap {
  display: flex;
  align-items: center;
  gap: 6px;
}

.cred-val {
  color: #ffffff;
  font-weight: 600;
  font-size: 12px;
}

.cred-val.font-mono {
  font-family: monospace;
  letter-spacing: 1px;
}

.badge-plan-lifetime {
  color: #10b981;
  font-weight: 700;
  font-size: 11.5px;
}

.cred-order-code {
  color: #38bdf8;
  font-family: monospace;
  font-size: 11.5px;
  font-weight: 600;
}

.btn-action-mini {
  background: rgba(56, 189, 248, 0.12);
  border: 1px solid rgba(56, 189, 248, 0.3);
  border-radius: 4px;
  padding: 3px 8px;
  font-size: 10.5px;
  font-weight: 600;
  color: #38bdf8;
  cursor: pointer;
  transition: all 0.2s;
}

.btn-action-mini:hover {
  background: #0284c7;
  color: #ffffff;
  border-color: #0284c7;
}

.cred-security-tip {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 11px;
  color: #64748b;
  line-height: 1.35;
  padding: 8px 10px;
  background: rgba(7, 12, 23, 0.6);
  border-radius: 6px;
  border: 1px solid rgba(148, 163, 184, 0.08);
  margin-top: 4px;
}

.cred-security-tip svg {
  flex-shrink: 0;
}

.quickstart-bar-full {
  background: rgba(14, 165, 233, 0.04);
  border: 1px solid rgba(56, 189, 248, 0.16);
  border-radius: 10px;
  padding: clamp(9px, 1.3vh, 12px) clamp(12px, 1.5vw, 16px);
  margin-top: 2px;
}

.quickstart-bar-title {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 11px;
  font-weight: 700;
  color: #38bdf8;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 7px;
}

.quickstart-steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(8px, 1.2vw, 14px);
}

.step-card-wide {
  display: flex;
  align-items: flex-start;
  gap: 9px;
  padding: 7px 10px;
  background: rgba(7, 12, 23, 0.7);
  border: 1px solid rgba(148, 163, 184, 0.08);
  border-radius: 8px;
}

.step-bubble {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: linear-gradient(135deg, #0284c7 0%, #0ea5e9 100%);
  color: #ffffff;
  font-size: 10.5px;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 1px;
  box-shadow: 0 2px 6px rgba(2, 132, 199, 0.3);
}

.step-content {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.step-head {
  font-size: 11.5px;
  font-weight: 700;
  color: #ffffff;
}

.step-desc {
  font-size: 10.5px;
  color: #94a3b8;
  line-height: 1.35;
}

.installer-cards-stack {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
  margin-bottom: 10px;
}

.installer-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 11px 15px;
  background: #070c17;
  border: 1px solid rgba(56, 189, 248, 0.2);
  border-radius: 8px;
  text-decoration: none;
  color: #ffffff;
  transition: all 0.2s ease;
}

.installer-card:hover {
  background: rgba(14, 165, 233, 0.12);
  border-color: #38bdf8;
  transform: translateY(-1px);
  box-shadow: 0 4px 14px rgba(2, 132, 199, 0.2);
}

.installer-os-icon {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.installer-os-icon.apple-icon {
  background: rgba(255, 255, 255, 0.08);
  color: #ffffff;
}

.installer-os-icon.windows-icon {
  background: rgba(56, 189, 248, 0.12);
  color: #38bdf8;
}

.installer-meta {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.installer-name {
  font-size: 13px;
  font-weight: 700;
  color: #ffffff;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.installer-file {
  font-size: 10.5px;
  color: #64748b;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.btn-installer-download {
  display: flex;
  align-items: center;
  gap: 6px;
  background: linear-gradient(135deg, #0284c7 0%, #0ea5e9 100%);
  color: #ffffff;
  padding: 7px 14px;
  border-radius: 6px;
  font-size: 11.5px;
  font-weight: 700;
  flex-shrink: 0;
  box-shadow: 0 2px 8px rgba(2, 132, 199, 0.35);
  white-space: nowrap;
}

.btn-installer-download:hover {
  background: linear-gradient(135deg, #0284c7 0%, #38bdf8 100%);
}

.installer-trust-footer {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  font-size: 11px;
  color: #94a3b8;
  padding-top: 2px;
}

/* ------------------------------------------
   RECUPERAR CONTA WIDE (100VH)
   ------------------------------------------ */
.recovery-wide-container {
  max-width: 980px;
  width: 100%;
}

.recovery-wide-card {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: clamp(16px, 2vw, 28px);
  background: linear-gradient(180deg, #0d1628 0%, #080d19 100%);
  border: 1px solid rgba(56, 189, 248, 0.22);
  border-radius: 12px;
  padding: clamp(16px, 2.2vh, 24px) clamp(18px, 2.2vw, 28px);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.6);
  align-items: center;
}

.recovery-info-col {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.recovery-title-group {
  display: flex;
  align-items: center;
  gap: 10px;
}

.recovery-title-h2 {
  font-size: clamp(17px, 2vh, 22px);
  font-weight: 800;
  color: #ffffff;
  margin: 0;
}

.recovery-info-desc {
  font-size: 12.5px;
  color: #94a3b8;
  line-height: 1.4;
  margin: 0;
}

.recovery-benefits-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: 4px;
}

.rec-benefit-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  color: #cbd5e1;
}

.recovery-form-col {
  background: rgba(13, 20, 36, 0.8);
  border: 1px solid rgba(148, 163, 184, 0.12);
  border-radius: 10px;
  padding: clamp(14px, 1.8vh, 20px) clamp(16px, 1.8vw, 22px);
}

@media (max-width: 860px) {
  .recovery-wide-container {
    max-width: 100% !important;
    width: 100% !important;
    padding: 0 12px !important;
    box-sizing: border-box !important;
  }

  .recovery-wide-card {
    grid-template-columns: 1fr !important;
    display: flex !important;
    flex-direction: column !important;
    gap: 20px !important;
    padding: 20px 16px !important;
    width: 100% !important;
    max-width: 460px !important;
    margin: 0 auto !important;
    box-sizing: border-box !important;
  }

  .recovery-info-col {
    width: 100% !important;
  }

  .recovery-form-col {
    width: 100% !important;
    padding: 18px 16px !important;
    box-sizing: border-box !important;
  }

  .recovery-form-col form,
  .recovery-form-col .auth-form-checkout,
  .recovery-form-col .form-group,
  .recovery-form-col input {
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
  }
}

/* ============================================================
   GUIA DE 3 PASSOS MODERNOS (Área do Usuário & Confirmação)
   ============================================================ */
.steps-guide-card {
  margin-top: 24px;
  background: rgba(10, 16, 30, 0.75);
  border: 1px solid rgba(148, 163, 184, 0.14);
  border-radius: 12px;
  padding: clamp(16px, 2vh, 20px) clamp(16px, 2vw, 22px);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 10px 30px -10px rgba(0, 0, 0, 0.5);
  position: relative;
  overflow: hidden;
}

.steps-guide-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(56, 189, 248, 0.4), transparent);
}

.steps-guide-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 16px;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(148, 163, 184, 0.08);
}

.steps-header-left {
  display: flex;
  align-items: center;
  gap: 10px;
}

.steps-icon-badge {
  width: 28px;
  height: 28px;
  border-radius: 7px;
  background: rgba(56, 189, 248, 0.12);
  border: 1px solid rgba(56, 189, 248, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #38bdf8;
  flex-shrink: 0;
}

.steps-guide-title {
  font-size: 13px;
  font-weight: 700;
  color: #f8fafc;
  margin: 0;
  letter-spacing: 0.4px;
  text-transform: uppercase;
}

.steps-quick-badge {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 4px 10px;
  border-radius: 20px;
  background: rgba(16, 185, 129, 0.1);
  border: 1px solid rgba(16, 185, 129, 0.25);
  color: #10b981;
  font-size: 11.5px;
  font-weight: 600;
}

.steps-pulse-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #10b981;
  box-shadow: 0 0 8px #10b981;
  animation: pulseDot 2s infinite;
}

@keyframes pulseDot {
  0% { transform: scale(0.95); opacity: 0.8; }
  50% { transform: scale(1.3); opacity: 1; box-shadow: 0 0 12px #10b981; }
  100% { transform: scale(0.95); opacity: 0.8; }
}

.steps-guide-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(12px, 1.5vw, 16px);
}

.step-guide-item {
  background: rgba(15, 23, 42, 0.55);
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 10px;
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
}

.step-guide-item:hover {
  background: rgba(15, 23, 42, 0.85);
  border-color: rgba(56, 189, 248, 0.35);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.35);
}

.step-item-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.step-number-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: rgba(56, 189, 248, 0.12);
  border: 1px solid rgba(56, 189, 248, 0.3);
  color: #38bdf8;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 800;
  font-size: 11.5px;
}

.step-icon-wrap {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.step-icon-download {
  background: rgba(14, 165, 233, 0.12);
  border: 1px solid rgba(14, 165, 233, 0.25);
  color: #38bdf8;
}

.step-icon-login {
  background: rgba(168, 85, 247, 0.12);
  border: 1px solid rgba(168, 85, 247, 0.25);
  color: #c084fc;
}

.step-icon-eco {
  background: rgba(16, 185, 129, 0.12);
  border: 1px solid rgba(16, 185, 129, 0.25);
  color: #10b981;
}

.step-guide-content {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.step-guide-heading {
  font-size: 13.5px;
  font-weight: 700;
  color: #f1f5f9;
  letter-spacing: -0.2px;
}

.step-guide-desc {
  font-size: 12px;
  color: #94a3b8;
  line-height: 1.45;
  margin: 0;
}

@media (max-width: 820px) {
  .steps-guide-grid {
    grid-template-columns: 1fr;
    gap: 10px;
  }
}

/* ============================================================
   ÁREA DO USUÁRIO (user.php) - ESPAÇAMENTO RESPONSIVO & ELEGANTE
   ============================================================ */
body.user-body {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  background: radial-gradient(circle at 50% 15%, #0d1a33 0%, #060a14 100%);
  overflow-x: hidden;
  overflow-y: auto;
  margin: 0;
  padding: 0;
}

.user-main {
  flex: 1 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: clamp(28px, 4vh, 48px) clamp(16px, 3vw, 32px);
  width: 100%;
  box-sizing: border-box;
}

.user-main .success-wide-container {
  max-width: 1560px;
  width: 96%;
  margin: 0 auto;
}

.user-main .thankyou-card {
  padding: clamp(18px, 2.5vh, 26px) clamp(20px, 2.8vw, 32px);
  border-radius: 14px;
  box-shadow: 0 20px 50px -15px rgba(0, 0, 0, 0.7), 0 0 40px -10px rgba(56, 189, 248, 0.08);
}

.user-main .thankyou-header {
  padding-bottom: 12px;
  margin-bottom: 4px;
}

.user-main .steps-guide-card {
  margin-top: 18px;
  padding: 16px 20px;
}

.user-main .step-guide-item {
  padding: 14px 16px;
  gap: 10px;
}

.user-body .footer-compact {
  padding: 14px 0 !important;
  background: rgba(6, 10, 20, 0.95);
  border-top: 1px solid rgba(148, 163, 184, 0.1);
  flex-shrink: 0;
}









/* Social buttons in navbar */
.nav-socials {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.social-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: #94a3b8;
  text-decoration: none;
  transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  box-sizing: border-box;
}

.social-btn svg {
  display: block;
}

.social-btn:hover {
  transform: translateY(-1.5px);
}

.social-btn.discord:hover {
  background: rgba(88, 101, 242, 0.18);
  border-color: rgba(88, 101, 242, 0.6);
  color: #7983f5;
  box-shadow: 0 0 14px rgba(88, 101, 242, 0.35);
}

.social-btn.instagram:hover {
  background: rgba(225, 48, 108, 0.18);
  border-color: rgba(225, 48, 108, 0.6);
  color: #f43f5e;
  box-shadow: 0 0 14px rgba(225, 48, 108, 0.35);
}

.social-divider {
  width: 1px;
  height: 20px;
  background: rgba(255, 255, 255, 0.1);
  margin: 0 4px;
}

@media (max-width: 640px) {
  .nav-socials {
    gap: 6px;
  }
  .social-btn {
    width: 32px;
    height: 32px;
  }
  .social-btn svg {
    width: 16px;
    height: 16px;
  }
}

@media (max-width: 480px) {
  .social-divider {
    display: none;
  }
  .btn-nav span {
    display: none;
  }
  .btn-nav {
    padding: 7px 10px;
  }
}


/* Linux & Android OS Icons & Disabled Soon State */
.installer-os-icon.linux-icon {
  background: rgba(234, 179, 8, 0.12);
  color: #facc15;
}

.installer-os-icon.android-icon {
  background: rgba(34, 197, 94, 0.12);
  color: #4ade80;
}

.installer-card.installer-card-disabled {
  opacity: 0.65;
  cursor: default;
  border-style: dashed;
  border-color: rgba(148, 163, 184, 0.25);
}

.installer-card.installer-card-disabled:hover {
  background: #070c17 !important;
  border-color: rgba(148, 163, 184, 0.3) !important;
  transform: none !important;
  box-shadow: none !important;
}

.btn-installer-soon {
  display: flex;
  align-items: center;
  gap: 6px;
  background: rgba(148, 163, 184, 0.1);
  border: 1px solid rgba(148, 163, 184, 0.25);
  color: #94a3b8;
  padding: 6px 12px;
  border-radius: 6px;
  font-size: 11px;
  font-weight: 700;
  flex-shrink: 0;
  letter-spacing: 0.02em;
  white-space: nowrap;
}


/* ============================================================
   THANK YOU & USER PAGES - ESPAÇAMENTO RESPONSIVO & NATURAL (WIDE 1380PX)
   ============================================================ */
body.thankyou-body,
body.user-body {
  min-height: 100vh !important;
  height: auto !important;
  max-height: none !important;
  display: flex !important;
  flex-direction: column !important;
  background: radial-gradient(circle at 50% 15%, #0d1a33 0%, #060a14 100%), #060a14 !important;
  overflow-x: hidden !important;
  overflow-y: auto !important;
  margin: 0 !important;
  padding: 0 !important;
}

.thankyou-main,
.user-main {
  flex: 1 0 auto !important;
  display: flex !important;
  flex-direction: column !important;
  align-items: center !important;
  justify-content: flex-start !important;
  padding: 24px 20px 48px !important;
  width: 100% !important;
  box-sizing: border-box !important;
}

.thankyou-body .navbar-compact .nav-container,
.user-body .navbar-compact .nav-container,
.thankyou-body .footer-compact .footer-container,
.user-body .footer-compact .footer-container,
.thankyou-main .success-wide-container,
.user-main .success-wide-container {
  max-width: 1560px !important;
  width: 96% !important;
  margin: 0 auto !important;
}

.thankyou-main .thankyou-card,
.user-main .thankyou-card {
  margin: 0 auto !important;
  width: 100% !important;
  box-sizing: border-box !important;
}

.thankyou-body .navbar-compact,
.user-body .navbar-compact {
  padding: 12px 0 !important;
  background: rgba(8, 13, 26, 0.95) !important;
  border-bottom: 1px solid rgba(148, 163, 184, 0.15) !important;
  flex-shrink: 0 !important;
}

.thankyou-body .footer-compact,
.user-body .footer-compact {
  padding: 18px 0 !important;
  background: rgba(6, 10, 20, 0.95) !important;
  border-top: 1px solid rgba(148, 163, 184, 0.15) !important;
  flex-shrink: 0 !important;
  margin-top: auto !important;
}

@media (max-width: 1024px) {
  .thankyou-grid {
    grid-template-columns: 1fr !important;
    gap: 18px !important;
  }
}

@media (max-width: 720px) {
  .installer-cards-stack {
    grid-template-columns: 1fr !important;
  }
  .quickstart-steps-grid {
    grid-template-columns: 1fr !important;
  }
}

/* ------------------------------------------
   LINUX TERMINAL COMMAND BOX
   ------------------------------------------ */
.linux-cmd-box {
  margin-top: 14px;
  background: rgba(3, 7, 18, 0.9);
  border: 1px solid rgba(56, 189, 248, 0.25);
  border-radius: 9px;
  padding: 12px 14px;
  box-sizing: border-box;
}

.linux-cmd-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  margin-bottom: 10px;
  flex-wrap: wrap;
}

.linux-cmd-title {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 11.5px;
  font-weight: 700;
  color: #38bdf8;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.linux-cmd-tabs {
  display: flex;
  gap: 5px;
  flex-wrap: wrap;
}

.linux-tab {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: #94a3b8;
  font-size: 11px;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: 5px;
  cursor: pointer;
  transition: all 0.2s ease;
}

.linux-tab:hover {
  color: #f1f5f9;
  background: rgba(56, 189, 248, 0.12);
  border-color: rgba(56, 189, 248, 0.35);
}

.linux-tab.active {
  background: rgba(14, 165, 233, 0.22);
  border-color: #0ea5e9;
  color: #38bdf8;
}

.linux-cmd-content {
  position: relative;
}

.linux-tab-panel {
  display: flex;
  align-items: center;
  gap: 10px;
  background: #040813;
  border: 1px solid rgba(56, 189, 248, 0.15);
  border-radius: 6px;
  padding: 8px 12px;
  overflow-x: auto;
}

.linux-tab-panel .cmd-prompt {
  color: #10b981;
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
  font-weight: 800;
  font-size: 13px;
  user-select: none;
}

.linux-tab-panel .cmd-code {
  flex: 1;
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
  font-size: 11.5px;
  color: #f1f5f9;
  white-space: nowrap;
  overflow-x: auto;
  scrollbar-width: none;
}

.linux-tab-panel .cmd-code::-webkit-scrollbar {
  display: none;
}

.btn-copy-cmd {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  background: rgba(56, 189, 248, 0.14);
  border: 1px solid rgba(56, 189, 248, 0.35);
  color: #38bdf8;
  padding: 5px 11px;
  border-radius: 5px;
  font-size: 11px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.2s ease;
  flex-shrink: 0;
}

.btn-copy-cmd:hover {
  background: #0ea5e9;
  color: #ffffff;
  border-color: #0ea5e9;
}

/* ============================================================
   BOTOES TRIAL NO HERO E BANNER CTA (5 HORAS GRATIS)
   ============================================================ */
.btn-hero-trial {
  background: rgba(245, 158, 11, 0.12) !important;
  border: 1px solid rgba(245, 158, 11, 0.35) !important;
  color: #fbbf24 !important;
  padding: 13px 22px !important;
  font-size: 14px !important;
  font-weight: 700 !important;
  border-radius: 8px !important;
  display: inline-flex !important;
  align-items: center !important;
  gap: 8px !important;
  text-decoration: none !important;
  transition: all 0.2s ease !important;
}

.btn-hero-trial:hover {
  background: rgba(245, 158, 11, 0.22) !important;
  border-color: #fbbf24 !important;
  color: #fef08a !important;
  transform: translateY(-2px) !important;
  box-shadow: 0 4px 16px rgba(245, 158, 11, 0.25) !important;
}

.btn-trial-banner {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 8px !important;
  width: 100% !important;
  margin-top: 10px !important;
  padding: 13px 20px !important;
  border-radius: 8px !important;
  background: rgba(245, 158, 11, 0.12) !important;
  border: 1px solid rgba(245, 158, 11, 0.35) !important;
  color: #fbbf24 !important;
  font-size: 14px !important;
  font-weight: 700 !important;
  text-decoration: none !important;
  transition: all 0.2s ease !important;
  box-sizing: border-box !important;
}

.btn-trial-banner:hover {
  background: rgba(245, 158, 11, 0.22) !important;
  border-color: #fbbf24 !important;
  color: #fef08a !important;
  transform: translateY(-1px) !important;
  box-shadow: 0 4px 16px rgba(245, 158, 11, 0.25) !important;
}

/* ═══════ Planos (homepage) — cards Vitalício e Pro lado a lado ═══════ */
.pricing-header-wrap { text-align: center; max-width: 640px; margin: 0 auto 36px; }
.pricing-pill-badge { display: inline-flex; align-items: center; gap: 8px; padding: 6px 14px; border-radius: 999px; background: rgba(56,189,248,.12); border: 1px solid rgba(56,189,248,.35); color: #7dd3fc; font-size: 11.5px; font-weight: 800; letter-spacing: .06em; text-transform: uppercase; }
.pricing-pill-badge svg { stroke: #38bdf8; }
.pricing-section-title { font-size: clamp(24px, 3vw, 34px); font-weight: 800; color: #f8fafc; margin: 16px 0 10px; letter-spacing: -.5px; }
.pricing-section-sub { font-size: 15px; line-height: 1.6; color: #94a3b8; margin: 0; }

.pricing-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 22px; max-width: 940px; margin: 0 auto; align-items: stretch; }
@media (max-width: 820px) { .pricing-grid { grid-template-columns: 1fr; max-width: 460px; } }

.pricing-card { display: flex; flex-direction: column; background: #0d1424; border: 1px solid rgba(148,163,184,.16); border-radius: 18px; padding: 26px; position: relative; overflow: hidden; }
.pricing-card.pro-card { border-color: rgba(129,140,248,.5); background: linear-gradient(180deg, rgba(99,102,241,.10), rgba(13,20,36,1) 60%); box-shadow: 0 0 0 1px rgba(129,140,248,.15), 0 20px 50px rgba(79,70,229,.15); }

.card-badge-row { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 14px; }
.card-tier-badge { font-size: 10.5px; font-weight: 800; letter-spacing: .05em; text-transform: uppercase; padding: 4px 10px; border-radius: 6px; background: rgba(56,189,248,.14); color: #7dd3fc; }
.card-tier-badge.pro-badge { background: rgba(129,140,248,.18); color: #c4b5fd; }
.card-discount-badge { font-size: 10.5px; font-weight: 800; letter-spacing: .05em; text-transform: uppercase; padding: 4px 10px; border-radius: 6px; background: rgba(16,185,129,.14); color: #6ee7b7; }
.card-discount-badge.pro-discount { background: rgba(245,158,11,.16); color: #fcd34d; }
.card-tier-name { font-size: 21px; font-weight: 800; color: #f8fafc; margin: 0 0 6px; }
.card-tier-desc { font-size: 13.5px; line-height: 1.55; color: #94a3b8; margin: 0 0 18px; }

.card-price-box { display: flex; flex-direction: column; gap: 6px; }
.price-strikethrough { font-size: 13px; color: #64748b; text-decoration: line-through; }
.price-main-display { display: flex; align-items: baseline; gap: 3px; flex-wrap: wrap; }
.price-currency { font-size: 20px; font-weight: 700; color: #cbd5e1; }
.price-value { font-size: 44px; font-weight: 800; color: #f8fafc; line-height: 1; letter-spacing: -1px; }
.price-cents { font-size: 24px; font-weight: 800; color: #f8fafc; }
.pro-val, .pro-cents, .pro-currency { color: #c4b5fd; }
.price-period { font-size: 12.5px; color: #94a3b8; margin-left: 6px; align-self: flex-end; }
.price-lifetime-tag { display: inline-flex; align-items: center; gap: 6px; margin-top: 8px; font-size: 12.5px; font-weight: 600; color: #6ee7b7; }
.price-lifetime-tag.pro-tag { color: #a5b4fc; }

.card-divider { height: 1px; background: rgba(148,163,184,.14); margin: 20px 0; }
.card-divider.pro-divider { background: rgba(129,140,248,.25); }

.pricing-card-features { flex: 1; }
.features-title { display: block; font-size: 11.5px; font-weight: 700; letter-spacing: .05em; text-transform: uppercase; color: #64748b; margin-bottom: 12px; }
.features-list { list-style: none; margin: 0; padding: 0; display: grid; gap: 11px; }
.features-list li { display: flex; align-items: flex-start; gap: 10px; font-size: 13.5px; line-height: 1.45; color: #cbd5e1; }
.features-list li strong { color: #f8fafc; }
.feat-icon { flex-shrink: 0; width: 20px; height: 20px; border-radius: 6px; display: grid; place-items: center; background: rgba(56,189,248,.12); margin-top: 1px; }
.feat-icon.pro-icon { background: rgba(129,140,248,.16); }
.feat-highlight { color: #c4b5fd !important; }
.feat-highlight strong { color: #ddd6fe !important; }

.pricing-card-action { margin-top: 22px; display: flex; flex-direction: column; gap: 10px; }
.btn-tier-cta { display: flex; align-items: center; justify-content: center; gap: 8px; width: 100%; padding: 14px 18px; border-radius: 10px; font-size: 14.5px; font-weight: 800; text-decoration: none; border: none; cursor: pointer; transition: filter .15s, transform .05s; }
.btn-tier-cta:hover { filter: brightness(1.08); }
.btn-tier-cta:active { transform: translateY(1px); }
.btn-tier-standard { background: linear-gradient(135deg, #0ea5e9, #2563eb); color: #fff; }
.btn-tier-pro { background: linear-gradient(135deg, #6366f1, #8b5cf6); color: #fff; }
.action-hint { text-align: center; font-size: 11.5px; color: #64748b; }
.pro-proxy-note { font-size: 11.5px; color: #94a3b8; line-height: 1.45; margin: 4px 0 0; }

/* ═══════ Banner de Teste Grátis + faixa de confiança (homepage) ═══════ */
.pricing-trial-card { max-width: 940px; margin: 26px auto 0; display: flex; align-items: center; justify-content: space-between; gap: 20px; flex-wrap: wrap; padding: 22px 26px; border-radius: 16px; background: linear-gradient(135deg, rgba(245,158,11,.08), rgba(13,20,36,.6)); border: 1px solid rgba(245,158,11,.28); }
.trial-card-left { display: flex; align-items: center; gap: 16px; flex: 1; min-width: 260px; }
.trial-card-icon-pulse { flex-shrink: 0; width: 48px; height: 48px; border-radius: 12px; display: grid; place-items: center; background: rgba(56,189,248,.12); border: 1px solid rgba(56,189,248,.3); animation: trialPulse 2.4s ease-in-out infinite; }
@keyframes trialPulse { 0%,100% { box-shadow: 0 0 0 0 rgba(56,189,248,.35); } 50% { box-shadow: 0 0 0 8px rgba(56,189,248,0); } }
.trial-card-texts { min-width: 0; }
.trial-card-title-badge { display: flex; align-items: center; gap: 10px; flex-wrap: wrap; margin-bottom: 4px; }
.trial-card-title-badge h4 { margin: 0; font-size: 16px; font-weight: 800; color: #f8fafc; }
.trial-free-badge { font-size: 10.5px; font-weight: 800; letter-spacing: .05em; padding: 3px 9px; border-radius: 999px; background: rgba(16,185,129,.15); color: #6ee7b7; }
.trial-card-texts p { margin: 0; font-size: 13.5px; line-height: 1.55; color: #94a3b8; }
.trial-card-texts p strong { color: #e2e8f0; }
.btn-trial-action { flex-shrink: 0; display: inline-flex; align-items: center; gap: 8px; padding: 14px 22px; border-radius: 10px; background: linear-gradient(135deg, #f59e0b, #d97706); color: #0b1020; font-size: 14px; font-weight: 800; text-decoration: none; transition: filter .15s; }
.btn-trial-action:hover { filter: brightness(1.08); }
.btn-trial-action svg { stroke: #0b1020; }
@media (max-width: 720px) { .pricing-trial-card { flex-direction: column; align-items: stretch; text-align: left; } .btn-trial-action { justify-content: center; } }

.pricing-trust-strip { max-width: 940px; margin: 18px auto 0; display: flex; align-items: center; justify-content: center; gap: 10px 22px; flex-wrap: wrap; }
.trust-pill { display: inline-flex; align-items: center; gap: 7px; font-size: 12.5px; color: #cbd5e1; }
.payment-methods-pill { display: inline-flex; align-items: center; gap: 14px; flex-wrap: wrap; padding-left: 6px; }
.pay-item { display: inline-flex; align-items: center; gap: 5px; font-size: 12px; color: #94a3b8; }
@media (max-width: 720px) { .pricing-trust-strip { flex-direction: column; gap: 8px; align-items: flex-start; } }

/* ===== Ajuste responsivo: nav só ícones + botões CTA (mobile) ===== */
@media (max-width: 720px) {
  /* Nav: mostrar apenas ícones, esconder textos dos botões */
  .btn-nav span,
  .btn-nav-login span { display: none; }
  .btn-nav,
  .btn-nav-login {
    padding: 8px 10px;
    gap: 0;
  }
  .btn-nav svg,
  .btn-nav-login svg { margin: 0; }
  .nav-actions { gap: 8px; }

  /* Botões CTA do hero: empilhar em largura total, sem quebra estranha */
  .hero-cta-group { flex-direction: column; align-items: stretch; gap: 10px; }
  .btn-hero,
  .btn-hero-trial {
    width: 100%;
    justify-content: center;
    text-align: center;
  }
}

@media (max-width: 720px) {
  /* Impede o cabeçalho e a página de estourar a largura da tela */
  html, body { overflow-x: hidden; max-width: 100%; }
  .navbar, .nav-container, .container { max-width: 100vw; }
  .nav-container { padding: 0 14px; gap: 10px; }
  /* Brand pode encolher e não empurra o resto pra fora da tela */
  .brand { min-width: 0; flex-shrink: 1; }
  .brand-name { font-size: 17px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
  .nav-actions { flex-shrink: 0; }
}

@media (max-width: 480px) {
  .social-divider { display: none; }
  /* Em telas bem estreitas, deixa só os botões de conta/licença (esconde redes sociais) pra tudo caber */
  .nav-socials { display: none; }
  .btn-nav, .btn-nav-login { padding: 8px 9px; }
  .nav-actions { gap: 6px; }
  .brand-icon { width: 28px; height: 28px; }
  /* Reduz levemente o texto dos CTAs para não estourar em telas bem pequenas */
  .btn-hero, .btn-hero-trial { font-size: 13.5px !important; }
  .btn-tier-cta, .btn-trial-action, .btn-trial-banner { font-size: 13.5px !important; }
}

/* ===== Logo no topo do card + polimento do login (idledock.com) ===== */
.summary-brand { display: none; align-items: center; gap: 10px; margin-bottom: 18px; padding-bottom: 16px; border-bottom: 1px solid rgba(148,163,184,.14); }
.summary-brand-logo { width: 38px; height: 38px; border-radius: 10px; }
.summary-brand-name { font-family: 'Plus Jakarta Sans','Inter',sans-serif; font-weight: 800; font-size: 20px; color: #f8fafc; letter-spacing: -.01em; }
.summary-brand-name span { color: #38bdf8; }
body.mode-login .summary-brand { display: flex; }

/* Card do Portal do Cliente mais bonito no login */
body.mode-login .checkout-summary-card {
  background: linear-gradient(165deg, rgba(30,41,59,.55) 0%, rgba(14,20,34,.65) 100%);
  border: 1px solid rgba(56,189,248,.18);
  box-shadow: 0 24px 60px -30px rgba(2,8,23,.9), 0 0 0 1px rgba(56,189,248,.04) inset;
  border-radius: 20px;
}
body.mode-login .summary-tag {
  color: #7dd3fc; letter-spacing: .14em; font-weight: 800; font-size: 11px;
}
body.mode-login .summary-product-name { font-size: 24px; line-height: 1.2; }
body.mode-login .summary-checklist li { font-size: 13px; }

/* Card do formulário de login mais elegante */
body.mode-login .checkout-form-card {
  background: linear-gradient(165deg, rgba(20,28,45,.7) 0%, rgba(11,16,26,.85) 100%);
  border: 1px solid rgba(56,189,248,.16);
  box-shadow: 0 30px 70px -35px rgba(2,8,23,.95);
  border-radius: 20px;
}
body.mode-login .step-circle {
  background: linear-gradient(135deg,#0ea5e9,#38bdf8) !important;
  box-shadow: 0 6px 18px -6px rgba(56,189,248,.7);
}
body.mode-login .btn-checkout-submit {
  background: linear-gradient(135deg,#0284c7 0%,#0ea5e9 100%);
  box-shadow: 0 14px 30px -12px rgba(14,165,233,.65);
  transition: transform .12s ease, box-shadow .12s ease;
}
body.mode-login .btn-checkout-submit:hover { transform: translateY(-1px); box-shadow: 0 18px 38px -12px rgba(14,165,233,.8); }
body.mode-login .form-group input {
  border-radius: 12px; transition: border-color .15s, box-shadow .15s;
}
body.mode-login .form-group input:focus {
  border-color: #38bdf8; box-shadow: 0 0 0 3px rgba(56,189,248,.15);
}

/* ===== Login: cards iguais (mesma largura e altura) e alinhados ===== */
body.mode-login .main-100vh .checkout-container,
body.mode-login .checkout-container {
  grid-template-columns: 1fr 1fr !important;
  align-items: stretch !important;
  gap: 24px !important;
  max-width: 1080px !important;
}
body.mode-login .checkout-summary-card {
  display: flex !important;
  flex-direction: column;
  justify-content: center;
}
body.mode-login .checkout-summary-card,
body.mode-login .checkout-form-card {
  padding: 34px 32px !important;
}
@media (max-width: 860px) {
  body.mode-login .main-100vh .checkout-container,
  body.mode-login .checkout-container { grid-template-columns: 1fr !important; }
}

/* ===== Login: preencher melhor o card de info (menos vazio) ===== */
body.mode-login .checkout-summary-card {
  justify-content: space-between !important;
  padding: 40px 36px !important;
}
body.mode-login .summary-brand { margin-bottom: 0; padding-bottom: 22px; }
body.mode-login .summary-info-mid { display: block; }
body.mode-login .summary-tag { margin-top: 0; }
body.mode-login .summary-product-name { font-size: 27px; margin: 8px 0 14px; line-height: 1.2; }
body.mode-login .summary-product-desc { line-height: 1.65; margin-bottom: 0; font-size: 14.5px; }
body.mode-login .summary-checklist { margin-top: 0; padding-top: 6px; }
body.mode-login .summary-checklist li { margin-bottom: 16px; font-size: 14px; }
body.mode-login .summary-checklist li:last-child { margin-bottom: 0; }

/* ===== Login info card: correcao final do preenchimento ===== */
body.mode-login .checkout-summary-card {
  justify-content: flex-start !important;
  padding: 38px 36px !important;
}
body.mode-login .summary-brand { margin-bottom: 0 !important; padding-bottom: 22px; }
body.mode-login .summary-tag { margin-top: 22px; }
body.mode-login .summary-product-name { font-size: 27px; margin: 8px 0 14px; line-height: 1.2; }
body.mode-login .summary-product-desc { line-height: 1.65; margin-bottom: 0; font-size: 14.5px; }
body.mode-login .summary-checklist { margin-top: auto !important; padding-top: 28px; }
body.mode-login .summary-checklist li { margin-bottom: 15px; font-size: 14px; }
body.mode-login .summary-checklist li:last-child { margin-bottom: 0; }

/* ===== Hero premium (idledock.com) ===== */
.hero-section::before {
  content: ""; position: absolute; inset: 0; z-index: 0; pointer-events: none;
  background:
    radial-gradient(55% 50% at 16% 28%, rgba(56,189,248,.16) 0%, transparent 62%),
    radial-gradient(45% 45% at 88% 18%, rgba(37,99,235,.14) 0%, transparent 66%);
}
.hero-section .badge-pill {
  background: linear-gradient(135deg, rgba(56,189,248,.14), rgba(15,24,46,.92));
  border-color: rgba(56,189,248,.30);
  color: #cbd5e1;
  box-shadow: 0 6px 22px -10px rgba(56,189,248,.45);
  backdrop-filter: blur(4px);
}
.hero-title { font-size: 44px; letter-spacing: -1px; }
.hero-title .text-gradient, .text-gradient {
  background: linear-gradient(115deg, #38bdf8 0%, #60a5fa 45%, #818cf8 100%);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent; color: transparent;
}
.hero-cta-group .btn-primary {
  background: linear-gradient(135deg, #2563eb 0%, #3b82f6 100%) !important;
  border: 1px solid rgba(255,255,255,.14) !important;
  box-shadow: 0 16px 38px -14px rgba(59,130,246,.75);
  transition: transform .14s ease, box-shadow .14s ease;
  font-weight: 700;
}
.hero-cta-group .btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 22px 48px -14px rgba(59,130,246,.9);
}
.hero-trust-row .trust-item svg { color: #38bdf8; }
.hero-trust-row .trust-item { color: #a9b6c9; }
.hero-section .video-frame, .hero-right .video-frame {
  box-shadow: 0 40px 90px -40px rgba(2,8,23,.9), 0 0 0 1px rgba(56,189,248,.1);
}

/* ===== Footer unico e bonito (todas as paginas) ===== */
.site-footer {
  background: linear-gradient(180deg, #0a0f1c 0%, #070b15 100%);
  border-top: 1px solid rgba(56,189,248,.12);
  padding: 46px 0 0;
  margin-top: 60px;
}
.footer-inner {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 34px;
}
.footer-brand-col { max-width: 380px; }
.footer-brand { display: flex; align-items: center; gap: 10px; margin-bottom: 14px; }
.footer-logo { width: 34px; height: 34px; border-radius: 9px; }
.footer-brand-name { font-family: var(--font-display,'Plus Jakarta Sans',sans-serif); font-weight: 800; font-size: 19px; color: #f8fafc; }
.footer-brand-name span { color: #38bdf8; }
.footer-tagline { font-size: 13px; color: #8a97ab; line-height: 1.6; margin: 0 0 18px; }
.footer-socials { display: flex; gap: 10px; }
.footer-socials a {
  width: 38px; height: 38px; display: inline-flex; align-items: center; justify-content: center;
  border-radius: 10px; color: #94a3b8;
  background: rgba(255,255,255,.04); border: 1px solid rgba(148,163,184,.16);
  transition: color .15s, border-color .15s, background .15s, transform .15s;
}
.footer-socials a:hover { color: #fff; border-color: #38bdf8; background: rgba(56,189,248,.14); transform: translateY(-2px); }
.footer-col-title {
  font-size: 12px; font-weight: 800; letter-spacing: .1em; text-transform: uppercase;
  color: #64748b; margin: 4px 0 16px;
}
.footer-col a {
  display: block; font-size: 14px; color: #a9b6c9; text-decoration: none;
  margin-bottom: 12px; transition: color .15s;
}
.footer-col a:hover { color: #38bdf8; }
.footer-bottom {
  border-top: 1px solid rgba(148,163,184,.1);
  padding: 18px 0; display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 8px;
}
.footer-bottom span { font-size: 12.5px; color: #64748b; }
.footer-bottom-tag { color: #475569 !important; }
.footer-bottom { max-width: 1200px; margin: 0 auto; padding-left: 20px; padding-right: 20px; }

/* hover dos icones sociais do MENU (inclui o X novo) */
.nav-socials .social-btn.x-twitter:hover { color: #fff; }

@media (max-width: 760px) {
  .footer-inner { grid-template-columns: 1fr; gap: 28px; text-align: left; }
  .footer-bottom { flex-direction: column; text-align: center; }
}

/* ===== FIX: paginas view-100vh cortavam o conteudo (planos empilhados + footer grande) ===== */
html.view-100vh, body.view-100vh {
  height: auto !important;
  max-height: none !important;
  min-height: 100vh !important;
  overflow-y: auto !important;
  overflow-x: hidden !important;
  justify-content: flex-start !important;
}
.main-100vh {
  flex: 1 0 auto !important;
  overflow: visible !important;
  min-height: 0 !important;
  padding-top: clamp(20px, 4vh, 48px) !important;
  padding-bottom: clamp(20px, 4vh, 48px) !important;
}
body.view-100vh .site-footer { flex-shrink: 0; }

/* ===== FIX: icones sociais do footer estavam no canto (regra .footer-col a pegava eles) ===== */
.site-footer .footer-socials a {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  margin-bottom: 0 !important;
  width: 40px; height: 40px;
}
.site-footer .footer-socials a svg { display: block; }
.site-footer .footer-socials a:hover { color: #fff !important; }

/* Modo login: esconde os elementos exclusivos da compra (planos, preco, trial, badge MP) */
body.mode-login #planPicker,
body.mode-login #summaryPriceBox,
body.mode-login #trialContainer,
body.mode-login #mpGuaranteeBadge { display: none !important; }

/* ===== Cards de plano (Vitalicio/Pro) com a MESMA altura ===== */
.plan-picker .plan-option { min-height: 96px; align-content: center; }
/* ===== Os dois cards principais do checkout com a mesma altura (compra e login) ===== */
.main-100vh .checkout-container { align-items: stretch !important; }
.checkout-container { align-items: stretch; }

/* Cards de plano exatamente com a mesma altura (grid iguala pela linha mais alta) */
.plan-picker { grid-auto-rows: 1fr !important; }
.plan-picker .plan-option { min-height: 0; height: 100%; }
