/* ==========================================================================
   DESIGN SYSTEM & CUSTOM VARIABLES
   ========================================================================== */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Outfit:wght@400;500;600;700;800&display=swap');

:root {
  /* Colors */
  --color-primary: #0084C2;
  --color-primary-dark: #006F9E;
  --color-primary-light: #EBF7FC;
  --color-secondary: #FF6B6B;
  --color-secondary-dark: #E05353;
  --color-secondary-light: #FFEAEA;
  --color-accent: #FFAE00;
  --color-accent-light: #FFF8E7;
  --color-background: #FCFBF7;
  --color-card-bg: #FFFFFF;
  
  /* Text Colors */
  --color-text-dark: #2D3748;
  --color-text-muted: #718096;
  --color-text-light: #A0AEC0;
  --color-text-white: #FFFFFF;
  
  /* Statuses */
  --color-whatsapp: #25D366;
  --color-whatsapp-bg: #ECE5DD;
  
  /* Typography */
  --font-title: 'Outfit', sans-serif;
  --font-body: 'Inter', sans-serif;
  
  /* Shadows */
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.04);
  --shadow-md: 0 10px 25px rgba(45, 55, 72, 0.08);
  --shadow-lg: 0 20px 35px rgba(0, 132, 194, 0.15);
  --shadow-inset: inset 0 2px 4px rgba(0, 0, 0, 0.06);
  
  /* Borders */
  --radius-lg: 24px;
  --radius-md: 16px;
  --radius-sm: 10px;
  --radius-full: 9999px;
  
  /* Transitions */
  --transition-fast: all 0.2s ease;
  --transition-normal: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  
  /* Safe area for mobile devices */
  --safe-area-bottom: env(safe-area-inset-bottom, 0px);
}

/* ==========================================================================
   RESET & BASE STYLES
   ========================================================================== */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-body);
  background-color: var(--color-background);
  color: var(--color-text-dark);
  line-height: 1.6;
  overflow-x: hidden;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 {
  font-family: var(--font-title);
  font-weight: 700;
  line-height: 1.2;
}

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

button {
  border: none;
  background: none;
  font-family: inherit;
  cursor: pointer;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* Common Layout Utilities */
.container {
  width: 100%;
  max-width: 600px; /* Centered narrow column for mobile-first experience */
  margin: 0 auto;
  padding: 0 20px;
}

@media (min-width: 1024px) {
  .container {
    max-width: 1100px;
  }
}

section {
  padding: 60px 0;
}

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

/* Badges */
.badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 14px;
  border-radius: var(--radius-full);
  font-weight: 600;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.badge-primary {
  background-color: var(--color-primary-light);
  color: var(--color-primary);
}

.badge-secondary {
  background-color: var(--color-secondary-light);
  color: var(--color-secondary);
}

.badge-accent {
  background-color: var(--color-accent-light);
  color: var(--color-accent);
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  padding: 18px 32px;
  font-family: var(--font-title);
  font-size: 1.15rem;
  font-weight: 700;
  border-radius: var(--radius-md);
  transition: var(--transition-normal);
  text-align: center;
  box-shadow: var(--shadow-sm);
  position: relative;
  overflow: hidden;
}

.btn-primary {
  background: linear-gradient(135deg, var(--color-primary), #29B6F6);
  color: var(--color-text-white);
  box-shadow: var(--shadow-lg);
}

.btn-primary:active {
  transform: scale(0.97);
  box-shadow: 0 8px 20px rgba(0, 132, 194, 0.25);
}

.btn-pulse {
  animation: pulse 2s infinite;
}

.btn-whatsapp {
  background-color: var(--color-whatsapp);
  color: var(--color-text-white);
  font-size: 1rem;
  padding: 12px 20px;
  border-radius: var(--radius-sm);
}

/* Animations */
@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(0, 132, 194, 0.5);
  }
  70% {
    box-shadow: 0 0 0 15px rgba(0, 132, 194, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(0, 132, 194, 0);
  }
}

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

@keyframes wiggle {
  0%, 100% { transform: rotate(0deg); }
  25% { transform: rotate(3deg); }
  75% { transform: rotate(-3deg); }
}

.float-animation {
  animation: float 4s ease-in-out infinite;
}

/* Sticky CTA Button for Mobile */
.floating-cta-container {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 16px 20px calc(16px + var(--safe-area-bottom));
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-top: 1px solid rgba(255, 107, 107, 0.1);
  box-shadow: 0 -8px 30px rgba(0, 0, 0, 0.08);
  z-index: 1000;
  transform: translateY(120%);
  transition: var(--transition-slow);
}

.floating-cta-container.show {
  transform: translateY(0);
}

/* ==========================================================================
   HEADER
   ========================================================================== */
header {
  background-color: rgba(252, 251, 247, 0.9);
  backdrop-filter: blur(10px);
  position: sticky;
  top: 0;
  z-index: 900;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  padding: 12px 0;
}

header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-title);
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--color-primary);
}

.logo-img {
  width: 32px;
  height: 32px;
  object-fit: contain;
}

.logo svg {
  width: 28px;
  height: 28px;
}

.header-cta-btn {
  background-color: var(--color-primary-light);
  color: var(--color-primary);
  font-family: var(--font-title);
  font-size: 0.9rem;
  font-weight: 700;
  padding: 8px 16px;
  border-radius: var(--radius-sm);
  transition: var(--transition-fast);
}

/* ==========================================================================
   HERO SECTION
   ========================================================================== */
.hero {
  padding: 40px 0 60px;
  background: radial-gradient(circle at 80% 20%, #FFF3F3 0%, var(--color-background) 60%);
  position: relative;
}

.hero-content {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.hero-pill-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.hero h1 {
  font-size: 2.2rem;
  color: var(--color-text-dark);
  font-weight: 800;
  line-height: 1.15;
}

.hero h1 span {
  color: var(--color-primary);
  position: relative;
  display: inline-block;
}

.hero h1 span::after {
  content: '';
  position: absolute;
  bottom: 2px;
  left: 0;
  width: 100%;
  height: 6px;
  background-color: var(--color-accent);
  opacity: 0.3;
  z-index: -1;
  border-radius: 4px;
}

.hero-description {
  font-size: 1.1rem;
  color: var(--color-text-dark);
  font-weight: 500;
}

.hero-cta-box {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 8px;
}

.cta-guarantee-note {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  font-size: 0.85rem;
  color: var(--color-text-muted);
}

.cta-guarantee-note svg {
  color: var(--color-secondary);
}

.hero-mockup-wrapper {
  margin-top: 30px;
  position: relative;
  max-width: 400px;
  margin-left: auto;
  margin-right: auto;
  width: 100%;
}

.hero-mockup-wrapper img,
.hero-mockup-wrapper video,
.hero-mockup-wrapper iframe {
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
  width: 100%;
  border: 4px solid var(--color-card-bg);
  display: block;
}

.hero-mockup-wrapper iframe {
  aspect-ratio: 1 / 1;
}

/* Desktop layout adjustment */
@media (min-width: 1024px) {
  .hero .container {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    align-items: center;
    gap: 60px;
  }
  .hero h1 {
    font-size: 3.2rem;
  }
  .hero-mockup-wrapper {
    margin-top: 0;
    max-width: 440px;
    margin-left: auto;
    margin-right: 0;
  }
}

/* ==========================================================================
   PAIN & COMPARISON SECTION
   ========================================================================== */
.pain-section {
  background-color: #FFF9F9;
  border-top: 1px solid rgba(255, 107, 107, 0.05);
  border-bottom: 1px solid rgba(255, 107, 107, 0.05);
}

.section-header {
  margin-bottom: 40px;
}

.section-header h2 {
  font-size: 1.8rem;
  color: var(--color-text-dark);
  margin-top: 8px;
}

.section-header p {
  color: var(--color-text-muted);
  font-size: 1rem;
  margin-top: 10px;
}

@media (min-width: 1024px) {
  .section-header h2 {
    font-size: 2.5rem;
  }
}

.comparison-box {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.comparison-card {
  background: var(--color-card-bg);
  border-radius: var(--radius-md);
  padding: 24px;
  box-shadow: var(--shadow-sm);
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(0, 0, 0, 0.03);
}

.comparison-card.pain {
  border-left: 6px solid var(--color-secondary);
}

.comparison-card.solution {
  border-left: 6px solid var(--color-primary);
  background: linear-gradient(to bottom right, var(--color-card-bg), var(--color-primary-light));
}

.card-title-row {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}

.card-title-row h3 {
  font-size: 1.25rem;
}

.pain h3 { color: var(--color-secondary-dark); }
.solution h3 { color: var(--color-primary-dark); }

.card-icon-circle {
  width: 36px;
  height: 36px;
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
}

.pain .card-icon-circle {
  background-color: var(--color-secondary-light);
  color: var(--color-secondary);
}

.solution .card-icon-circle {
  background-color: var(--color-primary-light);
  color: var(--color-primary);
}

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

.comparison-list li {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  font-size: 0.95rem;
}

.comparison-list li svg {
  flex-shrink: 0;
  width: 18px;
  height: 18px;
  margin-top: 3px;
}

.pain .comparison-list li svg { color: var(--color-secondary); }
.solution .comparison-list li svg { color: var(--color-primary); }

@media (min-width: 1024px) {
  .comparison-box {
    grid-template-columns: 1fr 1fr;
    display: grid;
    gap: 40px;
  }
}

/* ==========================================================================
   WHAT'S INSIDE SECTION
   ========================================================================== */
.inside-section {
  background-color: var(--color-background);
}

.features-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}

@media (min-width: 1024px) {
  .features-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
  }
}

.feature-card {
  background: var(--color-card-bg);
  border-radius: var(--radius-lg);
  padding: 32px 24px;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(0, 0, 0, 0.02);
  transition: var(--transition-normal);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.feature-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
}

.feature-icon-wrapper {
  width: 70px;
  height: 70px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
}

.feature-card:nth-child(1) .feature-icon-wrapper {
  background-color: var(--color-primary-light);
  color: var(--color-primary);
}

.feature-card:nth-child(2) .feature-icon-wrapper {
  background-color: var(--color-secondary-light);
  color: var(--color-secondary);
}

.feature-card:nth-child(3) .feature-icon-wrapper {
  background-color: var(--color-accent-light);
  color: var(--color-accent);
}

.feature-card h3 {
  font-size: 1.35rem;
  margin-bottom: 12px;
  color: var(--color-text-dark);
}

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

/* ==========================================================================
   INTERACTIVE PREVIEW (AMOSTRA DO PRODUTO)
   ========================================================================== */
.preview-section {
  background-color: #F5F7F6;
  border-top: 1px solid rgba(78, 173, 154, 0.05);
  border-bottom: 1px solid rgba(78, 173, 154, 0.05);
}

.preview-tabs {
  display: flex;
  background: rgba(0, 0, 0, 0.04);
  border-radius: var(--radius-md);
  padding: 6px;
  margin-bottom: 30px;
  gap: 4px;
}

.tab-btn {
  flex: 1;
  padding: 12px 6px;
  border-radius: var(--radius-sm);
  font-family: var(--font-title);
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--color-text-muted);
  text-align: center;
  transition: var(--transition-normal);
}

.tab-btn.active {
  background: var(--color-card-bg);
  color: var(--color-primary-dark);
  box-shadow: var(--shadow-sm);
}

.preview-content-box {
  background: var(--color-card-bg);
  border-radius: var(--radius-lg);
  padding: 24px;
  box-shadow: var(--shadow-md);
  min-height: 380px;
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(0, 0, 0, 0.02);
}

.preview-panel {
  display: none;
  animation: fadeInUp 0.4s ease forwards;
}

.preview-panel.active {
  display: block;
}

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

/* Tab 1: Interactive Activity Sheet Game */
.activity-interactive-sheet {
  border: 2px dashed #CBD5E0;
  border-radius: var(--radius-md);
  padding: 20px 15px;
  background: #FCFCFA;
  position: relative;
}

.sheet-header-mock {
  display: flex;
  justify-content: space-between;
  font-size: 0.75rem;
  color: var(--color-text-muted);
  border-bottom: 1.5px solid #E2E8F0;
  padding-bottom: 8px;
  margin-bottom: 16px;
  font-weight: 600;
}

.sheet-title {
  text-align: center;
  font-family: var(--font-title);
  font-size: 1.2rem;
  color: var(--color-primary-dark);
  margin-bottom: 10px;
}

.sheet-instruction {
  text-align: center;
  font-size: 0.85rem;
  color: var(--color-text-dark);
  margin-bottom: 20px;
  background-color: var(--color-accent-light);
  padding: 6px 12px;
  border-radius: var(--radius-full);
  display: inline-block;
  left: 50%;
  transform: translateX(-50%);
  position: relative;
  font-weight: 500;
}

/* Matching Game Styles */
.game-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  position: relative;
  margin: 15px auto;
  max-width: 320px;
}

.game-column {
  display: flex;
  flex-direction: column;
  gap: 20px;
  z-index: 10;
}

.game-item {
  background: var(--color-card-bg);
  border: 2px solid #E2E8F0;
  border-radius: var(--radius-sm);
  padding: 8px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  cursor: pointer;
  user-select: none;
  transition: var(--transition-fast);
  position: relative;
  height: 80px;
}

.game-emoji {
  font-size: 1.6rem;
  line-height: 1;
}

.game-item.selected {
  border-color: var(--color-primary);
  background-color: var(--color-primary-light);
  transform: scale(1.05);
}

.game-item.matched {
  border-color: var(--color-primary);
  background-color: var(--color-primary-light);
  cursor: default;
}

.game-label {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--color-text-dark);
  text-align: center;
}

.canvas-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 5;
}

.game-feedback {
  text-align: center;
  font-weight: 700;
  color: var(--color-secondary);
  font-size: 0.95rem;
  margin-top: 15px;
  height: 24px;
}

/* Tab 2: Lesson Plan Previews */
.lesson-plan-preview {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.bncc-box {
  background-color: var(--color-secondary-light);
  border: 1px solid rgba(78, 173, 154, 0.2);
  border-radius: var(--radius-sm);
  padding: 12px 16px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.bncc-tag {
  align-self: flex-start;
  font-size: 0.75rem;
  font-weight: 700;
  background-color: var(--color-secondary);
  color: var(--color-text-white);
  padding: 2px 8px;
  border-radius: var(--radius-full);
}

.bncc-text {
  font-size: 0.85rem;
  color: var(--color-secondary-dark);
  font-weight: 500;
}

.lesson-section {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.lesson-section h4 {
  font-size: 0.95rem;
  color: var(--color-text-dark);
  font-weight: 700;
  border-bottom: 2px solid #F5F7F6;
  padding-bottom: 4px;
}

.lesson-section p, .lesson-section li {
  font-size: 0.9rem;
  color: var(--color-text-muted);
}

.lesson-section ul {
  padding-left: 20px;
}

/* Tab 3: Thematic Bonus */
.bonus-preview-card {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.bonus-badge-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.bonus-badge {
  background-color: var(--color-accent);
  color: var(--color-text-dark);
  font-family: var(--font-title);
  font-weight: 800;
  font-size: 0.75rem;
  padding: 4px 10px;
  border-radius: var(--radius-sm);
}

.bonus-preview-card h3 {
  font-size: 1.5rem;
  color: var(--color-text-dark);
}

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

.bonus-item {
  background-color: var(--color-background);
  border-radius: var(--radius-sm);
  padding: 12px;
  display: flex;
  align-items: center;
  gap: 8px;
  border: 1px solid rgba(0, 0, 0, 0.03);
}

.bonus-item svg {
  color: var(--color-accent);
  flex-shrink: 0;
}

.bonus-item span {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--color-text-dark);
}

.bonus-cta {
  background-color: var(--color-accent-light);
  padding: 12px;
  border-radius: var(--radius-sm);
  text-align: center;
  font-size: 0.85rem;
  font-weight: 600;
  color: #B27B00;
  border: 1px dashed rgba(255, 174, 0, 0.3);
}

/* ==========================================================================
   SOCIAL PROOF (WHATSAPP CAROUSEL)
   ========================================================================== */
.reviews-section {
  background-color: var(--color-background);
  overflow: hidden;
}

.reviews-carousel-outer {
  position: relative;
  width: 100%;
  margin-top: 15px;
}

.reviews-carousel-track {
  display: flex;
  gap: 20px;
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: grab;
  padding: 10px 0;
}

.reviews-carousel-track:active {
  cursor: grabbing;
}

.whatsapp-mock-phone {
  flex-shrink: 0;
  width: 320px;
  height: 550px;
  background-color: var(--color-whatsapp-bg);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  border: 8px solid #333333;
  overflow: hidden;
  position: relative;
}

.phone-screenshot {
  width: 100%;
  height: 100%;
  object-fit: contain;
  background-color: #0b141a;
  display: block;
}

.phone-header {
  background-color: #075E54;
  color: var(--color-text-white);
  padding: 12px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.phone-avatar {
  width: 36px;
  height: 36px;
  border-radius: var(--radius-full);
  background-color: rgba(255, 255, 255, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-title);
  font-weight: 700;
  font-size: 0.95rem;
}

.phone-contact-info {
  display: flex;
  flex-direction: column;
}

.phone-contact-name {
  font-size: 0.85rem;
  font-weight: 600;
}

.phone-contact-status {
  font-size: 0.65rem;
  opacity: 0.8;
}

.phone-body {
  padding: 12px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  height: 300px;
  overflow-y: auto;
  scrollbar-width: none; /* Hide scrollbar for cleaner look */
}

.phone-body::-webkit-scrollbar {
  display: none;
}

.chat-bubble {
  max-width: 80%;
  padding: 8px 12px;
  border-radius: var(--radius-sm);
  font-size: 0.85rem;
  position: relative;
  box-shadow: 0 1px 1px rgba(0, 0, 0, 0.08);
}

.chat-bubble.incoming {
  background-color: var(--color-card-bg);
  align-self: flex-start;
  border-top-left-radius: 0;
}

.chat-bubble.outgoing {
  background-color: #DCF8C6;
  align-self: flex-end;
  border-top-right-radius: 0;
}

.chat-bubble-time {
  display: block;
  text-align: right;
  font-size: 0.65rem;
  color: var(--color-text-muted);
  margin-top: 4px;
}

.chat-bubble.outgoing .chat-bubble-time {
  color: #588e58;
}

.carousel-indicators {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 24px;
}

.indicator {
  width: 8px;
  height: 8px;
  border-radius: var(--radius-full);
  background-color: #E2E8F0;
  transition: var(--transition-fast);
  cursor: pointer;
}

.indicator.active {
  background-color: var(--color-primary);
  width: 24px;
}

/* ==========================================================================
   PRICING / OFFER SECTION
   ========================================================================== */
.pricing-section {
  background: radial-gradient(circle at 10% 90%, #FFEFEF 0%, var(--color-background) 70%);
}

.pricing-card {
  background: var(--color-card-bg);
  border-radius: var(--radius-lg);
  padding: 40px 24px;
  box-shadow: var(--shadow-lg);
  border: 2px solid var(--color-primary-light);
  position: relative;
  text-align: center;
  overflow: hidden;
}

.pricing-card::before {
  content: 'MAIS VENDIDO';
  position: absolute;
  top: 24px;
  right: -32px;
  background-color: var(--color-accent);
  color: var(--color-text-dark);
  font-size: 0.65rem;
  font-weight: 800;
  padding: 6px 36px;
  transform: rotate(45deg);
  font-family: var(--font-title);
  letter-spacing: 0.5px;
}

.pricing-title {
  font-size: 1.6rem;
  margin-bottom: 8px;
  color: var(--color-text-dark);
}

.pricing-price-row {
  margin: 24px 0;
}

.price-original {
  text-decoration: line-through;
  color: var(--color-text-light);
  font-size: 1.1rem;
}

.price-current {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  color: var(--color-primary);
  font-family: var(--font-title);
  font-weight: 800;
}

.price-symbol {
  font-size: 1.5rem;
  margin-top: 4px;
  margin-right: 2px;
}

.price-val {
  font-size: 3.5rem;
  line-height: 1;
}

.price-period {
  font-size: 1rem;
  align-self: flex-end;
  margin-bottom: 6px;
  color: var(--color-text-muted);
}

.pricing-features-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin: 32px 0;
  text-align: left;
}

.pricing-features-list li {
  display: flex;
  gap: 12px;
  font-weight: 500;
  font-size: 0.95rem;
}

.pricing-features-list li svg {
  color: #16A34A;
  flex-shrink: 0;
  width: 20px;
  height: 20px;
}

.pricing-guarantee {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  margin-top: 24px;
  background-color: var(--color-secondary-light);
  padding: 16px;
  border-radius: var(--radius-md);
}

.pricing-guarantee-title {
  font-family: var(--font-title);
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--color-secondary-dark);
  display: flex;
  align-items: center;
  gap: 6px;
}

.pricing-guarantee-text {
  font-size: 0.8rem;
  color: var(--color-text-muted);
}

/* ==========================================================================
   FAQ SECTION (ACCORDION)
   ========================================================================== */
.faq-section {
  background-color: var(--color-card-bg);
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 30px;
}

.faq-item {
  border: 1px solid #E2E8F0;
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: var(--transition-normal);
}

.faq-item.active {
  border-color: var(--color-primary-light);
  box-shadow: var(--shadow-sm);
}

.faq-question {
  width: 100%;
  padding: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  text-align: left;
  font-family: var(--font-title);
  font-weight: 600;
  font-size: 1rem;
  color: var(--color-text-dark);
  background-color: var(--color-card-bg);
  transition: var(--transition-fast);
}

.faq-question:hover {
  background-color: var(--color-background);
}

.faq-question-icon {
  width: 20px;
  height: 20px;
  color: var(--color-text-muted);
  transition: var(--transition-normal);
  flex-shrink: 0;
}

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

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s cubic-bezier(0, 1, 0, 1);
  background-color: var(--color-background);
}

.faq-item.active .faq-answer {
  max-height: 1000px;
  transition: max-height 0.4s cubic-bezier(1, 0, 1, 0);
}

.faq-answer-inner {
  padding: 0 20px 20px;
  font-size: 0.9rem;
  color: var(--color-text-muted);
}

/* ==========================================================================
   FOOTER
   ========================================================================== */
footer {
  background-color: #2D3748;
  color: #A0AEC0;
  padding: 40px 0 calc(40px + var(--safe-area-bottom));
  font-size: 0.85rem;
}

footer .container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  text-align: center;
}

.footer-logo {
  font-family: var(--font-title);
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--color-primary-light);
}

.footer-links {
  display: flex;
  gap: 20px;
}

.footer-links a:hover {
  color: var(--color-text-white);
}

.footer-copyright {
  border-top: 1px solid #4A5568;
  padding-top: 20px;
  width: 100%;
}
