:root {
  --bg-dark: #090615;
  --bg-card: rgba(23, 15, 48, 0.75);
  --bg-card-hover: rgba(36, 24, 76, 0.85);
  --primary: #9d4edd;
  --primary-glow: #c77dff;
  --accent-gold: #ffd166;
  --accent-gold-glow: rgba(255, 209, 102, 0.4);
  --accent-green: #06d6a0;
  --text-main: #f8f9fa;
  --text-muted: #b8b8d0;
  --border-glass: rgba(255, 255, 255, 0.12);
  --font-serif: 'Cinzel', serif, Georgia;
  --font-sans: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
}

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

body {
  background-color: var(--bg-dark);
  color: var(--text-main);
  font-family: var(--font-sans);
  line-height: 1.6;
  overflow-x: hidden;
  background-image: 
    radial-gradient(circle at 15% 15%, rgba(157, 78, 221, 0.18) 0%, transparent 40%),
    radial-gradient(circle at 85% 30%, rgba(255, 209, 102, 0.1) 0%, transparent 35%),
    radial-gradient(circle at 50% 80%, rgba(114, 9, 183, 0.2) 0%, transparent 50%);
  background-attachment: fixed;
}

/* Nav Header */
.top-nav {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(9, 6, 21, 0.85);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border-glass);
  padding: 12px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.brand-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-serif);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text-main);
  text-decoration: none;
  letter-spacing: 1px;
}

.brand-logo span {
  color: var(--accent-gold);
}

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

.btn-nav-mode {
  padding: 8px 16px;
  border-radius: 999px;
  font-size: 0.85rem;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.btn-nav-mode.active {
  background: linear-gradient(135deg, var(--primary), #5a189a);
  color: #fff;
  box-shadow: 0 0 15px rgba(157, 78, 221, 0.4);
}

.btn-nav-mode.ai-highlight {
  background: linear-gradient(135deg, #ffd166, #e76f51);
  color: #120924;
  font-weight: 700;
  box-shadow: 0 0 15px rgba(255, 209, 102, 0.5);
  animation: pulse-glow 2s infinite alternate;
}

@keyframes pulse-glow {
  0% { transform: scale(1); box-shadow: 0 0 10px rgba(255, 209, 102, 0.3); }
  100% { transform: scale(1.04); box-shadow: 0 0 20px rgba(255, 209, 102, 0.6); }
}

/* Announcement Bar */
.announcement-bar {
  background: linear-gradient(90deg, #3a0ca3, #7209b7, #3a0ca3);
  background-size: 200% auto;
  animation: shimmer 5s linear infinite;
  color: #fff;
  text-align: center;
  padding: 8px 12px;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.5px;
}

@keyframes shimmer {
  0% { background-position: 0% 50%; }
  100% { background-position: 200% 50%; }
}

.container {
  max-width: 980px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Hero Section */
.hero {
  padding: 40px 0 30px;
  text-align: center;
}

.badge-fomo {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(255, 209, 102, 0.15);
  border: 1px solid var(--accent-gold);
  color: var(--accent-gold);
  padding: 6px 14px;
  border-radius: 999px;
  font-size: 0.82rem;
  font-weight: 600;
  margin-bottom: 20px;
  letter-spacing: 0.5px;
}

.hero-title {
  font-family: var(--font-serif);
  font-size: 2.2rem;
  line-height: 1.25;
  margin-bottom: 16px;
  font-weight: 800;
}

.hero-title .highlight-gold {
  color: var(--accent-gold);
  text-shadow: 0 0 25px var(--accent-gold-glow);
}

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

/* Interactive Calculator / Quiz Widget */
.quiz-box {
  background: var(--bg-card);
  border: 1px solid var(--border-glass);
  border-radius: 20px;
  padding: 28px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.45);
  backdrop-filter: blur(12px);
  max-width: 620px;
  margin: 0 auto 40px;
  position: relative;
  overflow: hidden;
}

.quiz-box::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(157, 78, 221, 0.08) 0%, transparent 60%);
  pointer-events: none;
}

.quiz-header {
  margin-bottom: 20px;
  text-align: center;
}

.quiz-header h3 {
  font-family: var(--font-serif);
  font-size: 1.35rem;
  color: var(--accent-gold);
  margin-bottom: 6px;
}

.quiz-header p {
  font-size: 0.9rem;
  color: var(--text-muted);
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-bottom: 18px;
  text-align: left;
}

@media (max-width: 600px) {
  .form-grid {
    grid-template-columns: 1fr;
  }
}

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

.form-group.full-width {
  grid-column: 1 / -1;
}

.form-group label {
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  color: var(--text-muted);
}

.form-control {
  background: rgba(9, 6, 21, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 10px;
  padding: 12px 14px;
  color: #fff;
  font-size: 0.95rem;
  outline: none;
  transition: all 0.2s ease;
}

.form-control:focus {
  border-color: var(--primary-glow);
  box-shadow: 0 0 10px rgba(157, 78, 221, 0.3);
}

.btn-cta {
  background: linear-gradient(135deg, #ffd166 0%, #ff9e00 100%);
  color: #0c081e;
  border: none;
  border-radius: 14px;
  padding: 16px 24px;
  font-size: 1.1rem;
  font-weight: 800;
  cursor: pointer;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  box-shadow: 0 8px 24px rgba(255, 209, 102, 0.35);
  transition: all 0.25s ease;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.btn-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(255, 209, 102, 0.5);
  background: linear-gradient(135deg, #ffe082 0%, #ffaa00 100%);
}

.trust-badges {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 18px;
  font-size: 0.78rem;
  color: var(--text-muted);
  margin-top: 14px;
}

.trust-badges span {
  display: inline-flex;
  align-items: center;
  gap: 5px;
}

/* Simulation Result Box */
.calc-result-box {
  display: none;
  margin-top: 20px;
  padding: 18px;
  background: rgba(157, 78, 221, 0.15);
  border: 1px dashed var(--primary-glow);
  border-radius: 14px;
  animation: fadeIn 0.4s ease;
  text-align: left;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(8px); }
  to { opacity: 1; transform: translateY(0); }
}

.calc-result-box h4 {
  color: var(--accent-gold);
  font-family: var(--font-serif);
  margin-bottom: 8px;
  font-size: 1.1rem;
}

.signs-summary {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin: 12px 0;
  text-align: center;
}

.sign-chip {
  background: rgba(9, 6, 21, 0.7);
  padding: 8px;
  border-radius: 8px;
  border: 1px solid var(--border-glass);
}

.sign-chip .label {
  font-size: 0.7rem;
  color: var(--text-muted);
  display: block;
}

.sign-chip .value {
  font-weight: 700;
  color: #fff;
  font-size: 0.9rem;
}

/* Offer & Pricing Section */
.offer-section {
  padding: 40px 0;
  text-align: center;
}

/* =========================================
   3-TIER PRICING PACKAGES SYSTEM
   ========================================= */
.packages-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  max-width: 1140px;
  margin: 30px auto 40px;
  align-items: stretch;
}

.package-card {
  background: linear-gradient(180deg, rgba(26, 15, 52, 0.95) 0%, rgba(15, 8, 30, 0.98) 100%);
  border: 1px solid var(--border-glass);
  border-radius: 22px;
  padding: 30px 20px;
  display: flex;
  flex-direction: column;
  position: relative;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
}

.package-card:hover {
  transform: translateY(-6px);
  border-color: rgba(255, 209, 102, 0.5);
  box-shadow: 0 16px 40px rgba(255, 209, 102, 0.15);
}

.package-card.popular {
  border: 2px solid var(--accent-gold);
  background: linear-gradient(180deg, rgba(38, 20, 78, 0.98) 0%, rgba(20, 10, 42, 0.98) 100%);
  box-shadow: 0 0 35px rgba(255, 209, 102, 0.3);
  transform: scale(1.03);
  z-index: 2;
}

.package-card.popular:hover {
  transform: scale(1.05) translateY(-6px);
}

.package-badge-popular {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(90deg, #ff0055, #ff5500);
  color: #fff;
  font-weight: 800;
  font-size: 0.74rem;
  padding: 5px 16px;
  border-radius: 999px;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  white-space: nowrap;
  box-shadow: 0 4px 14px rgba(255, 0, 85, 0.45);
}

.package-header {
  text-align: center;
  margin-bottom: 16px;
}

.package-tier-label {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--accent-gold);
  font-weight: 800;
  margin-bottom: 4px;
}

.package-header h3 {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  color: #fff;
  margin-bottom: 6px;
}

.package-subtitle {
  font-size: 0.82rem;
  color: var(--text-muted);
  line-height: 1.45;
  min-height: 38px;
}

.package-delivery-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(255, 209, 102, 0.12);
  border: 1px solid rgba(255, 209, 102, 0.3);
  color: var(--accent-gold);
  font-size: 0.75rem;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 999px;
  margin-top: 8px;
}

.package-pricing {
  text-align: center;
  margin: 16px 0;
  padding: 14px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.pkg-old-price {
  font-size: 0.95rem;
  color: #ff6b6b;
  text-decoration: line-through;
  margin-right: 6px;
}

.pkg-current-price {
  font-family: var(--font-serif);
  font-size: 2.5rem;
  font-weight: 900;
  color: var(--accent-green);
  text-shadow: 0 0 20px rgba(6, 214, 160, 0.35);
}

.pkg-pix-tag {
  display: block;
  font-size: 0.76rem;
  color: var(--accent-green);
  font-weight: 700;
  margin-top: 4px;
}

.pkg-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin: 16px 0 24px;
  text-align: left;
  flex-grow: 1;
}

.pkg-features li {
  font-size: 0.86rem;
  display: flex;
  align-items: flex-start;
  gap: 9px;
  line-height: 1.4;
}

.pkg-features li .f-icon {
  font-size: 0.95rem;
  color: var(--accent-gold);
  flex-shrink: 0;
}

.pkg-features li.disabled {
  opacity: 0.35;
  text-decoration: line-through;
}

.pkg-features li.disabled .f-icon {
  color: #666;
}

.package-cta {
  margin-top: auto;
}

/* =========================================
   3-HOUR GUARANTEE & REFUND POLICY BOX
   ========================================= */
.guarantee-3h-box {
  background: linear-gradient(135deg, rgba(26, 17, 51, 0.95) 0%, rgba(13, 8, 26, 0.98) 100%);
  border: 2px solid var(--accent-gold);
  border-radius: 24px;
  padding: 34px 28px;
  margin: 40px auto;
  max-width: 1040px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.6);
  position: relative;
  text-align: left;
}

.guarantee-header-badge {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-bottom: 20px;
  flex-wrap: wrap;
}

.guarantee-icon-seal {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #ffd166, #ff9e00);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  box-shadow: 0 0 25px rgba(255, 209, 102, 0.5);
  flex-shrink: 0;
}

.guarantee-header-text h3 {
  font-family: var(--font-serif);
  font-size: 1.55rem;
  color: #fff;
  margin-bottom: 4px;
}

.guarantee-header-text p {
  color: var(--accent-gold);
  font-weight: 700;
  font-size: 0.92rem;
}

.guarantee-pillars {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 18px;
  margin-top: 20px;
}

.pillar-item {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 209, 102, 0.2);
  border-radius: 16px;
  padding: 18px;
}

.pillar-item h5 {
  color: var(--accent-gold);
  font-size: 0.98rem;
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  gap: 8px;
}

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

/* =========================================
   PORTAL DE RASTREAMENTO & RESULTADOS
   ========================================= */
.tracker-section {
  padding: 40px 0;
  text-align: center;
}

.tracker-card {
  background: linear-gradient(180deg, rgba(26, 17, 51, 0.95) 0%, rgba(15, 8, 30, 0.98) 100%);
  border: 1px solid var(--border-glass);
  border-radius: 24px;
  padding: 34px 24px;
  max-width: 820px;
  margin: 0 auto;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
}

.tracker-search-form {
  display: flex;
  gap: 10px;
  max-width: 580px;
  margin: 22px auto 10px;
  flex-wrap: wrap;
}

.tracker-input {
  flex: 1;
  min-width: 240px;
  background: rgba(9, 6, 21, 0.8);
  border: 1.5px solid var(--border-glass);
  border-radius: 12px;
  padding: 13px 16px;
  color: #fff;
  font-size: 16px !important;
}

.tracker-input:focus {
  outline: none;
  border-color: var(--accent-gold);
  box-shadow: 0 0 15px rgba(255, 209, 102, 0.3);
}

.tracker-btn {
  background: linear-gradient(135deg, #ffd166 0%, #ff9e00 100%);
  color: #0c081e;
  font-weight: 800;
  border: none;
  border-radius: 12px;
  padding: 13px 22px;
  font-size: 0.92rem;
  cursor: pointer;
  letter-spacing: 0.5px;
  transition: all 0.2s ease;
}

.tracker-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255, 209, 102, 0.5);
}

.demo-code-hint {
  font-size: 0.82rem;
  color: var(--text-muted);
  margin-top: 8px;
}

.demo-code-hint strong {
  color: var(--accent-gold);
  cursor: pointer;
  text-decoration: underline;
}

.tracker-results-container {
  display: none;
  margin-top: 26px;
  padding: 22px;
  background: rgba(9, 6, 21, 0.85);
  border: 1px dashed var(--accent-gold);
  border-radius: 18px;
  text-align: left;
  animation: fadeIn 0.4s ease;
}

.tracker-order-summary {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  padding-bottom: 14px;
  margin-bottom: 18px;
  flex-wrap: wrap;
  gap: 10px;
}

.order-code-badge {
  background: rgba(255, 209, 102, 0.15);
  color: var(--accent-gold);
  border: 1px solid var(--accent-gold);
  padding: 4px 12px;
  border-radius: 8px;
  font-weight: 800;
  font-size: 0.82rem;
}

.countdown-box {
  background: rgba(247, 37, 133, 0.12);
  border: 1px solid #f72585;
  border-radius: 14px;
  padding: 14px 18px;
  text-align: center;
  margin: 18px 0;
}

.countdown-box h5 {
  color: #ff70a6;
  font-size: 0.88rem;
  margin-bottom: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
}

.countdown-digits {
  font-family: var(--font-serif);
  font-size: 1.9rem;
  font-weight: 900;
  color: #fff;
  letter-spacing: 2px;
  text-shadow: 0 0 15px rgba(247, 37, 133, 0.5);
}

.stepper-timeline {
  display: flex;
  justify-content: space-between;
  position: relative;
  margin: 28px 0 18px;
}

.stepper-timeline::before {
  content: '';
  position: absolute;
  top: 18px;
  left: 20px;
  right: 20px;
  height: 3px;
  background: rgba(255, 255, 255, 0.1);
  z-index: 1;
}

.stepper-step {
  position: relative;
  z-index: 2;
  text-align: center;
  flex: 1;
}

.stepper-circle {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: #1a1033;
  border: 2px solid rgba(255, 255, 255, 0.2);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 8px;
  font-size: 0.85rem;
  font-weight: 700;
}

.stepper-step.completed .stepper-circle {
  background: var(--accent-green);
  border-color: var(--accent-green);
  color: #0c081e;
}

.stepper-step.active .stepper-circle {
  background: var(--accent-gold);
  border-color: var(--accent-gold);
  color: #0c081e;
  box-shadow: 0 0 15px rgba(255, 209, 102, 0.6);
  animation: pulse 1.5s infinite;
}

.stepper-label {
  font-size: 0.76rem;
  color: var(--text-muted);
  font-weight: 600;
  line-height: 1.3;
}

.stepper-step.completed .stepper-label,
.stepper-step.active .stepper-label {
  color: #fff;
}

/* Features Grid */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
  margin: 40px 0;
}

.feature-card {
  background: var(--bg-card);
  border: 1px solid var(--border-glass);
  border-radius: 16px;
  padding: 24px;
  text-align: left;
  transition: all 0.3s ease;
}

.feature-card:hover {
  transform: translateY(-4px);
  border-color: var(--primary-glow);
  background: var(--bg-card-hover);
}

.feature-icon {
  font-size: 2rem;
  margin-bottom: 12px;
}

.feature-card h4 {
  font-family: var(--font-serif);
  font-size: 1.15rem;
  margin-bottom: 8px;
  color: var(--accent-gold);
}

.feature-card p {
  font-size: 0.9rem;
  color: var(--text-muted);
}

/* Testimonials / Social Proof */
.testimonials-section {
  padding: 40px 0;
  text-align: center;
}

.review-card {
  background: rgba(18, 12, 38, 0.8);
  border: 1px solid var(--border-glass);
  border-radius: 16px;
  padding: 20px;
  text-align: left;
  margin-bottom: 14px;
}

.review-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 10px;
}

.reviewer-name {
  font-weight: 700;
  color: #fff;
  font-size: 0.95rem;
}

.review-stars {
  color: #ffd166;
}

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

/* FAQ Accordion */
.faq-section {
  padding: 30px 0 50px;
}

.faq-item {
  background: var(--bg-card);
  border: 1px solid var(--border-glass);
  border-radius: 12px;
  margin-bottom: 12px;
  overflow: hidden;
}

.faq-question {
  padding: 16px 20px;
  font-weight: 600;
  font-size: 0.98rem;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.faq-answer {
  padding: 0 20px 16px;
  font-size: 0.9rem;
  color: var(--text-muted);
  display: none;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.faq-item.active .faq-answer {
  display: block;
}

/* Footer */
footer {
  border-top: 1px solid var(--border-glass);
  padding: 30px 20px;
  text-align: center;
  font-size: 0.8rem;
  color: var(--text-muted);
}

/* =========================================
   CHATGPT ASTROLOGY UI (chat.html) STYLES
   ========================================= */
.chat-app {
  display: flex;
  height: calc(100vh - 65px);
  overflow: hidden;
  background: #0d081f;
}

.chat-sidebar {
  width: 280px;
  background: #080514;
  border-right: 1px solid var(--border-glass);
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

@media (max-width: 768px) {
  .chat-sidebar {
    display: none;
  }
}

.btn-new-chat {
  background: rgba(157, 78, 221, 0.15);
  border: 1px solid var(--primary-glow);
  color: #fff;
  border-radius: 10px;
  padding: 10px;
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: all 0.2s ease;
}

.btn-new-chat:hover {
  background: rgba(157, 78, 221, 0.3);
}

.history-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
  flex: 1;
  overflow-y: auto;
}

.history-item {
  padding: 10px 12px;
  border-radius: 8px;
  font-size: 0.85rem;
  color: var(--text-muted);
  cursor: pointer;
  transition: background 0.2s;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.history-item:hover, .history-item.active {
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
}

.chat-main {
  flex: 1;
  display: flex;
  flex-direction: column;
  position: relative;
  background: radial-gradient(circle at 50% 30%, rgba(114, 9, 183, 0.12) 0%, transparent 60%);
}

.chat-messages {
  flex: 1;
  padding: 24px;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.msg-row {
  display: flex;
  gap: 14px;
  max-width: 820px;
  margin: 0 auto;
  width: 100%;
}

.msg-avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}

.msg-avatar.ai {
  background: linear-gradient(135deg, #7209b7, #f72585);
  box-shadow: 0 0 12px rgba(247, 37, 133, 0.4);
}

.msg-avatar.user {
  background: #3a0ca3;
}

.msg-content {
  flex: 1;
  background: rgba(26, 18, 54, 0.8);
  border: 1px solid var(--border-glass);
  border-radius: 16px;
  padding: 16px 20px;
  font-size: 0.95rem;
  line-height: 1.6;
}

.msg-row.user-row .msg-content {
  background: rgba(58, 12, 163, 0.4);
  border-color: rgba(114, 9, 183, 0.3);
}

.paywall-card {
  margin-top: 14px;
  background: linear-gradient(135deg, rgba(46, 21, 84, 0.95), rgba(20, 10, 40, 0.95));
  border: 2px solid var(--accent-gold);
  border-radius: 14px;
  padding: 18px;
  text-align: center;
  box-shadow: 0 8px 25px rgba(255, 209, 102, 0.25);
}

.paywall-card h4 {
  font-family: var(--font-serif);
  color: var(--accent-gold);
  font-size: 1.15rem;
  margin-bottom: 6px;
}

.paywall-card p {
  font-size: 0.88rem;
  color: var(--text-muted);
  margin-bottom: 12px;
}

.chat-input-container {
  padding: 16px 24px;
  border-top: 1px solid var(--border-glass);
  background: rgba(8, 5, 20, 0.9);
  backdrop-filter: blur(10px);
}

.chat-input-box {
  max-width: 820px;
  margin: 0 auto;
  display: flex;
  background: rgba(25, 17, 49, 0.8);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 14px;
  padding: 6px 12px;
  align-items: center;
  gap: 10px;
}

.chat-input-box:focus-within {
  border-color: var(--primary-glow);
  box-shadow: 0 0 15px rgba(157, 78, 221, 0.25);
}

.chat-input {
  flex: 1;
  background: transparent;
  border: none;
  outline: none;
  color: #fff;
  font-size: 0.95rem;
  padding: 8px;
  font-family: inherit;
}

.btn-send {
  background: var(--accent-gold);
  color: #0c081e;
  border: none;
  border-radius: 10px;
  padding: 8px 14px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.2s;
}

.btn-send:hover {
  background: #ffe082;
  transform: scale(1.05);
}

.quick-prompts {
  display: flex;
  gap: 8px;
  overflow-x: auto;
  max-width: 820px;
  margin: 0 auto 10px;
  padding-bottom: 4px;
}

.chip-prompt {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid var(--border-glass);
  color: var(--text-muted);
  padding: 5px 12px;
  border-radius: 999px;
  font-size: 0.78rem;
  cursor: pointer;
  white-space: nowrap;
  transition: all 0.2s;
}

.chip-prompt:hover {
  border-color: var(--accent-gold);
  color: var(--accent-gold);
}

/* =========================================
   STATS COUNTER & SOCIAL PROOF CAROUSEL
   ========================================= */
.stats-counter-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin: 35px auto 40px;
  max-width: 920px;
}

@media (max-width: 768px) {
  .stats-counter-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }
}

.stat-item {
  background: rgba(26, 17, 51, 0.85);
  border: 1px solid var(--border-glass);
  border-radius: 16px;
  padding: 18px 12px;
  text-align: center;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.35);
  transition: transform 0.25s ease;
}

.stat-item:hover {
  transform: translateY(-4px);
  border-color: var(--accent-gold);
}

.stat-number {
  font-family: var(--font-serif);
  font-size: 2.1rem;
  font-weight: 900;
  color: var(--accent-gold);
  text-shadow: 0 0 20px var(--accent-gold-glow);
  line-height: 1.1;
  margin-bottom: 6px;
}

.stat-label {
  font-size: 0.82rem;
  color: var(--text-muted);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* 20-Card Customer Carousel */
.carousel-section {
  padding: 40px 0 20px;
  position: relative;
}

.carousel-controls {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  margin-bottom: 18px;
  gap: 12px;
}

.carousel-controls h3 {
  font-family: var(--font-serif);
  font-size: 1.65rem;
  color: var(--accent-gold);
  margin-bottom: 6px;
}

.carousel-controls p {
  font-size: 0.9rem;
  color: var(--text-muted);
}

.carousel-nav-group {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 16px;
  margin-top: 4px;
}

.carousel-nav-btn {
  background: rgba(255, 209, 102, 0.15);
  border: 2px solid var(--accent-gold);
  color: var(--accent-gold);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  font-size: 1.3rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
  box-shadow: 0 4px 15px rgba(255, 209, 102, 0.25);
}

.carousel-nav-btn:hover {
  background: var(--accent-gold);
  color: #090615;
  border-color: var(--accent-gold);
  transform: scale(1.12);
  box-shadow: 0 6px 20px rgba(255, 209, 102, 0.6);
}

.carousel-wrapper {
  overflow-x: auto;
  scroll-behavior: smooth;
  scrollbar-width: thin;
  scrollbar-color: var(--accent-gold) rgba(255, 255, 255, 0.05);
  display: flex;
  gap: 16px;
  padding: 10px 4px 20px;
}

.carousel-wrapper::-webkit-scrollbar {
  height: 6px;
}

.carousel-wrapper::-webkit-scrollbar-thumb {
  background: var(--accent-gold);
  border-radius: 999px;
}

.carousel-card {
  flex: 0 0 310px;
  background: linear-gradient(180deg, rgba(28, 18, 56, 0.9) 0%, rgba(16, 10, 33, 0.95) 100%);
  border: 1px solid var(--border-glass);
  border-radius: 20px;
  padding: 14px;
  display: flex;
  flex-direction: column;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.45);
  transition: transform 0.25s ease, border-color 0.25s ease;
}

.carousel-card:hover {
  transform: translateY(-5px);
  border-color: var(--accent-gold);
}

.carousel-img-container {
  width: 100%;
  height: 380px;
  border-radius: 14px;
  overflow: hidden;
  position: relative;
  margin-bottom: 12px;
  border: 1px solid rgba(255, 209, 102, 0.25);
  background: #110926;
}

.carousel-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.carousel-card:hover .carousel-img {
  transform: scale(1.04);
}

.carousel-live-tag {
  position: absolute;
  top: 10px;
  left: 10px;
  background: rgba(9, 6, 21, 0.8);
  backdrop-filter: blur(8px);
  border: 1px solid var(--accent-gold);
  color: var(--accent-gold);
  font-size: 0.72rem;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 999px;
  display: flex;
  align-items: center;
  gap: 5px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.4);
}

.carousel-user {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 10px;
}

.carousel-avatar {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  border: 2px solid var(--accent-gold);
  object-fit: cover;
  background: #3a0ca3;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  color: #fff;
  font-size: 1.1rem;
  flex-shrink: 0;
}

.carousel-user-info h5 {
  font-size: 0.92rem;
  color: #fff;
  margin-bottom: 2px;
}

.carousel-user-info span {
  font-size: 0.75rem;
  color: var(--text-muted);
}

.carousel-stars {
  color: #ffd166;
  font-size: 0.85rem;
  margin-bottom: 8px;
}

.carousel-quote {
  font-size: 0.85rem;
  color: #e2e2f0;
  line-height: 1.5;
  font-style: italic;
  flex: 1;
}

.carousel-badge {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 0.72rem;
  color: var(--accent-green);
  margin-top: 10px;
  font-weight: 700;
}

/* 30-Review Verified Wall */
.reviews-filter-bar {
  display: flex;
  gap: 8px;
  justify-content: center;
  flex-wrap: wrap;
  margin: 20px 0 28px;
}

.filter-btn {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid var(--border-glass);
  color: var(--text-muted);
  padding: 7px 16px;
  border-radius: 999px;
  font-size: 0.82rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s ease;
}

.filter-btn:hover, .filter-btn.active {
  background: var(--accent-gold);
  color: #0c081e;
  border-color: var(--accent-gold);
  box-shadow: 0 0 12px var(--accent-gold-glow);
}

.review-wall-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(290px, 1fr));
  gap: 16px;
}

.wall-review-card {
  background: rgba(22, 14, 46, 0.85);
  border: 1px solid var(--border-glass);
  border-radius: 16px;
  padding: 18px;
  text-align: left;
  transition: all 0.2s ease;
}

.wall-review-card:hover {
  border-color: rgba(255, 209, 102, 0.4);
  background: rgba(30, 20, 60, 0.95);
}

.review-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 8px;
}

.reviewer-meta h5 {
  font-size: 0.92rem;
  color: #fff;
}

.reviewer-meta span {
  font-size: 0.75rem;
  color: var(--text-muted);
}

.review-date-badge {
  font-size: 0.72rem;
  color: var(--text-muted);
  background: rgba(255, 255, 255, 0.05);
  padding: 2px 8px;
  border-radius: 6px;
}

.review-tag {
  display: inline-block;
  padding: 2px 8px;
  border-radius: 4px;
  font-size: 0.7rem;
  font-weight: 700;
  margin-top: 10px;
}

.tag-amor { background: rgba(247, 37, 133, 0.2); color: #f72585; }
.tag-dinheiro { background: rgba(6, 214, 160, 0.2); color: #06d6a0; }
.tag-ciclos { background: rgba(255, 209, 102, 0.2); color: #ffd166; }

/* =========================================
   MULTI-TIER PRICING (PLANOS E PREÇOS)
   ========================================= */
.pricing-section-container {
  max-width: 1140px;
  margin: 0 auto;
  padding: 30px 10px;
}

.pricing-tier-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  align-items: stretch;
  margin: 35px 0 25px;
}

.plan-card {
  background: rgba(22, 13, 44, 0.88);
  border: 1px solid var(--border-glass);
  border-radius: 20px;
  padding: 32px 24px 28px;
  display: flex;
  flex-direction: column;
  position: relative;
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.5);
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  backdrop-filter: blur(14px);
}

.plan-card:hover {
  transform: translateY(-6px);
  border-color: rgba(255, 209, 102, 0.5);
  box-shadow: 0 16px 45px rgba(255, 209, 102, 0.15);
}

.plan-card.popular {
  border: 2px solid var(--accent-gold);
  background: linear-gradient(180deg, rgba(38, 22, 74, 0.95) 0%, rgba(20, 11, 40, 0.95) 100%);
  box-shadow: 0 16px 50px rgba(255, 209, 102, 0.25);
  transform: scale(1.03);
  z-index: 2;
}

.plan-card.popular:hover {
  transform: scale(1.05) translateY(-6px);
}

.plan-card.vip {
  border: 1.5px solid #bd93f9;
  background: linear-gradient(180deg, rgba(35, 18, 65, 0.92) 0%, rgba(18, 10, 36, 0.95) 100%);
}

.plan-badge-top {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  padding: 5px 14px;
  border-radius: 20px;
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.8px;
  white-space: nowrap;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
}

.badge-popular-gold {
  background: linear-gradient(135deg, #ffd166 0%, #ff9e00 100%);
  color: #0c081e;
}

.badge-vip-purple {
  background: linear-gradient(135deg, #bd93f9 0%, #ff79c6 100%);
  color: #0c081e;
}

.plan-header {
  text-align: center;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  padding-bottom: 20px;
  margin-bottom: 20px;
}

.plan-title {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  color: #fff;
  margin-bottom: 6px;
}

.plan-desc {
  font-size: 0.85rem;
  color: var(--text-muted);
  min-height: 38px;
}

.plan-pricing {
  margin-top: 14px;
}

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

.plan-current-price {
  font-family: var(--font-serif);
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--accent-gold);
  line-height: 1.1;
  margin: 4px 0 6px;
}

.plan-delivery-pill {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 0.76rem;
  font-weight: 700;
  background: rgba(6, 214, 160, 0.15);
  color: #06d6a0;
  padding: 3px 10px;
  border-radius: 12px;
  border: 1px solid rgba(6, 214, 160, 0.3);
}

.plan-features-list {
  list-style: none;
  padding: 0;
  margin: 0 0 25px 0;
  flex: 1;
}

.plan-features-list li {
  font-size: 0.86rem;
  line-height: 1.45;
  margin-bottom: 11px;
  display: flex;
  align-items: flex-start;
  gap: 9px;
  color: #e2d9f3;
}

.plan-features-list li.highlight-item {
  color: #fff;
  font-weight: 600;
}

.plan-features-list .check {
  color: #06d6a0;
  font-weight: bold;
  flex-shrink: 0;
}

.plan-cta-btn {
  display: block;
  text-align: center;
  text-decoration: none;
  padding: 14px 18px;
  border-radius: 12px;
  font-weight: 800;
  font-size: 0.95rem;
  letter-spacing: 0.5px;
  transition: all 0.25s ease;
  margin-top: auto;
}

.btn-tier-basic {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 209, 102, 0.4);
  color: #ffd166;
}

.btn-tier-basic:hover {
  background: rgba(255, 209, 102, 0.15);
  border-color: #ffd166;
  transform: translateY(-2px);
}

.btn-tier-popular {
  background: linear-gradient(135deg, #ffd166 0%, #ff9e00 100%);
  color: #0c081e;
  border: none;
  box-shadow: 0 6px 20px rgba(255, 209, 102, 0.4);
}

.btn-tier-popular:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(255, 209, 102, 0.6);
}

.btn-tier-vip {
  background: linear-gradient(135deg, #bd93f9 0%, #ff79c6 100%);
  color: #0c081e;
  border: none;
  box-shadow: 0 6px 20px rgba(189, 147, 249, 0.35);
}

.btn-tier-vip:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(255, 121, 198, 0.5);
}

/* =========================================
   3-HOUR GUARANTEE & REFUND ASSURANCE BOX
   ========================================= */
.guarantee-3h-box {
  background: rgba(26, 16, 52, 0.88);
  border: 2px solid rgba(255, 209, 102, 0.45);
  border-radius: 20px;
  padding: 30px;
  margin: 30px auto;
  max-width: 1080px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(12px);
}

.guarantee-header-row {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 20px;
  border-bottom: 1px solid rgba(255, 209, 102, 0.2);
  padding-bottom: 16px;
  flex-wrap: wrap;
}

.guarantee-seal-icon {
  font-size: 2.4rem;
  background: rgba(255, 209, 102, 0.12);
  width: 65px;
  height: 65px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  border: 2px solid var(--accent-gold);
  flex-shrink: 0;
}

.guarantee-title h3 {
  font-family: var(--font-serif);
  font-size: 1.45rem;
  color: var(--accent-gold);
  margin-bottom: 4px;
}

.guarantee-title p {
  font-size: 0.88rem;
  color: var(--text-muted);
}

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

.guarantee-pillar {
  background: rgba(14, 8, 29, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 14px;
  padding: 18px 16px;
}

.guarantee-pillar h4 {
  font-size: 0.95rem;
  color: #fff;
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.guarantee-pillar p {
  font-size: 0.83rem;
  line-height: 1.5;
  color: #c7bfe0;
}

/* =========================================
   PORTAL DE RASTREAMENTO & LEITURA ONLINE
   ========================================= */
.tracking-portal-section {
  background: rgba(18, 11, 38, 0.92);
  border: 2px solid rgba(189, 147, 249, 0.35);
  border-radius: 22px;
  padding: 36px 28px;
  margin: 45px auto;
  max-width: 1080px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.6);
}

.tracker-search-bar {
  display: flex;
  gap: 10px;
  max-width: 640px;
  margin: 20px auto 14px;
}

.tracker-input {
  flex: 1;
  background: rgba(10, 6, 22, 0.8);
  border: 1.5px solid rgba(255, 209, 102, 0.3);
  border-radius: 12px;
  padding: 14px 18px;
  font-size: 1rem;
  color: #fff;
  outline: none;
  transition: border-color 0.2s;
}

.tracker-input:focus {
  border-color: var(--accent-gold);
  box-shadow: 0 0 15px rgba(255, 209, 102, 0.2);
}

.tracker-btn {
  background: linear-gradient(135deg, #ffd166, #ff9e00);
  color: #0c081e;
  border: none;
  font-weight: 800;
  padding: 0 24px;
  border-radius: 12px;
  cursor: pointer;
  font-size: 0.95rem;
  white-space: nowrap;
  transition: transform 0.2s ease;
}

.tracker-btn:hover {
  transform: translateY(-2px);
}

.tracker-demo-pills {
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 25px;
}

.demo-pill {
  background: rgba(255, 255, 255, 0.06);
  border: 1px dashed rgba(255, 209, 102, 0.5);
  color: var(--accent-gold);
  padding: 5px 12px;
  border-radius: 20px;
  font-size: 0.78rem;
  cursor: pointer;
  transition: background 0.2s;
}

.demo-pill:hover {
  background: rgba(255, 209, 102, 0.15);
}

/* Stepper Component */
.tracker-stepper {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
  margin: 25px 0 20px;
  position: relative;
}

.stepper-step {
  background: rgba(25, 15, 48, 0.7);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  padding: 14px 10px;
  text-align: center;
  transition: all 0.3s ease;
}

.stepper-step.completed {
  border-color: #06d6a0;
  background: rgba(6, 214, 160, 0.1);
}

.stepper-step.active {
  border-color: var(--accent-gold);
  background: rgba(255, 209, 102, 0.12);
  box-shadow: 0 0 20px rgba(255, 209, 102, 0.2);
  animation: pulse-step 2s infinite alternate;
}

@keyframes pulse-step {
  0% { transform: scale(1); }
  100% { transform: scale(1.02); }
}

.stepper-icon {
  font-size: 1.4rem;
  margin-bottom: 4px;
}

.stepper-title {
  font-size: 0.8rem;
  font-weight: 700;
  color: #fff;
}

.stepper-status {
  font-size: 0.72rem;
  color: var(--text-muted);
  margin-top: 2px;
}

/* In-progress Box */
.progress-status-box {
  background: rgba(14, 8, 30, 0.8);
  border: 1px solid rgba(255, 209, 102, 0.3);
  border-radius: 16px;
  padding: 24px;
  margin-top: 20px;
}

.countdown-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(255, 209, 102, 0.08);
  border: 1px solid rgba(255, 209, 102, 0.3);
  border-radius: 12px;
  padding: 14px 20px;
  margin: 15px 0;
  flex-wrap: wrap;
  gap: 12px;
}

.countdown-clock {
  font-family: monospace;
  font-size: 1.6rem;
  font-weight: 900;
  color: #ffd166;
  letter-spacing: 2px;
  background: rgba(0, 0, 0, 0.4);
  padding: 6px 14px;
  border-radius: 8px;
}

/* Reader preview tabbed card */
.reader-container {
  background: rgba(15, 9, 32, 0.9);
  border: 1px solid rgba(255, 209, 102, 0.4);
  border-radius: 18px;
  padding: 24px;
  margin-top: 20px;
}

.reader-tabs {
  display: flex;
  gap: 8px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  padding-bottom: 12px;
  margin-bottom: 18px;
  overflow-x: auto;
}

.reader-tab-btn {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: #e2d9f3;
  padding: 8px 14px;
  border-radius: 8px;
  font-size: 0.82rem;
  font-weight: 600;
  cursor: pointer;
  white-space: nowrap;
}

.reader-tab-btn.active {
  background: rgba(255, 209, 102, 0.2);
  border-color: var(--accent-gold);
  color: var(--accent-gold);
}

.reader-content-pane {
  display: none;
  font-size: 0.92rem;
  line-height: 1.65;
  color: #e0d8f0;
}

.reader-content-pane.active {
  display: block;
}

.reader-actions {
  display: flex;
  gap: 14px;
  margin-top: 22px;
  flex-wrap: wrap;
}

/* =========================================
   COMPREHENSIVE MOBILE RESPONSIVE SYSTEM
   ========================================= */

/* Mobile Bottom Sticky Floating CTA */
.mobile-floating-cta {
  display: none;
}

@media (max-width: 768px) {
  body {
    padding-bottom: 74px; /* Space for bottom floating bar */
  }

  .container {
    padding: 0 14px;
  }

  .top-nav {
    padding: 10px 14px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 8px;
  }

  .brand-logo {
    font-size: 0.85rem;
    white-space: nowrap;
    letter-spacing: 0.5px;
    flex-shrink: 0;
  }

  .top-nav .nav-links {
    flex-shrink: 0;
  }

  .top-nav .btn-cta {
    padding: 6px 10px !important;
    font-size: 0.72rem !important;
    white-space: nowrap;
    border-radius: 8px;
  }

  .announcement-bar {
    font-size: 0.78rem;
    padding: 6px 10px;
    line-height: 1.4;
  }

  /* Hero adjustments */
  .hero {
    padding: 24px 0 15px;
  }

  .hero-title {
    font-size: 1.65rem;
    line-height: 1.25;
    margin-bottom: 12px;
  }

  .hero-subtitle {
    font-size: 0.9rem;
    line-height: 1.5;
    margin-bottom: 20px;
    padding: 0 4px;
  }

  /* Stats grid */
  .stats-counter-grid {
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    margin: 20px auto 25px;
  }

  .stat-item {
    padding: 12px 8px;
    border-radius: 12px;
  }

  .stat-number {
    font-size: 1.55rem;
  }

  .stat-label {
    font-size: 0.72rem;
  }

  /* Dona Lúcia Intro Hero Box */
  .dona-lucia-intro-card {
    flex-direction: column !important;
    text-align: center !important;
    padding: 18px 14px !important;
    gap: 14px !important;
    margin-bottom: 24px !important;
  }

  .dona-lucia-intro-card img {
    width: 90px !important;
    height: 90px !important;
  }

  .dona-lucia-intro-card h4 {
    font-size: 1.05rem !important;
  }

  .dona-lucia-intro-card p {
    font-size: 0.84rem !important;
  }

  /* Carousel Touch Optimization */
  .carousel-section {
    padding: 20px 0 15px;
  }

  .carousel-controls {
    flex-direction: column !important;
    text-align: center !important;
    align-items: center !important;
    margin-bottom: 12px;
    gap: 8px;
  }

  .carousel-controls h3 {
    font-size: 1.3rem !important;
    line-height: 1.25;
    text-align: center;
  }

  .carousel-controls p {
    font-size: 0.8rem !important;
    text-align: center;
  }

  .carousel-nav-group {
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
    gap: 14px !important;
    margin-top: 4px;
  }

  .carousel-nav-btn {
    width: 42px;
    height: 42px;
    font-size: 1.2rem;
  }

  .carousel-wrapper {
    gap: 12px;
    padding: 6px 2px 16px;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
  }

  .carousel-card {
    flex: 0 0 270px;
    padding: 12px;
    border-radius: 16px;
    scroll-snap-align: center;
  }

  .carousel-img-container {
    height: 320px;
    border-radius: 12px;
    margin-bottom: 10px;
  }

  .carousel-live-tag {
    font-size: 0.68rem;
    padding: 2px 8px;
    top: 8px;
    left: 8px;
  }

  .carousel-user {
    gap: 10px;
    margin-bottom: 8px;
  }

  .carousel-avatar {
    width: 38px;
    height: 38px;
    font-size: 0.95rem;
  }

  .carousel-user-info h5 {
    font-size: 0.88rem;
  }

  .carousel-user-info span {
    font-size: 0.7rem;
  }

  .carousel-quote {
    font-size: 0.82rem;
    line-height: 1.45;
  }

  /* Form & Quiz Box Mobile */
  .quiz-box {
    padding: 20px 14px;
    border-radius: 16px;
    margin-bottom: 28px;
  }

  .quiz-header h3 {
    font-size: 1.2rem;
  }

  .quiz-header p {
    font-size: 0.82rem;
  }

  .form-control {
    font-size: 16px !important; /* Prevents auto-zoom on iOS */
    padding: 11px 12px;
  }

  .form-group label {
    font-size: 0.75rem;
  }

  .btn-cta {
    font-size: 0.98rem;
    padding: 15px 14px;
    border-radius: 12px;
  }

  .trust-badges {
    flex-direction: column;
    gap: 6px;
    font-size: 0.74rem;
  }

  .signs-summary {
    grid-template-columns: repeat(3, 1fr);
    gap: 6px;
  }

  .sign-chip {
    padding: 6px 2px;
  }

  .sign-chip .label {
    font-size: 0.65rem;
  }

  .sign-chip .value {
    font-size: 0.78rem;
  }

  /* 3-Tier Packages Grid Mobile */
  .packages-grid {
    grid-template-columns: 1fr;
    gap: 20px;
    margin: 20px 0 30px;
  }

  .package-card {
    padding: 24px 16px;
    border-radius: 20px;
  }

  .package-card.popular {
    transform: none !important;
  }

  .package-header h3 {
    font-size: 1.35rem;
  }

  .pkg-current-price {
    font-size: 2.2rem;
  }

  /* 3-Hour Guarantee Mobile */
  .guarantee-3h-box {
    padding: 24px 16px;
    border-radius: 20px;
    margin: 30px 0;
  }

  .guarantee-header-text h3 {
    font-size: 1.3rem;
  }

  .guarantee-pillars {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  /* Tracker Portal Mobile */
  .tracker-card {
    padding: 24px 16px;
    border-radius: 20px;
  }

  .tracker-search-form {
    flex-direction: column;
    gap: 10px;
  }

  .tracker-btn {
    width: 100%;
    padding: 14px;
  }

  .stepper-timeline {
    margin: 20px 0 10px;
  }

  .stepper-label {
    font-size: 0.68rem;
  }

  .countdown-digits {
    font-size: 1.6rem;
  }

  /* Features Grid Mobile */
  .features-grid {
    grid-template-columns: 1fr;
    gap: 14px;
    margin: 25px 0;
  }

  .feature-card {
    padding: 18px 14px;
  }

  /* Meet Dona Lúcia Section Mobile */
  .dona-lucia-full-bio {
    flex-direction: column !important;
    text-align: center !important;
    padding: 22px 14px !important;
    gap: 18px !important;
  }

  .dona-lucia-full-bio img {
    max-width: 200px !important;
    margin: 0 auto;
  }

  .dona-lucia-full-bio h3 {
    font-size: 1.45rem !important;
  }

  /* Reviews Wall Mobile */
  .reviews-filter-bar {
    gap: 6px;
    margin: 15px 0 20px;
  }

  .filter-btn {
    font-size: 0.75rem;
    padding: 6px 12px;
  }

  .review-wall-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .wall-review-card {
    padding: 14px;
  }

  .review-text {
    font-size: 0.84rem;
  }

  /* Mobile Sticky Bottom Floating CTA Bar */
  .mobile-floating-cta {
    display: block;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 9999;
    background: rgba(9, 6, 21, 0.94);
    backdrop-filter: blur(16px);
    border-top: 1px solid rgba(255, 209, 102, 0.3);
    padding: 10px 14px calc(10px + env(safe-area-inset-bottom));
    box-shadow: 0 -8px 25px rgba(0, 0, 0, 0.6);
  }

  .mobile-floating-cta .btn-floating {
    background: linear-gradient(135deg, #ffd166 0%, #ff9e00 100%);
    color: #0c081e;
    text-decoration: none;
    font-weight: 800;
    font-size: 0.95rem;
    padding: 13px 16px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 15px rgba(255, 209, 102, 0.4);
    animation: pulse-mobile 2s infinite alternate;
  }

  @keyframes pulse-mobile {
    0% { transform: scale(1); }
    100% { transform: scale(1.02); box-shadow: 0 6px 20px rgba(255, 209, 102, 0.6); }
  }

  /* Multi-Tier Pricing Mobile */
  .pricing-section-container h2 {
    font-size: 1.5rem !important;
    line-height: 1.25 !important;
  }

  .pricing-tier-grid {
    grid-template-columns: 1fr;
    gap: 24px;
    margin: 25px 0 20px;
  }

  .plan-card.popular {
    transform: none;
  }

  .plan-card.popular:hover {
    transform: translateY(-4px);
  }

  /* 3-Hour Guarantee Mobile */
  .guarantee-pillars {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .guarantee-3h-box {
    padding: 20px 16px;
    margin: 25px 0;
  }

  /* Tracking Portal Mobile */
  .tracking-portal-section {
    padding: 24px 16px;
    margin: 30px 0;
  }

  .tracker-search-bar {
    flex-direction: column;
    gap: 8px;
  }

  .tracker-btn {
    padding: 14px;
    width: 100%;
  }

  .tracker-stepper {
    grid-template-columns: 1fr 1fr;
    gap: 8px;
  }

  .countdown-wrapper {
    flex-direction: column;
    text-align: center;
    gap: 10px;
  }

  .countdown-clock {
    font-size: 1.4rem;
  }

  .reader-actions {
    flex-direction: column;
  }

  .reader-actions .btn-cta {
    width: 100%;
  }
}


