/* Fontes movidas para o index.html para otimização de performance LCP */

:root {
  --primary: #12122b; /* Deep Indigo */
  --accent: #f9a826;  /* Royal Amber */
  --accent-glow: rgba(249, 168, 38, 0.4);
  --premium-accent: #ffae19;
  --bg-dark: #0a0a1a;
  --glass: rgba(255, 255, 255, 0.05);
  --glass-border: rgba(255, 255, 255, 0.12);
  --text: #e2e8f0;
  --text-dim: #94a3b8;
  --transition: all 0.6s cubic-bezier(0.23, 1, 0.32, 1);
  --transition-fast: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  
  /* Typography System */
  --font-heading: 'Playfair Display', serif;
  --font-body: 'Outfit', sans-serif;
  --fs-h1: clamp(2.5rem, 8vw, 5rem);
  --fs-h2: clamp(1.8rem, 5vw, 3.5rem);
  --fs-h3: clamp(1.4rem, 3vw, 2.5rem);
  --fs-body: clamp(1rem, 1.25vw, 1.15rem); /* Slightly more generous */
  --section-padding: clamp(4rem, 12vw, 8rem);
  --glow-shadow: 0 0 30px var(--accent-glow);
}

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

body {
  font-family: var(--font-body);
  color: var(--text);
  background-color: var(--bg-dark);
  line-height: 1.7; /* Increased for breathing room */
  font-size: var(--fs-body);
  font-weight: 400; /* Unified body weight for better authority and readability */
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, .plan-name, .bonus-card h4 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.01em;
}

h1, h2, h3 {
  margin-bottom: 1.5rem;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

/* Hero Section Overhaul */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: radial-gradient(circle at 20% 30%, rgba(26, 31, 60, 0.5), transparent);
  position: relative;
  padding-top: 120px;
  overflow: hidden;
}

.hero .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 4rem;
  width: 100%;
}

.hero-content {
  flex: 1;
  max-width: 650px;
  z-index: 10;
}

.hero h1 {
  font-size: var(--fs-h1);
  line-height: 1.1;
  margin-bottom: 1.5rem;
}

.hero h2 {
  font-size: clamp(1.4rem, 4vw, 2.2rem);
  color: var(--accent);
  margin-bottom: 1.5rem;
}

.hero p {
  font-size: clamp(1.1rem, 3vw, 1.4rem);
  color: var(--text-dim);
  margin-bottom: 3rem;
  max-width: 550px;
}

/* Glassmorphism Utility */
.glass-card {
  background: var(--glass);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid var(--glass-border);
  border-radius: 24px;
}

/* Gradient Text */
.gradient-text {
  background: linear-gradient(135deg, #fff 0%, var(--accent) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* Hero Section Polish */
.hero::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 200px;
  background: linear-gradient(to top, var(--bg-dark), transparent);
  z-index: 1;
}

.phone-mockup {
  flex-shrink: 0;
  width: 320px;
  height: 600px;
  padding: 12px;
  border-radius: 40px;
  background: #000;
  border: 4px solid #333;
  box-shadow: 0 50px 100px rgba(0,0,0,0.5), 0 0 50px var(--accent-glow);
  transform: rotate(-5deg);
  animation: float 6s ease-in-out infinite;
  z-index: 5;
}

@keyframes float {
  0%, 100% { transform: translateY(0) rotate(-5deg); }
  50% { transform: translateY(-20px) rotate(-3deg); }
}

.phone-screen {
  background: #f0f2f5;
  height: 100%;
  border-radius: 30px;
  overflow: hidden;
  position: relative;
}

.wa-header {
  background: #075e54;
  height: 60px;
  display: flex;
  align-items: center;
  padding: 0 20px;
  color: white;
  font-weight: 600;
}

.wa-body {
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  background: #e5ddd5;
  height: calc(100% - 60px);
}

.wa-msg {
  max-width: 85%;
  padding: 10px 14px;
  border-radius: 12px;
  font-size: 0.85rem;
  box-shadow: 0 1px 2px rgba(0,0,0,0.1);
  line-height: 1.4;
  position: relative;
  font-family: var(--font-body); /* Harmonizing with the site's brand */
}

.wa-received { 
  background: white; 
  align-self: flex-start; 
  color: #333; 
  border-top-left-radius: 2px;
}

.wa-sent { 
  background: #dcf8c6; 
  align-self: flex-end; 
  color: #333; 
  border-top-right-radius: 2px;
}

.wa-actions {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-top: 10px;
}

.wa-btn {
  background: white;
  border: 1px solid rgba(0,0,0,0.1);
  padding: 6px 15px;
  border-radius: 20px;
  font-size: 0.75rem;
  color: #075e54;
  font-weight: 600;
  box-shadow: 0 1px 3px rgba(0,0,0,0.05);
}

/* Icons Overhaul */
.btn {
  display: inline-block;
  padding: 1.2rem 3rem;
  border-radius: 100px;
  text-decoration: none;
  font-weight: 600;
  transition: var(--transition-fast);
  cursor: pointer;
  border: none;
  font-size: 1.1rem;
}

.btn-primary {
  background: linear-gradient(135deg, var(--accent) 0%, #ff8c00 100%);
  color: #000;
  box-shadow: 0 15px 30px var(--accent-glow);
}

.btn-primary:hover {
  transform: scale(1.05) translateY(-5px);
  filter: brightness(1.1);
  box-shadow: 0 20px 40px var(--accent-glow);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.05);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(5px);
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: var(--accent);
  transform: translateY(-3px);
  color: var(--accent);
}

/* Sections Overhaul */
section {
  padding: 5rem 0;
  content-visibility: auto;
  contain-intrinsic-size: 1px 500px;
}

.section-title h2 {
  font-size: 3.5rem;
  margin-bottom: 2rem;
}

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

.feature-card {
  padding: 4rem 3rem;
  text-align: center;
  transition: var(--transition);
}

.feature-card:hover {
  background: rgba(255,255,255,0.05);
  border-color: var(--accent);
  transform: translateY(-15px);
}

.feature-icon {
  font-size: 3.5rem;
  margin-bottom: 2rem;
  display: block;
  filter: drop-shadow(0 0 10px var(--accent-glow));
}

/* Pricing Overhaul */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2rem;
  justify-content: center;
  max-width: 1100px;
  margin: 0 auto;
}

.pricing-card {
  padding: 3rem 2rem;
  text-align: center;
  position: relative;
  overflow: visible;
  display: flex;
  flex-direction: column;
  transition: var(--transition);
  height: 100%;
  min-height: 550px;
}

.pricing-card:hover {
  border-color: rgba(255, 255, 255, 0.3);
  transform: translateY(-5px);
}

/* Featured Plan (Annual) - PC Focus */
.pricing-card.featured-plan {
  border: 2px solid var(--accent);
  transform: scale(1.08); /* Physical prominence */
  z-index: 10;
  background: linear-gradient(135deg, rgba(26, 31, 60, 0.8), rgba(10, 10, 26, 0.9));
  box-shadow: 0 40px 100px rgba(0, 0, 0, 0.6), 0 0 40px rgba(249, 168, 38, 0.15);
}

.pricing-card.featured-plan:hover {
  transform: scale(1.1) translateY(-10px);
  box-shadow: 0 50px 120px rgba(0, 0, 0, 0.8), 0 0 60px rgba(249, 168, 38, 0.25);
}

.plan-tag {
  position: absolute;
  top: -15px;
  left: 50%;
  transform: translateX(-50%);
  background: #4a5568;
  color: #ffffff;
  padding: 6px 18px;
  border-radius: 100px;
  font-weight: 700;
  font-size: 0.85rem;
  white-space: nowrap;
  box-shadow: 0 4px 12px rgba(0,0,0,0.3);
}

.plan-tag.highlight {
  background: var(--premium-accent);
  color: #1a1a1a;
  animation: pulse-glow 2s infinite;
}

@keyframes pulse-glow {
  0%, 100% { box-shadow: 0 0 10px var(--accent-glow); }
  50% { box-shadow: 0 0 25px var(--accent); }
}

.pricing-card .plan-name {
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
  color: var(--text-dim);
}

.pricing-card.featured-plan .plan-name {
  color: var(--accent);
  font-size: 1.8rem;
}

.pricing-card .price {
  font-size: 3rem;
  line-height: 1.1;
  color: white;
  margin: 1.5rem 0 0.5rem 0;
  font-weight: 800;
}

.pricing-card .period {
  font-size: 1rem;
  color: var(--text-dim);
  font-weight: 400;
}

.price-detail {
  font-size: 0.95rem;
  color: var(--text-dim);
  margin-bottom: 2rem;
}

/* Feature List Alignment */
.plan-features {
  list-style: none;
  padding: 0;
  text-align: left;
  margin-bottom: 2.5rem;
  flex-grow: 1;
}

.plan-features li {
  margin-bottom: 1rem;
  font-size: 0.95rem;
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: var(--text);
  border-bottom: 1px solid rgba(255,255,255,0.05);
  padding-bottom: 0.8rem;
}

.featured-plan .plan-features li {
  border-bottom-color: rgba(249, 168, 38, 0.15);
}

/* Acolhimento Section */
.acolhimento-section {
  padding: 6rem 0;
  background: linear-gradient(to bottom, rgba(18, 18, 43, 0.3), rgba(10, 10, 26, 0.5));
  border-bottom: 1px solid var(--glass-border);
}

.acolhimento-content {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.acolhimento-text {
  font-size: 1.4rem;
  line-height: 1.8;
  color: var(--text);
  font-weight: 300;
}

.acolhimento-text p {
  margin-bottom: 2rem;
}

.acolhimento-divider {
  margin: 3rem 0;
  font-size: 1.5rem;
  color: var(--accent);
  opacity: 0.6;
}

.acolhimento-text strong {
  color: #fff;
  font-weight: 600;
}

/* New Guarantee Section Styles */
.large-guarantee {
  margin-top: 5rem;
  padding: 4rem 2rem;
  text-align: center;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
  border-radius: 32px;
  border: 1px solid var(--glass-border);
  background: linear-gradient(135deg, rgba(255,255,255,0.03), rgba(249, 168, 38, 0.05));
  position: relative;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(0,0,0,0.3);
}

.large-guarantee::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, transparent, var(--accent), transparent);
}

.guarantee-badge {
  font-size: 5rem;
  margin-bottom: 2rem;
  display: inline-block;
  filter: drop-shadow(0 0 15px var(--accent-glow));
  animation: float 6s ease-in-out infinite;
}

.guarantee-title {
  font-size: 2.5rem;
  color: var(--accent);
  margin-bottom: 1.5rem;
  font-family: var(--font-heading);
}

.guarantee-desc {
  font-size: 1.4rem;
  color: var(--text);
  line-height: 1.6;
  max-width: 700px;
  margin: 0 auto;
}

/* 
   ==========================================================================
   TYPOGRAPHIC UNIFICATION (ARROCHO)
   ==========================================================================
*/

.pricing-hero {
  max-width: 800px;
  margin: 0 auto 4rem;
  text-align: center;
}

.impact-phrase {
  font-size: 1.4rem;
  margin-bottom: 1rem;
  color: #ff6b6b; /* Emotional contrast for the problem */
  font-weight: 700;
  font-family: var(--font-body);
}

.plan-label {
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  opacity: 0.6;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
}

.plan-intent {
  font-size: 0.9rem;
  margin-bottom: 1.5rem;
  color: var(--text-dim);
}

.featured-plan .plan-intent {
  color: var(--accent);
  font-weight: 600;
}

.featured-features li {
  border-bottom-color: rgba(249, 168, 38, 0.15) !important;
}

.bonus-header {
  margin-top: 1rem;
  font-weight: 700;
  color: var(--accent);
  font-size: 0.9rem;
  border-bottom: none !important;
}

.constancy-trigger {
  color: var(--accent);
  font-weight: 700;
  border-top: 1px solid var(--glass-border);
  padding-top: 1rem !important;
  margin-top: 1rem;
  border-bottom: none !important;
}

.pricing-cta {
  padding: 1.5rem !important;
  font-size: 1.2rem !important;
}

.guarantee-text {
  font-size: 0.75rem;
  opacity: 0.6;
  margin-top: 1rem;
  text-align: center;
}

.pricing-footer {
  margin-top: 6rem;
  text-align: center;
  opacity: 0.8;
}

.pricing-footer p {
  font-size: 1.1rem;
  color: var(--text-dim);
}

/* Animations */
.reveal {
  opacity: 0;
  transform: translateY(40px) scale(0.95);
  transition: var(--transition);
}

.reveal.active {
  opacity: 1;
  transform: translateY(0) scale(1);
}

/* Journey Steps Styling */
.step-number {
  width: 80px;
  height: 80px;
  background: var(--accent);
  color: black;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  font-weight: 700;
  margin: 0 auto 2rem auto;
  box-shadow: 0 0 30px var(--accent-glow);
  position: relative;
}

.step-number::after {
  content: '';
  position: absolute;
  top: -5px;
  left: -5px;
  right: -5px;
  bottom: -5px;
  border-radius: 50%;
  border: 2px solid var(--accent);
  opacity: 0.3;
}

/* Routine Icons */
.routine-bg-icon {
  position: absolute;
  top: 1rem;
  right: 2rem;
  opacity: 0.1;
  font-size: 4rem;
  transition: var(--transition);
}

.glass-card:hover .routine-bg-icon {
  opacity: 0.3;
  transform: scale(1.2) rotate(10deg);
}

/* SVG Icons Styling */
.feature-img-wrapper {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  overflow: hidden;
  margin: 0 auto 1.5rem auto;
  border: 2px solid var(--accent);
  box-shadow: 0 8px 24px rgba(249,168,38,0.2);
}

.feature-img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.feature-card {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 2.5rem 1.5rem;
}

.feature-card:hover .feature-img-wrapper img {
  transform: scale(1.1);
}

.feature-card h3 {
  margin-bottom: 1rem;
}

.premium-icon {
  width: 48px;
  height: 48px;
  stroke: var(--accent);
  stroke-width: 1.5;
  filter: drop-shadow(0 0 12px var(--accent-glow)) drop-shadow(0 0 4px var(--accent));
  transition: var(--transition);
  margin-bottom: 2rem;
  display: block;
}

.bonus-card:hover .premium-icon {
  transform: scale(1.15) rotate(8deg);
  filter: drop-shadow(0 0 20px var(--accent));
}

/* Image Card Styling */
.image-card {
  position: relative;
  height: 400px;
  overflow: hidden;
  border-radius: 24px;
  border: 1px solid var(--glass-border);
}

.image-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition);
}

.image-card:hover img {
  transform: scale(1.1);
}

.image-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, rgba(10,10,26,0.2), rgba(10,10,26,0.9));
  padding: 3rem;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.image-overlay h3 {
  font-size: 2rem;
  margin-bottom: 1rem;
}

/* Routine Image Section */
.routine-img-card {
  position: relative;
  height: 350px;
  border-radius: 24px;
  overflow: hidden;
  margin-bottom: 2rem;
}

.routine-img-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.routine-tag {
  position: absolute;
  top: 1.5rem;
  left: 1.5rem;
  background: var(--accent);
  color: #000;
  padding: 0.5rem 1rem;
  border-radius: 100px;
  font-weight: 700;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

/* Sticky Header removed - unified focal point approach */

/* Hero Section Overhaul */
.hero {
  min-height: 80vh; /* Reduced from 100vh to avoid excessive empty space */
  display: flex;
  align-items: flex-start; /* Changed from center to push content to top */
  background: radial-gradient(circle at 20% 30%, rgba(26, 31, 60, 0.5), transparent);
  position: relative;
  padding: 3rem 0; /* Balanced padding */
  overflow: hidden;
  content-visibility: visible; /* Hero must always be visible */
}

.hero-logo {
  margin-bottom: 1.5rem; /* Further reduced from 2rem */
  text-align: left; /* Keep left alignment to match text flow */
}

.hero-logo img {
  height: clamp(120px, 25vw, 180px); /* Increased from 80px-120px for greater impact */
  width: auto;
  object-fit: contain;
}

.logo {
  display: flex;
  align-items: center;
  text-decoration: none;
}

.logo img {
  display: none; /* Logo now handled by hero-logo */
}

/* Testimonials */
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.testimonial-card {
  padding: 2.5rem;
  border-radius: 24px;
}

.testimonial-card p {
  font-style: italic;
  font-size: 1.1rem;
  margin-bottom: 2rem;
  line-height: 1.6;
}

.user-info {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.user-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  color: #000;
}

/* FAQ Accordion */
.faq-container {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  margin-bottom: 1rem;
  border-bottom: 1px solid var(--glass-border);
}

.faq-question {
  width: 100%;
  padding: 2rem 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: none;
  border: none;
  color: #fff;
  font-size: 1.2rem;
  font-weight: 600;
  cursor: pointer;
  text-align: left;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
  color: var(--text-dim);
  font-size: 1rem;
  line-height: 1.6;
}

.faq-item.active .faq-answer {
  max-height: 200px;
  padding-bottom: 2rem;
}

.faq-icon {
  transition: transform 0.3s ease;
}

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

/* Final CTA Banner */
.final-cta {
  background: linear-gradient(135deg, var(--primary), var(--bg-dark));
  padding: 8rem 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.final-cta::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(249,168,38,0.05) 0%, transparent 70%);
  pointer-events: none;
}

/* Section Utilities */
.section-padding {
  padding: var(--section-padding) 0;
}

.section-header {
  text-align: center;
  margin-bottom: 4rem;
}

.section-subtitle {
  color: var(--text-dim);
  max-width: 700px;
  margin: 0.5rem auto 0;
  font-size: 1.1rem;
}

/* Hero Refinements */
.hero-subtitle {
  font-size: clamp(1.2rem, 4vw, 1.8rem);
  font-weight: 600;
  color: var(--accent);
  margin-top: 1rem;
  margin-bottom: 1rem;
}

.hero-description {
  font-size: clamp(1rem, 3vw, 1.3rem);
  color: var(--text-dim);
  margin-bottom: 2.5rem;
  line-height: 1.4;
}

/* Journey Section */
.journey-grid {
  display: flex;
  justify-content: center;
  gap: clamp(2rem, 5vw, 4rem);
  flex-wrap: wrap;
}

.journey-step {
  text-align: center;
  max-width: 280px;
  flex: 1 1 250px;
}

.journey-step p {
  font-size: 0.95rem;
  color: var(--text-dim);
}

/* Routine Section */
.routine-card {
  padding: 1rem;
  position: relative;
  overflow: hidden;
}

.routine-content {
  padding: 0 1.5rem 2rem 1.5rem;
}

.routine-content p {
  font-size: 0.95rem;
  color: var(--text-dim);
}

/* Resources Section */
.resources-flex {
  display: flex;
  align-items: center;
  gap: 4rem;
  flex-wrap: wrap;
}

.resources-text {
  flex: 1 1 400px;
}

.resource-item {
  margin-bottom: 2.5rem;
}

.resource-title {
  color: var(--accent);
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 0.5rem;
}

.resource-item p {
  color: var(--text-dim);
  font-size: 0.95rem;
}

.resources-image {
  flex: 1 1 350px;
}

/* Pain Points Section */
.pain-points-section {
  background: rgba(26,26,46,0.4);
}

.pain-points-container {
  max-width: 900px;
  text-align: center;
}

.pain-point-title {
  font-size: clamp(1.5rem, 5vw, 2.2rem);
  margin-bottom: 1.5rem;
}

.pain-point-items p {
  color: var(--text-dim);
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
}

.pain-point-quote {
  color: var(--text-dim);
  font-size: 1.2rem;
  margin: 2rem 0 4rem;
  font-style: italic;
}

.section-title-large {
  font-size: clamp(2rem, 7vw, 3.5rem);
  margin-bottom: 1rem;
}

.section-subtitle-large {
  font-size: clamp(1.2rem, 4vw, 1.5rem);
  margin-bottom: 5rem;
}

.vision-section {
  margin: 6rem 0;
}

.accent-title {
  font-size: 1.8rem;
  color: var(--accent);
  margin-bottom: 1rem;
}

.giant-text {
  font-size: clamp(3rem, 15vw, 6rem);
  margin: 2rem 0;
}

/* Core Offer Card */
.core-offer-card {
  padding: clamp(2rem, 5vw, 4rem);
  text-align: left;
  border-color: rgba(234, 179, 8, 0.2);
  margin-top: 4rem;
}

.offer-title {
  font-size: clamp(1.5rem, 4vw, 2.2rem);
  margin-bottom: 1rem;
}

.offer-desc {
  color: var(--text-dim);
  font-size: 1.1rem;
  margin-bottom: 2rem;
}

.offer-list {
  list-style: none;
  padding: 0;
  margin-bottom: 3rem;
}

.offer-list li {
  margin-bottom: 1rem;
  display: flex;
  gap: 15px;
  font-size: 1.1rem;
}

.offer-list .icon {
  color: var(--accent);
  flex-shrink: 0;
}

.offer-footer {
  color: var(--accent);
  margin-bottom: 0.5rem;
  font-size: clamp(1.2rem, 3vw, 1.5rem);
}

.offer-final {
  color: var(--text-dim);
  font-size: 1.1rem;
}

/* Objections */
.objections-grid {
  padding-top: 5rem;
}

/* Mobile Adjustments */
@media (max-width: 992px) {
  .hero {
    flex-direction: column;
    text-align: center;
    align-items: center; /* Center horizontally in mobile */
    justify-content: flex-start; /* Ensure it starts at the top */
    padding-top: 1.5rem; /* Minimal top spacing */
    padding-bottom: 3rem;
    min-height: auto; /* Let content define height on mobile */
  }

  .hero .container {
    flex-direction: column;
    text-align: center;
    gap: 3rem;
  }

  .hero-content {
    max-width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .hero-logo {
    text-align: center;
    margin-bottom: 1rem; /* Minimum possible gap */
  }

  .hero h1 {
    font-size: clamp(2rem, 10vw, 3rem);
    line-height: 1.2;
  }

  .hero p {
    margin: 0 auto 2.5rem auto;
  }

  .phone-mockup {
    position: relative;
    width: 280px;
    height: 520px;
    margin: 2rem auto 0 auto;
    transform: rotate(0deg) !important; /* Straighter on mobile for clarity */
    animation: float-mobile 6s ease-in-out infinite;
    z-index: 5;
  }

  @keyframes float-mobile {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-15px); }
  }
}

@media (max-width: 768px) {
  .container {
    padding: 0 1.5rem;
  }

  .logo img {
    height: 80px;
  }

  .nav-container .btn {
    padding: 0.6rem 1.2rem !important;
    font-size: 0.8rem !important;
  }

  .features-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .pricing-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
    max-width: 450px;
    margin: 0 auto;
  }

  .pricing-card.featured-plan {
    transform: none !important;
    margin: 1.5rem 0;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
  }

  .section-header {
    margin-bottom: 2.5rem;
  }

  .journey-grid {
    gap: 2.5rem;
  }
}

/* Bonus Section */
.bonus-section {
  background: rgba(234, 179, 8, 0.05);
  padding: 5rem 0;
  border-top: 1px solid rgba(234, 179, 8, 0.1);
  border-bottom: 1px solid rgba(234, 179, 8, 0.1);
  position: relative;
  overflow: hidden;
}

.bonus-container {
  display: flex;
  align-items: center;
  gap: 4rem;
  flex-wrap: wrap;
}

.bonus-content {
  flex: 1 1 400px;
}

.bonus-tag {
  background: var(--accent);
  color: #1a1a1a;
  padding: 4px 12px;
  border-radius: 4px;
  font-weight: bold;
  font-size: 0.8rem;
}

.bonus-content h2 {
  font-size: clamp(1.8rem, 5vw, 2.8rem);
  margin-top: 1rem;
}

.bonus-content p {
  color: var(--text-dim);
  margin-top: 1.5rem;
}

.bonus-visual {
  flex: 1 1 300px;
  text-align: center;
}

.book-mockup {
  width: 200px;
  height: 280px;
  background: #ffffff;
  margin: 0 auto;
  border-radius: 24px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  transform: rotate(5deg);
  transition: var(--transition);
}

.book-mockup:hover {
  transform: rotate(0deg) scale(1.05);
}

.book-mockup p {
  color: #1a1a1a;
  font-weight: bold;
  padding: 2rem;
  font-family: 'Playfair Display', serif;
}

/* Trust Cards */
.trust-card {
  padding: 2.5rem;
  text-align: left;
}

.trust-card h4 {
  color: var(--accent);
  margin-bottom: 1rem;
  font-size: 1.2rem;
}

.trust-card p {
  font-size: 0.95rem;
  color: var(--text-dim);
}

/* Footer Section */
.main-footer {
  padding: 5rem 0;
  text-align: center;
  border-top: 1px solid var(--glass-border);
}

.main-footer h3 {
  color: var(--accent);
  margin-bottom: 1rem;
}

.main-footer p {
  opacity: 0.4;
  font-size: 0.85rem;
}

/* 
   ==========================================================================
   FINAL POLISH & REVEAL OVERRIDES
   ==========================================================================
*/

/* Grain Texture Removed per UX feedback */

/* Specific Section Polish */
#para-quem {
  position: relative;
  overflow: hidden;
}

#para-quem::after {
  content: '';
  position: absolute;
  top: -10%;
  right: -10%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, var(--accent-glow) 0%, transparent 70%);
  z-index: -1;
  pointer-events: none;
}

#objecoes h4 {
  font-family: var(--font-heading); /* Ensuring Playfair here too */
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-size: 0.9rem;
  color: var(--accent);
}

/* Sharp Geometry override for trust elements */
#objecoes .glass-card, #para-quem .glass-card {
  border-radius: 4px; /* Sharp for trust/accuracy */
}

#bonus h2 {
    margin-top: 1rem;
}

/* 
   ==========================================================================
   DIRECT RESPONSE (DR) ENHANCEMENTS
   ==========================================================================
*/

/* Urgency & Scarcity Banner */
.urgency-banner {
  background: var(--accent);
  color: #1a1f3c; /* Specific high contrast dark */
  padding: 0.8rem;
  text-align: center;
  font-weight: 800;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 4px 20px rgba(220, 170, 70, 0.4);
}

.urgency-banner .highlight {
  background: #1a1f3c;
  color: var(--accent);
  padding: 2px 8px;
  border-radius: 4px;
  margin: 0 5px;
}

/* Bonus Stack Styles */
.bonus-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
  margin-top: 3rem;
}

.bonus-card {
  padding: 2rem;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--glass-border);
  border-radius: 12px;
  text-align: left;
  transition: var(--transition);
}

.bonus-card:hover {
  border-color: var(--accent);
  background: rgba(255, 255, 255, 0.05);
  transform: translateY(-5px);
}

.bonus-card .bonus-icon {
  margin-bottom: 1.5rem;
  display: block;
  color: var(--accent);
}

.bonus-gift-svg {
  filter: drop-shadow(0 0 8px var(--accent-glow));
  transition: var(--transition);
}

.bonus-card:hover .bonus-gift-svg {
  transform: scale(1.1) rotate(15deg);
  filter: drop-shadow(0 0 15px var(--accent));
}

.premium-sparkle {
  filter: drop-shadow(0 0 8px var(--accent-glow));
  transition: var(--transition);
}

.bonus-card:hover .premium-sparkle {
  transform: scale(1.1) rotate(15deg);
  filter: drop-shadow(0 0 15px var(--accent));
}

.bonus-card h4 {
  color: var(--accent);
  margin-bottom: 0.5rem;
  font-size: 1.1rem;
}

.bonus-card p {
  font-size: 0.9rem;
  color: var(--text-dim);
  line-height: 1.5;
}

.bonus-value {
  display: block;
  font-size: 0.75rem;
  margin-top: 1rem;
  color: var(--accent);
  opacity: 0.7;
  font-weight: 600;
}

/* Recursos Extras Layout */
.recursos-extras {
  background: linear-gradient(var(--bg-dark), var(--primary));
  position: relative;
}

.recursos-wrapper {
  display: flex;
  align-items: center;
  gap: 4rem;
  flex-wrap: wrap;
}

.recursos-text {
  flex: 1;
  min-width: 300px;
}

.recursos-text h2 {
  font-size: 3rem;
  margin-bottom: 2rem;
}

.recurso-item {
  margin-bottom: 2.5rem;
}

.recurso-item h4 {
  color: var(--accent);
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 0.5rem;
}

.recurso-item p {
  color: var(--text-dim);
  font-size: 0.95rem;
  line-height: 1.5;
}

/* User Testimonial Tags */
.user-tag {
  font-size: 0.75rem;
  opacity: 0.6;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

@media (max-width: 768px) {
  .recursos-text h2 {
    font-size: 2.2rem;
  }
}
#objecoes {
  background: rgba(255, 255, 255, 0.02);
  padding: 3rem;
  border-radius: 20px;
  margin: 4rem 0;
}

@media (max-width: 768px) {
  .urgency-banner {
    font-size: 0.75rem;
    padding: 10px;
  }
}

/* Fé na Palma da Mão - Visual Showcase */
.showcase-container {
  display: flex;
  flex-direction: column;
  gap: 6rem;
  margin-top: 4rem;
}

.showcase-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 4rem;
}

.showcase-item:nth-child(even) {
  flex-direction: row-reverse;
}

.showcase-content {
  flex: 1;
  max-width: 500px;
}

.showcase-content h3 {
  font-size: 2.2rem;
  margin-bottom: 1.5rem;
  color: #fff;
  font-family: var(--font-heading);
}

.showcase-content p {
  font-size: 1.15rem;
  color: var(--text-dim);
  line-height: 1.6;
}

.showcase-image {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

.mockup-wrapper {
  position: relative;
  width: 100%;
  max-width: 380px;
  filter: drop-shadow(0 30px 60px rgba(0,0,0,0.6));
  border-radius: 40px;
  overflow: hidden;
  background: transparent;
}

.mockup-base {
  width: 100%;
  height: auto;
  display: block;
  border-radius: inherit;
}

/* The Magic: Logo Overlay */
.logo-overlay {
  position: absolute;
  top: 12.8%;
  left: 20.8%;
  width: 10.5%;
  aspect-ratio: 1;
  border-radius: 50%;
  background: white;
  z-index: 5;
  overflow: hidden;
  box-shadow: 0 1px 3px rgba(0,0,0,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
}

.logo-overlay img {
  width: 85%; /* Inner margin for the logo */
  height: 85%;
  object-fit: contain;
}

@media (max-width: 991px) {
  .showcase-item, .showcase-item:nth-child(even) {
    flex-direction: column;
    text-align: center;
    gap: 3rem;
  }
  
  .showcase-content {
    max-width: 100%;
  }

  .showcase-container {
    gap: 8rem;
  }
  
  .mockup-wrapper {
    max-width: 320px;
  }
}

.bonus-list-item {
  margin-left: 1.2rem;
  font-size: 0.82rem;
  opacity: 0.9;
  list-style: none;
  margin-top: 0.35rem;
  color: var(--text-dim) !important;
}

/* Bonus Summary Highlight */
.bonus-summary {
  text-align: center;
  margin-top: 4rem;
  padding: 3rem 2rem;
  background: rgba(255, 255, 255, 0.03);
  border-radius: 24px;
  border: 1px dashed var(--glass-border);
  box-shadow: 0 0 40px rgba(0, 0, 0, 0.2);
}

.bonus-summary p {
  font-size: 1.5rem;
  font-family: var(--font-heading);
  font-weight: 600;
  color: var(--text);
  margin: 0;
}

.bonus-summary .old-price {
  text-decoration: line-through;
  color: var(--text-dim);
  margin: 0 10px;
  font-size: 1.2rem;
}

.bonus-summary .new-price {
  font-size: 2.5rem;
  font-weight: 800;
  margin-left: 10px;
}

/* Visibility Utilities */
.mobile-only { display: none; }
.desktop-only { display: block; }

@media (max-width: 768px) {
  .mobile-only { display: block; }
  .desktop-only { display: none; }
}

/* ==========================================================================
   WHATSAPP TESTIMONIALS STYLE
   ========================================================================== */
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 3rem;
  margin-top: 4rem;
}

.wa-testimonial-card {
  background: #e5ddd5 url('/wa-bg.webp') repeat !important;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0,0,0,0.4);
  border: 1px solid var(--glass-border);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}

.wa-testimonial-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 30px 60px rgba(0,0,0,0.6);
}

.wa-testimonial-header {
  background: #075e54;
  padding: 12px 20px;
  display: flex;
  align-items: center;
  gap: 15px;
  color: white;
}

.wa-testimonial-header img {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid rgba(255,255,255,0.2);
}

.wa-header-info h4 {
  font-family: var(--font-body) !important;
  font-size: 1rem;
  margin: 0;
  color: white;
}

.wa-header-info p {
  font-size: 0.75rem;
  margin: 0;
  opacity: 0.8;
  color: white;
}

.wa-testimonial-body {
  padding: 25px 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  flex-grow: 1;
}

.wa-bubble {
  max-width: 85%;
  padding: 12px 16px;
  border-radius: 15px;
  font-size: 1rem;
  line-height: 1.5;
  position: relative;
  color: #111;
  box-shadow: 0 1px 2px rgba(0,0,0,0.1);
  font-family: var(--font-body);
}

.wa-bubble.received {
  background: white;
  align-self: flex-start;
  border-top-left-radius: 2px;
}

.wa-bubble.sent {
  background: #dcf8c6;
  align-self: flex-end;
  border-top-right-radius: 2px;
}

.wa-bubble p {
  margin: 0;
  font-style: normal !important;
  color: #333 !important;
}

.wa-time {
  display: block;
  font-size: 0.65rem;
  color: #888;
  text-align: right;
  margin-top: 4px;
}

@media (max-width: 768px) {
  .testimonial-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}

/* ==========================================================================
   SWIPER CAROUSEL CUSTOMIZATION
   ========================================================================== */
.testimonial-carousel {
  padding: 2rem 1rem 5rem 1rem !important;
  margin: 0 -1rem;
  min-height: 400px;
}

.swiper-pagination-bullet {
  background: var(--accent) !important;
  opacity: 0.3;
}

.swiper-pagination-bullet-active {
  opacity: 1;
  transform: scale(1.2);
}

.swiper-button-next,
.swiper-button-prev {
  color: var(--accent) !important;
  transform: scale(0.6);
  background: rgba(255,255,255,0.05);
  width: 50px !important;
  height: 50px !important;
  border-radius: 50%;
  border: 1px solid var(--glass-border);
  backdrop-filter: blur(5px);
  transition: var(--transition);
}

.swiper-button-next:after,
.swiper-button-prev:after {
  font-size: 20px !important;
  font-weight: bold;
}

.swiper-button-next:hover,
.swiper-button-prev:hover {
  background: var(--accent);
  color: #000 !important;
  transform: scale(0.7);
}

@media (max-width: 768px) {
  .swiper-button-next,
  .swiper-button-prev {
    display: none !important;
  }
}
