/* ==========================================================================
   GOOGLE AI PRO - DESIGN SYSTEM & MOBILE APP STYLES
   Estilo Dark Mode Glassmorphism de Alta Conversão
   ========================================================================== */

:root {
  --bg-dark: #050814;
  --bg-surface: #0a1026;
  --bg-card: rgba(16, 24, 52, 0.65);
  --bg-card-hover: rgba(22, 34, 74, 0.85);
  --border-color: rgba(255, 255, 255, 0.08);
  --border-focus: #00f2fe;
  
  --primary-cyan: #00f2fe;
  --primary-blue: #2575fc;
  --gemini-purple: #7928ca;
  --gemini-magenta: #ff0080;
  --success-green: #00e676;
  --accent-gold: #ffb703;
  --danger-red: #ff3366;
  
  --text-main: #f8fafc;
  --text-muted: #94a3b8;
  --text-dim: #64748b;
  
  --font-heading: 'Outfit', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 22px;
  --radius-full: 9999px;
  
  --shadow-glow-cyan: 0 0 35px rgba(0, 242, 254, 0.25);
  --shadow-glow-purple: 0 0 35px rgba(121, 40, 202, 0.3);
  --shadow-glow-green: 0 0 30px rgba(0, 230, 118, 0.35);
  --shadow-card: 0 10px 30px rgba(0, 0, 0, 0.45);
  
  --transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  -webkit-tap-highlight-color: transparent;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  background-color: var(--bg-dark);
  color: var(--text-main);
  font-family: var(--font-body);
  line-height: 1.5;
  overflow-x: hidden;
  background-image: 
    radial-gradient(circle at 10% 20%, rgba(37, 117, 252, 0.12) 0%, transparent 40%),
    radial-gradient(circle at 90% 10%, rgba(121, 40, 202, 0.14) 0%, transparent 45%),
    radial-gradient(circle at 50% 80%, rgba(0, 242, 254, 0.08) 0%, transparent 50%);
  background-attachment: fixed;
  padding-bottom: 90px; /* Espaço para barra fixa mobile */
}

/* Tipografia */
h1, h2, h3, h4, .brand-title {
  font-family: var(--font-heading);
  font-weight: 700;
  color: #ffffff;
  letter-spacing: -0.02em;
}

a {
  text-decoration: none;
  color: inherit;
}

/* ==========================================================================
   TOP BAR & HEADER
   ========================================================================== */
.announcement-bar {
  background: linear-gradient(90deg, #7928ca, #ff0080, #ffb703);
  color: #ffffff;
  padding: 8px 16px;
  font-size: 0.85rem;
  font-weight: 600;
  text-align: center;
  position: relative;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.countdown-badge {
  background: rgba(0, 0, 0, 0.4);
  padding: 2px 8px;
  border-radius: var(--radius-sm);
  font-family: monospace;
  font-weight: 700;
  letter-spacing: 1px;
}

.app-header {
  position: sticky;
  top: 0;
  z-index: 90;
  background: rgba(5, 8, 20, 0.82);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border-color);
  padding: 12px 20px;
}

.header-container {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo-wrapper {
  display: flex;
  align-items: center;
  gap: 10px;
}

.gemini-spark {
  width: 28px;
  height: 28px;
  animation: pulse-glow 3s infinite alternate;
}

.logo-text {
  font-size: 1.25rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  gap: 5px;
}

.logo-text .google {
  color: #ffffff;
}

.logo-text .pro-badge {
  background: linear-gradient(135deg, var(--primary-cyan), var(--primary-blue));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: 900;
}

.header-status {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.75rem;
  color: var(--success-green);
  background: rgba(0, 230, 118, 0.1);
  padding: 5px 12px;
  border-radius: var(--radius-full);
  border: 1px solid rgba(0, 230, 118, 0.25);
}

.status-dot {
  width: 8px;
  height: 8px;
  background-color: var(--success-green);
  border-radius: 50%;
  animation: blink 1.5s infinite;
}

/* ==========================================================================
   LAYOUT CONTAINER
   ========================================================================== */
.main-container {
  max-width: 1080px;
  margin: 0 auto;
  padding: 20px 16px;
}

/* ==========================================================================
   HERO SECTION
   ========================================================================== */
.hero-section {
  padding: 24px 0 36px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  position: relative;
}

.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(121, 40, 202, 0.15);
  border: 1px solid rgba(121, 40, 202, 0.4);
  padding: 6px 16px;
  border-radius: var(--radius-full);
  color: #c084fc;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 18px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.hero-title {
  font-size: 2.3rem;
  line-height: 1.15;
  margin-bottom: 14px;
}

@media (min-width: 768px) {
  .hero-title {
    font-size: 3.4rem;
  }
}

.gradient-text-gemini {
  background: linear-gradient(135deg, #ffffff 10%, #60a5fa 40%, #00f2fe 75%, #c084fc 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-subtitle {
  color: var(--text-muted);
  font-size: 1.05rem;
  max-width: 680px;
  margin: 0 auto 24px;
}

/* Product Card Banner - Ampliado e de Alto Impacto */
.product-showcase {
  width: 100%;
  max-width: 1020px;
  margin: 15px auto 35px;
  position: relative;
}

.banner-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 15px 50px rgba(0, 0, 0, 0.6), 0 0 45px rgba(0, 242, 254, 0.25);
  border: 1px solid rgba(255, 255, 255, 0.18);
  transition: var(--transition);
  background: #000;
  cursor: pointer;
}

.banner-card:hover {
  transform: translateY(-4px) scale(1.012);
  box-shadow: 0 20px 65px rgba(0, 0, 0, 0.75), 0 0 60px rgba(0, 242, 254, 0.4);
  border-color: rgba(0, 242, 254, 0.5);
}

.banner-card picture {
  display: block;
  width: 100%;
}

.banner-card img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

.floating-economy-badge {
  position: absolute;
  top: 14px;
  right: 14px;
  background: linear-gradient(135deg, #7928ca, #ff0080);
  color: #ffffff;
  padding: 6px 16px;
  border-radius: var(--radius-full);
  font-weight: 800;
  font-size: 0.85rem;
  box-shadow: 0 4px 20px rgba(121, 40, 202, 0.7);
  display: flex;
  align-items: center;
  gap: 6px;
  animation: pulse-economy 2s infinite;
  z-index: 2;
}

/* Preço no Hero */
.hero-price-box {
  background: var(--bg-card);
  backdrop-filter: blur(16px);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: 20px 24px;
  width: 100%;
  max-width: 540px;
  margin: 0 auto 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

.old-price-line {
  color: var(--text-dim);
  font-size: 1rem;
  text-decoration: line-through;
}

.current-price-line {
  display: flex;
  align-items: baseline;
  gap: 8px;
}

.current-price-line .prefix {
  font-size: 1.1rem;
  color: var(--text-muted);
}

.current-price-line .currency {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--success-green);
}

.current-price-line .value {
  font-size: 3rem;
  font-weight: 900;
  font-family: var(--font-heading);
  color: var(--success-green);
  text-shadow: 0 0 25px rgba(0, 230, 118, 0.4);
  line-height: 1;
}

.price-subinfo {
  font-size: 0.85rem;
  color: #38bdf8;
  display: flex;
  align-items: center;
  gap: 6px;
}

/* CTA Buttons */
.btn-primary-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  max-width: 480px;
  padding: 18px 28px;
  background: linear-gradient(135deg, #00e676 0%, #00b0ff 100%);
  color: #04101e;
  font-size: 1.2rem;
  font-weight: 800;
  font-family: var(--font-heading);
  text-transform: uppercase;
  border-radius: var(--radius-full);
  border: none;
  cursor: pointer;
  box-shadow: 0 8px 30px rgba(0, 230, 118, 0.45);
  transition: var(--transition);
  text-decoration: none;
}

.btn-primary-cta:hover, .btn-primary-cta:active {
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 12px 40px rgba(0, 230, 118, 0.6);
  background: linear-gradient(135deg, #05f27d 0%, #29b6f6 100%);
}

.hero-security-seals {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
  margin-top: 18px;
  color: var(--text-muted);
  font-size: 0.8rem;
}

.seal-item {
  display: flex;
  align-items: center;
  gap: 6px;
}

/* ==========================================================================
   FEATURE CARDS GRID (PÍLULAS DE BENEFÍCIOS)
   ========================================================================== */
.section-title {
  text-align: center;
  font-size: 1.8rem;
  margin-bottom: 8px;
}

.section-subtitle {
  text-align: center;
  color: var(--text-muted);
  font-size: 0.95rem;
  max-width: 600px;
  margin: 0 auto 30px;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin-bottom: 40px;
}

@media (min-width: 768px) {
  .features-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
  }
}

.feature-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  padding: 18px 14px;
  text-align: center;
  transition: var(--transition);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

.feature-card:hover {
  background: var(--bg-card-hover);
  border-color: rgba(0, 242, 254, 0.3);
  transform: translateY(-3px);
}

.feature-icon-box {
  width: 50px;
  height: 50px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.05);
  font-size: 1.6rem;
}

.feature-title {
  font-size: 1rem;
  font-weight: 700;
  color: #ffffff;
}

.feature-desc {
  font-size: 0.8rem;
  color: var(--text-muted);
  line-height: 1.3;
}

/* ==========================================================================
   COMPARAÇÃO DE VALOR: OFICIAL vs PROMOÇÃO
   ========================================================================== */
.comparison-section {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: 28px 18px;
  margin-bottom: 45px;
}

.comparison-table-wrapper {
  overflow-x: auto;
  margin-top: 20px;
}

.comparison-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 480px;
}

.comparison-table th, .comparison-table td {
  padding: 14px 16px;
  text-align: left;
  border-bottom: 1px solid var(--border-color);
}

.comparison-table th {
  font-size: 0.95rem;
  color: var(--text-muted);
}

.comparison-table th.col-promo {
  color: var(--primary-cyan);
  font-weight: 800;
  font-size: 1.05rem;
  background: rgba(0, 242, 254, 0.05);
  border-radius: var(--radius-sm) var(--radius-sm) 0 0;
}

.comparison-table td.col-promo {
  background: rgba(0, 242, 254, 0.05);
  font-weight: 600;
  color: #ffffff;
}

.icon-check {
  color: var(--success-green);
  font-size: 1.2rem;
}

.icon-cross {
  color: var(--danger-red);
  font-size: 1.2rem;
}

/* ==========================================================================
   PLANOS DE PREÇO (PLAN SELECTOR)
   ========================================================================== */
.plans-section {
  margin-bottom: 50px;
}

.plans-grid {
  display: flex;
  flex-direction: column;
  gap: 16px;
  max-width: 720px;
  margin: 0 auto;
}

.plan-card {
  background: var(--bg-card);
  border: 2px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: 22px 20px;
  cursor: pointer;
  position: relative;
  transition: var(--transition);
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.plan-card.featured {
  border-color: #00f2fe;
  background: linear-gradient(145deg, rgba(16, 24, 52, 0.85), rgba(8, 16, 38, 0.95));
  box-shadow: var(--shadow-glow-cyan);
}

.plan-card:hover {
  transform: translateY(-2px);
  border-color: rgba(0, 242, 254, 0.6);
}

.plan-card-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}

.plan-badge {
  position: absolute;
  top: -12px;
  left: 24px;
  background: linear-gradient(90deg, #7928ca, #00f2fe);
  color: #ffffff;
  padding: 4px 12px;
  border-radius: var(--radius-full);
  font-size: 0.75rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.plan-radio-row {
  display: flex;
  align-items: center;
  gap: 12px;
}

.custom-radio {
  width: 22px;
  height: 22px;
  border: 2px solid var(--text-dim);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
  flex-shrink: 0;
}

.plan-card.featured .custom-radio,
.plan-card.selected .custom-radio {
  border-color: #00f2fe;
  background: rgba(0, 242, 254, 0.2);
}

.custom-radio::after {
  content: '';
  width: 10px;
  height: 10px;
  background: #00f2fe;
  border-radius: 50%;
  opacity: 0;
  transition: var(--transition);
}

.plan-card.featured .custom-radio::after,
.plan-card.selected .custom-radio::after {
  opacity: 1;
}

.plan-name {
  font-size: 1.15rem;
  font-weight: 800;
}

.plan-duration {
  font-size: 0.85rem;
  color: var(--text-muted);
}

.plan-pricing {
  text-align: right;
}

.plan-old-price {
  font-size: 0.85rem;
  color: var(--text-dim);
  text-decoration: line-through;
}

.plan-current-price {
  font-size: 1.6rem;
  font-weight: 900;
  font-family: var(--font-heading);
  color: var(--success-green);
}

.plan-features-list {
  list-style: none;
  border-top: 1px solid var(--border-color);
  padding-top: 12px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 8px;
  font-size: 0.85rem;
  color: var(--text-muted);
}

@media (min-width: 600px) {
  .plan-features-list {
    grid-template-columns: 1fr 1fr;
  }
}

.plan-features-list li {
  display: flex;
  align-items: center;
  gap: 8px;
}

/* ==========================================================================
   COMO FUNCIONA A ATIVAÇÃO (PASSO A PASSO)
   ========================================================================== */
.steps-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  margin-bottom: 45px;
}

@media (min-width: 768px) {
  .steps-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.step-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  padding: 22px;
  position: relative;
  text-align: left;
}

.step-number {
  font-size: 2.2rem;
  font-weight: 900;
  font-family: var(--font-heading);
  color: rgba(255, 255, 255, 0.1);
  position: absolute;
  top: 10px;
  right: 16px;
}

.step-title {
  font-size: 1.1rem;
  margin-bottom: 8px;
  color: #ffffff;
}

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

/* ==========================================================================
   PROVA SOCIAL E DEPOIMENTOS (SEM SCROLLBAR FEIA & GRID NO DESKTOP)
   ========================================================================== */
.testimonials-slider {
  display: flex;
  gap: 16px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding: 10px 4px 20px;
  margin-bottom: 45px;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none; /* Firefox */
  -ms-overflow-style: none; /* IE/Edge */
}

.testimonials-slider::-webkit-scrollbar {
  display: none; /* Chrome, Safari, Edge */
}

@media (min-width: 992px) {
  .testimonials-slider {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    overflow-x: visible;
    padding-bottom: 0;
  }
}

.testimonial-card {
  flex: 0 0 290px;
  scroll-snap-align: start;
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  padding: 22px 20px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 14px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.25);
  transition: var(--transition);
}

.testimonial-card:hover {
  transform: translateY(-3px);
  border-color: rgba(0, 242, 254, 0.35);
  background: var(--bg-card-hover);
}

.testimonial-user {
  display: flex;
  align-items: center;
  gap: 10px;
}

.user-avatar {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  overflow: hidden;
  border: 2px solid rgba(0, 242, 254, 0.45);
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.5);
  flex-shrink: 0;
  background: #111827;
}

.user-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.user-info h4 {
  font-size: 0.9rem;
  margin-bottom: 2px;
}

.user-info span {
  font-size: 0.75rem;
  color: var(--success-green);
  display: flex;
  align-items: center;
  gap: 4px;
}

.testimonial-text {
  font-size: 0.85rem;
  color: var(--text-muted);
  font-style: italic;
}

/* ==========================================================================
   FAQ ACCORDION
   ========================================================================== */
.faq-section {
  max-width: 760px;
  margin: 0 auto 50px;
}

.faq-item {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  margin-bottom: 10px;
  overflow: hidden;
  transition: var(--transition);
}

.faq-question {
  padding: 16px 20px;
  font-weight: 700;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.95rem;
  user-select: none;
}

.faq-icon {
  transition: transform 0.3s ease;
  font-size: 0.8rem;
  color: var(--primary-cyan);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.3s ease;
  color: var(--text-muted);
  font-size: 0.88rem;
  line-height: 1.6;
  padding: 0 20px;
}

.faq-item.active .faq-answer {
  padding: 0 20px 18px;
  max-height: 300px;
}

.faq-item.active .faq-icon {
  transform: rotate(180deg);
}

/* ==========================================================================
   STICKY BOTTOM BAR (MOBILE APP EXPERIENCE)
   ========================================================================== */
.mobile-sticky-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(8, 12, 28, 0.94);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  padding: 12px 18px;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}

@media (min-width: 768px) {
  .mobile-sticky-bar {
    display: none; /* Em desktop a página já tem CTAs bem distribuídos */
  }
}

.sticky-price-info {
  display: flex;
  flex-direction: column;
}

.sticky-price-old {
  font-size: 0.75rem;
  color: var(--text-dim);
  text-decoration: line-through;
}

.sticky-price-current {
  font-size: 1.35rem;
  font-weight: 900;
  font-family: var(--font-heading);
  color: var(--success-green);
  line-height: 1;
}

.sticky-btn-buy {
  flex: 1;
  max-width: 220px;
  background: linear-gradient(135deg, #00e676, #00b0ff);
  color: #051329;
  font-weight: 800;
  font-size: 1rem;
  padding: 12px 16px;
  border-radius: var(--radius-full);
  border: none;
  cursor: pointer;
  text-align: center;
  box-shadow: 0 4px 18px rgba(0, 230, 118, 0.4);
}

/* ==========================================================================
   CHECKOUT MODAL / BOTTOM SHEET
   ========================================================================== */
.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  z-index: 200;
  display: none;
  opacity: 0;
  transition: opacity 0.3s ease;
  align-items: flex-end;
  justify-content: center;
}

@media (min-width: 768px) {
  .modal-overlay {
    align-items: center;
    padding: 20px;
  }
}

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

.checkout-sheet {
  background: #0d132a;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
  width: 100%;
  max-width: 540px;
  max-height: 90vh;
  overflow-y: auto;
  padding: 24px 20px 30px;
  position: relative;
  transform: translateY(100%);
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: var(--shadow-card);
}

@media (min-width: 768px) {
  .checkout-sheet {
    border-radius: var(--radius-lg);
    transform: translateY(30px);
    max-height: 85vh;
  }
}

.modal-overlay.active .checkout-sheet {
  transform: translateY(0);
}

.sheet-handle {
  width: 44px;
  height: 5px;
  background: rgba(255, 255, 255, 0.25);
  border-radius: var(--radius-full);
  margin: -10px auto 16px;
}

@media (min-width: 768px) {
  .sheet-handle {
    display: none;
  }
}

.modal-close-btn {
  position: absolute;
  top: 16px;
  right: 16px;
  background: rgba(255, 255, 255, 0.1);
  border: none;
  color: #ffffff;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 1.1rem;
}

/* Header de Segurança Criptografada do Modal */
.modal-security-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: rgba(0, 0, 0, 0.45);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-sm);
  padding: 6px 12px;
  margin-bottom: 16px;
  font-size: 0.76rem;
}

.security-status-badge {
  display: flex;
  align-items: center;
  gap: 6px;
  color: var(--success-green);
  font-weight: 600;
}

.partner-auth-badge {
  color: var(--text-muted);
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 5px;
}

.partner-auth-badge::before {
  content: '•';
  color: #38bdf8;
}

.checkout-header {
  text-align: center;
  margin-bottom: 18px;
}

.checkout-brand-title {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 1.25rem;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 2px;
}

/* Resumo Detalhado do Pedido */
.selected-plan-summary {
  background: linear-gradient(135deg, rgba(0, 242, 254, 0.08), rgba(121, 40, 202, 0.08));
  border: 1px solid rgba(0, 242, 254, 0.25);
  padding: 14px 16px;
  border-radius: var(--radius-md);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  margin-bottom: 18px;
}

.summary-left strong {
  font-size: 0.95rem;
  color: #ffffff;
  display: block;
  margin-bottom: 4px;
}

.summary-perks {
  font-size: 0.74rem;
  color: var(--text-muted);
  display: flex;
  flex-wrap: wrap;
  gap: 4px;
}

.summary-perks span {
  color: var(--success-green);
}

.summary-right {
  text-align: right;
  flex-shrink: 0;
}

.summary-old-price {
  font-size: 0.75rem;
  color: var(--text-dim);
  text-decoration: line-through;
}

.summary-right strong {
  font-size: 1.35rem;
  color: var(--success-green);
  font-family: var(--font-heading);
  display: block;
  line-height: 1.1;
}

.summary-badge-single {
  font-size: 0.68rem;
  background: rgba(0, 230, 118, 0.12);
  color: var(--success-green);
  padding: 2px 6px;
  border-radius: var(--radius-full);
  display: inline-block;
  font-weight: 700;
  margin-top: 2px;
}

/* Seletor de Método de Pagamento */
.payment-method-selector {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-bottom: 18px;
}

.payment-method-tab {
  background: rgba(255, 255, 255, 0.04);
  border: 1.5px solid var(--border-color);
  padding: 12px 10px;
  border-radius: var(--radius-md);
  cursor: pointer;
  transition: var(--transition);
  display: flex;
  align-items: center;
  gap: 10px;
}

.payment-method-tab .tab-icon-box {
  width: 32px;
  height: 32px;
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.06);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--text-muted);
}

.payment-method-tab.active .tab-icon-box {
  background: rgba(0, 230, 118, 0.2);
  color: var(--success-green);
}

.payment-method-tab.active.card-tab .tab-icon-box {
  background: rgba(0, 242, 254, 0.2);
  color: var(--primary-cyan);
}

.tab-label-group {
  display: flex;
  flex-direction: column;
  text-align: left;
}

.tab-title {
  font-size: 0.88rem;
  font-weight: 700;
  color: #ffffff;
}

.tab-subtitle {
  font-size: 0.72rem;
  color: var(--text-muted);
}

.payment-method-tab.active {
  background: rgba(0, 230, 118, 0.12);
  border-color: var(--success-green);
  box-shadow: 0 0 15px rgba(0, 230, 118, 0.15);
}

.payment-method-tab.active.card-tab {
  background: rgba(0, 242, 254, 0.12);
  border-color: var(--primary-cyan);
  box-shadow: 0 0 15px rgba(0, 242, 254, 0.15);
}

.field-hint {
  display: block;
  font-size: 0.73rem;
  color: #38bdf8;
  margin-top: 4px;
}

/* Selos Internos de Garantia do Checkout */
.checkout-guarantee-row {
  display: flex;
  justify-content: space-between;
  gap: 8px;
  margin-top: 16px;
  padding-top: 14px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.guarantee-mini-item {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 0.72rem;
  color: var(--text-muted);
}

@media (max-width: 480px) {
  .checkout-guarantee-row {
    flex-direction: column;
    gap: 6px;
    align-items: center;
  }
}

/* Formulário de Checkout */
.form-group {
  margin-bottom: 14px;
}

.form-group label {
  display: block;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text-muted);
  margin-bottom: 6px;
}

.form-control {
  width: 100%;
  background: rgba(5, 8, 20, 0.7);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-sm);
  padding: 12px 14px;
  color: #ffffff;
  font-size: 0.95rem;
  font-family: var(--font-body);
  transition: var(--transition);
}

.form-control:focus {
  outline: none;
  border-color: var(--primary-cyan);
  box-shadow: 0 0 10px rgba(0, 242, 254, 0.25);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.btn-submit-order {
  width: 100%;
  background: linear-gradient(135deg, #00e676, #00b0ff);
  color: #031226;
  font-weight: 900;
  font-size: 1.1rem;
  padding: 16px;
  border-radius: var(--radius-full);
  border: none;
  cursor: pointer;
  margin-top: 10px;
  box-shadow: 0 6px 20px rgba(0, 230, 118, 0.4);
  transition: var(--transition);
}

.btn-submit-order:hover:not(:disabled) {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0, 230, 118, 0.6);
}

.btn-submit-order:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

/* Tela de Pagamento PIX Gerado */
.pix-result-container {
  display: none;
  text-align: center;
  padding: 10px 0;
}

.pix-qr-wrapper {
  background: #ffffff;
  padding: 12px;
  border-radius: var(--radius-md);
  display: inline-block;
  margin-bottom: 14px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
}

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

.pix-copy-box {
  display: flex;
  gap: 8px;
  margin: 12px 0 16px;
}

.pix-code-input {
  flex: 1;
  background: rgba(0, 0, 0, 0.4);
  border: 1px dashed rgba(255, 255, 255, 0.2);
  color: #ffffff;
  padding: 10px;
  font-family: monospace;
  font-size: 0.8rem;
  border-radius: var(--radius-sm);
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.btn-copy-pix {
  background: var(--primary-cyan);
  color: #020b18;
  font-weight: 800;
  padding: 10px 16px;
  border-radius: var(--radius-sm);
  border: none;
  cursor: pointer;
  white-space: nowrap;
}

.pix-status-indicator {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-top: 14px;
  font-size: 0.85rem;
  color: #38bdf8;
}

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

.simulation-alert {
  background: rgba(255, 183, 3, 0.1);
  border: 1px dashed #ffb703;
  color: #ffb703;
  padding: 10px;
  border-radius: var(--radius-sm);
  font-size: 0.8rem;
  margin-top: 14px;
}

.btn-simulate-pay {
  background: #ffb703;
  color: #000;
  font-weight: 800;
  border: none;
  padding: 8px 14px;
  border-radius: var(--radius-sm);
  margin-top: 8px;
  cursor: pointer;
  font-size: 0.8rem;
}

/* ==========================================================================
   POPUP DE COMPRA SOCIAL (NOTIFICAÇÃO EM TEMPO REAL)
   ========================================================================== */
.social-proof-toast {
  position: fixed;
  bottom: 85px;
  left: 16px;
  background: rgba(13, 19, 42, 0.95);
  border: 1px solid rgba(0, 242, 254, 0.3);
  backdrop-filter: blur(12px);
  padding: 10px 14px;
  border-radius: var(--radius-md);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5);
  display: flex;
  align-items: center;
  gap: 10px;
  z-index: 85;
  transform: translateY(120%);
  opacity: 0;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  max-width: 320px;
}

.social-proof-toast.show {
  transform: translateY(0);
  opacity: 1;
}

.social-icon {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(0, 230, 118, 0.15);
  color: var(--success-green);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  flex-shrink: 0;
}

.social-text {
  font-size: 0.78rem;
  line-height: 1.3;
}

.social-text strong {
  color: #ffffff;
}

.social-text span {
  color: var(--text-dim);
}

/* ==========================================================================
   FLOATING WHATSAPP BUTTON
   ========================================================================== */
.floating-whatsapp {
  position: fixed;
  bottom: 85px;
  right: 16px;
  width: 52px;
  height: 52px;
  background: #25d366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  font-size: 1.8rem;
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.45);
  z-index: 80;
  transition: var(--transition);
}

.floating-whatsapp:hover {
  transform: scale(1.08);
}

@media (min-width: 768px) {
  .floating-whatsapp {
    bottom: 24px;
    right: 24px;
    width: 58px;
    height: 58px;
  }
  .social-proof-toast {
    bottom: 24px;
    left: 24px;
  }
}

/* ==========================================================================
   BLINDAGEM DE CONFIANÇA & TRANSPARÊNCIA INSTITUCIONAL
   ========================================================================== */
.trust-section {
  background: linear-gradient(180deg, rgba(16, 24, 52, 0.4) 0%, rgba(10, 16, 38, 0.8) 100%);
  border: 1px solid rgba(0, 242, 254, 0.2);
  border-radius: var(--radius-lg);
  padding: 36px 22px;
  margin-bottom: 50px;
  position: relative;
  overflow: hidden;
}

.trust-section::before {
  content: '';
  position: absolute;
  top: -80px;
  right: -80px;
  width: 250px;
  height: 250px;
  background: radial-gradient(circle, rgba(0, 242, 254, 0.15), transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.trust-pillars-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  margin: 28px 0;
}

@media (min-width: 768px) {
  .trust-pillars-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
}

.trust-pillar-card {
  background: rgba(5, 8, 20, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-md);
  padding: 20px;
  display: flex;
  gap: 16px;
  align-items: flex-start;
  transition: var(--transition);
}

.trust-pillar-card:hover {
  border-color: rgba(0, 242, 254, 0.35);
  transform: translateY(-2px);
}

.pillar-icon-box {
  width: 46px;
  height: 46px;
  border-radius: var(--radius-sm);
  background: rgba(0, 242, 254, 0.1);
  border: 1px solid rgba(0, 242, 254, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  flex-shrink: 0;
}

.pillar-content h4 {
  font-size: 1.05rem;
  margin-bottom: 6px;
  color: #ffffff;
}

.pillar-content p {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.5;
}

.transparency-callout {
  background: rgba(121, 40, 202, 0.1);
  border: 1px dashed rgba(192, 132, 252, 0.3);
  border-radius: var(--radius-md);
  padding: 20px;
  margin-top: 24px;
}

.transparency-callout h4 {
  color: #c084fc;
  font-size: 1rem;
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.transparency-callout p {
  font-size: 0.85rem;
  color: #cbd5e1;
  line-height: 1.6;
}

/* Selo de Garantia e Certificação Oficial */
.official-verification-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(0, 230, 118, 0.08);
  border: 1px solid rgba(0, 230, 118, 0.25);
  padding: 8px 18px;
  border-radius: var(--radius-full);
  color: var(--success-green);
  font-size: 0.85rem;
  font-weight: 700;
  margin-bottom: 16px;
}

/* Rodapé Institucional de Alta Credibilidade */
.site-footer {
  border-top: 1px solid var(--border-color);
  padding: 40px 16px 30px;
  margin-top: 40px;
  background: rgba(4, 7, 18, 0.95);
  font-size: 0.82rem;
  color: var(--text-dim);
  text-align: center;
}

.footer-trust-seals {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px;
  margin-bottom: 24px;
}

.footer-seal {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: 6px 14px;
  border-radius: var(--radius-full);
  font-size: 0.78rem;
  color: var(--text-muted);
}

.footer-text-block {
  max-width: 760px;
  margin: 0 auto 16px;
  line-height: 1.6;
}

.footer-links {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin-bottom: 14px;
  font-size: 0.8rem;
}

.footer-links a {
  color: var(--text-muted);
  transition: var(--transition);
}

.footer-links a:hover {
  color: var(--primary-cyan);
}

/* ==========================================================================
   ANIMATIONS & KEYFRAMES
   ========================================================================== */
@keyframes blink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.3; }
}

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

@keyframes pulse-glow {
  0% { transform: scale(1); filter: drop-shadow(0 0 5px rgba(0, 242, 254, 0.4)); }
  100% { transform: scale(1.08); filter: drop-shadow(0 0 15px rgba(121, 40, 202, 0.8)); }
}

@keyframes pulse-economy {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.06); }
}

/* ==========================================================================
   CARD DE DESTAQUE: SUA PRÓPRIA CONTA GOOGLE (ZERO OBJEÇÃO)
   ========================================================================== */
.own-account-section {
  margin: 35px 0 45px;
}

.own-account-highlight-card {
  background: linear-gradient(135deg, rgba(16, 24, 52, 0.9) 0%, rgba(8, 14, 34, 0.98) 100%);
  border: 1.5px solid rgba(0, 242, 254, 0.4);
  border-radius: var(--radius-lg);
  padding: 32px 24px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.5), 0 0 25px rgba(0, 242, 254, 0.1);
  position: relative;
  overflow: hidden;
}

.own-account-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(0, 230, 118, 0.12);
  border: 1px solid rgba(0, 230, 118, 0.35);
  color: var(--success-green);
  font-size: 0.82rem;
  font-weight: 800;
  padding: 6px 14px;
  border-radius: var(--radius-full);
  margin-bottom: 14px;
  letter-spacing: 0.5px;
}

.own-account-title {
  font-size: 1.6rem;
  font-weight: 900;
  color: #ffffff;
  font-family: var(--font-heading);
  margin-bottom: 10px;
  line-height: 1.3;
}

.own-account-title .highlight-green {
  color: var(--success-green);
}

.own-account-desc {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.6;
  max-width: 820px;
  margin-bottom: 24px;
}

.own-account-compare-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}

@media (min-width: 768px) {
  .own-account-compare-grid {
    grid-template-columns: 1fr 1.2fr;
    gap: 20px;
  }
}

.compare-box {
  border-radius: var(--radius-md);
  padding: 22px;
  border: 1px solid;
}

.compare-box.bad {
  background: rgba(239, 68, 68, 0.05);
  border-color: rgba(239, 68, 68, 0.3);
}

.compare-box.good {
  background: rgba(0, 230, 118, 0.07);
  border-color: rgba(0, 230, 118, 0.4);
  box-shadow: 0 4px 20px rgba(0, 230, 118, 0.1);
}

.compare-box-header {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 14px;
  font-weight: 800;
  font-size: 1rem;
}

.compare-box.bad .compare-box-header {
  color: #f87171;
}

.compare-box.good .compare-box-header {
  color: var(--success-green);
}

.compare-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
  font-size: 0.88rem;
}

.compare-box.bad .compare-list li {
  color: #94a3b8;
  display: flex;
  gap: 10px;
  align-items: flex-start;
  line-height: 1.4;
}

.compare-box.good .compare-list li {
  color: #f1f5f9;
  display: flex;
  gap: 10px;
  align-items: flex-start;
  line-height: 1.4;
}

.compare-list li svg {
  flex-shrink: 0;
  margin-top: 2px;
}
