/* CSS Variables */
:root {
  --bg: #FFF8F0;        /* fundo geral */
  --surface: #FFFFFF;   /* cards/superfícies */
  --text: #1F2937;      /* títulos/forte */
  --muted: #555555;     /* corpo de texto */
  --border: #E5E7EB;    /* bordas/linhas */
  --cta: #E37222;       /* botões principais */
  --cta-600: #CF631D;   /* hover CTA */
  --brand: #0ABB98;     /* teal marca (títulos/destaques) */
  --brand-deep: #007E7A;/* teal profundo (preço/quantidades) */
  --urgent: #C0305E;    /* cereja urgência (faixas) */
  --accent-yellow: #EDB111; /* HOJE/23:59/estrelas */
  --shadow: 0 8px 24px rgba(16,24,40,.08);
}

/* === SALES NOTIFICATIONS === */
.sales-notifications {
    position: fixed;
    top: 80px;
    right: 20px;
    width: 320px;
    z-index: 9999;
    pointer-events: none;
}

.sales-notification {
    background: #ffffff;
    border: 2px solid #e8e8e8;
    border-left: 5px solid #ff6b35;
    border-radius: 10px;
    padding: 14px 18px;
    margin-bottom: 12px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
    animation: slideInOut 8s ease-in-out forwards;
    font-family: 'Work Sans', sans-serif;
    font-size: 14px;
    line-height: 1.4;
    max-width: 300px;
}

.sales-notification .customer-name {
    font-weight: 600;
    color: #2c3e50;
    font-size: 15px;
}

.sales-notification .purchase-info {
    color: #5a6c7d;
    margin: 4px 0;
}

.sales-notification .package-name {
    color: #ff6b35;
    font-weight: 500;
}

.sales-notification .location-time {
    color: #7f8c8d;
    font-size: 12px;
    margin-top: 6px;
}

@keyframes slideInOut {
    0% {
        transform: translateX(400px);
        opacity: 0;
    }
    15% {
        transform: translateX(-20px);
        opacity: 1;
    }
    85% {
        transform: translateX(-20px);
        opacity: 1;
    }
    100% {
        transform: translateX(-400px);
        opacity: 0;
    }
}

/* Reset e base */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Work Sans', sans-serif;
  background-color: var(--bg);
  color: var(--text);
  line-height: 1.65;
  font-size: 16px;
}

/* Container */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Rubik', sans-serif;
  line-height: 1.25;
  margin-bottom: 1rem;
}

h1 {
  font-weight: 800;
  line-height: 1.2;
}

h2, h3 {
  font-weight: 700;
}

p {
  margin-bottom: 1rem;
}

/* A) Faixa topo "urgência" */
.urgency-banner {
  background: var(--urgent);
  color: white;
  text-align: center;
  padding: 12px 0;
  font-weight: 500;
  position: sticky;
  top: 0;
  z-index: 100;
}

.urgency-text .highlight {
  color: var(--accent-yellow);
  font-weight: 700;
}

.countdown-timer {
  color: var(--accent-yellow);
  font-weight: 700;
}

/* B) Header enxuto */
.header {
  background: var(--bg);
  padding: 20px 0;
  border-bottom: 1px solid var(--border);
}

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

.logo {
  font-family: 'Rubik', sans-serif;
  font-weight: 800;
  font-size: 28px;
  color: var(--brand);
  margin: 0;
}

/* Buttons */
.btn-primary, .btn-secondary {
  display: inline-block;
  text-decoration: none;
  border-radius: 12px;
  font-family: 'Rubik', sans-serif;
  font-weight: 700;
  transition: all 0.3s ease;
  cursor: pointer;
  border: none;
  font-size: 16px;
  text-align: center;
}

.btn-primary {
  background: var(--cta);
  color: white;
  padding: 16px 32px;
  box-shadow: var(--shadow);
  animation: pulse 2s ease-in-out infinite;
}

.btn-primary:hover {
  background: var(--cta-600);
  transform: translateY(-2px);
  animation: none;
}

.btn-secondary {
  background: var(--surface);
  color: var(--cta);
  padding: 12px 24px;
  border: 2px solid var(--cta);
}

.btn-secondary:hover {
  background: var(--cta);
  color: white;
}

.btn-large {
  padding: 20px 40px;
  font-size: 18px;
}

.btn-sticky {
  width: 100%;
  padding: 16px;
  font-size: 16px;
}

/* C) HERO (card claro) */
.hero {
  padding: 40px 0 30px;
}

.hero-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 48px;
  text-align: center;
  box-shadow: var(--shadow);
  max-width: 800px;
  margin: 0 auto;
}

.hero-title {
  font-size: 42px;
  margin-bottom: 24px;
  color: var(--text);
}

.hero-subtitle {
  font-size: 20px;
  color: var(--muted);
  margin-bottom: 32px;
  font-weight: 500;
}

/* Hero Image */
.hero-image {
  margin: 32px 0;
}

.hero-img {
  width: 100%;
  max-width: 400px;
  height: auto;
  border-radius: 16px;
  box-shadow: var(--shadow);
}

/* Audio Player */
.audio-sample {
  margin: 32px 0;
}

.audio-player {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: var(--surface);
  border: 2px solid var(--brand);
  border-radius: 12px;
  padding: 12px 20px;
  color: var(--brand);
  transition: all 0.3s ease;
}

.audio-player:hover {
  background: var(--brand);
  color: white;
}

.play-btn {
  background: none;
  border: none;
  color: inherit;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
}

.audio-label {
  font-weight: 500;
}

/* Counter */
.hero-stats {
  margin: 32px 0;
}

.families-counter {
  font-size: 18px;
  color: var(--muted);
  font-weight: 500;
}

#familiesCount {
  color: var(--brand-deep);
  font-weight: 700;
  font-size: 24px;
}

/* Chips */
.hero-chips {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: 32px;
  flex-wrap: wrap;
}

.chip {
  background: #F3FBF9;
  color: var(--brand);
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 14px;
  font-weight: 500;
}

/* D) Para pais que... */
.pain-points {
  padding: 40px 0 80px;
}

.section-title {
  text-align: center;
  font-size: 36px;
  margin-bottom: 16px;
  color: var(--text);
}

.section-subtitle {
  font-size: 18px;
  color: var(--muted);
  text-align: center;
  margin-bottom: 48px;
  font-weight: 500;
}

.pain-points-grid {
  display: grid;
  gap: 32px;
  max-width: 800px;
  margin: 0 auto;
}

.pain-point {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.check-icon {
  background: var(--brand);
  color: white;
  border-radius: 50%;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 4px;
}

.pain-content h3 {
  font-size: 18px;
  margin-bottom: 8px;
  color: var(--text);
}

.pain-content p {
  color: var(--muted);
  margin: 0;
}

/* Problem Image Inline */
.problem-image-inline {
  text-align: center;
  margin: 32px 0 48px;
}

.problem-img {
  width: 100%;
  max-width: 600px;
  height: auto;
  border-radius: 16px;
  box-shadow: var(--shadow);
}

/* E) Product Showcase */
.product-showcase {
  padding: 80px 0;
  background: var(--surface);
}

.showcase-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
  max-width: 1000px;
  margin: 0 auto;
}

.mockup-image {
  width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: var(--shadow);
}

.product-checklist h3 {
  font-size: 24px;
  margin-bottom: 24px;
  color: var(--text);
}

.checklist {
  list-style: none;
  margin-bottom: 24px;
}

.checklist li {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
  font-weight: 500;
}

.checklist .check-icon {
  width: 24px;
  height: 24px;
  font-size: 14px;
}

.access-info {
  color: var(--muted);
  font-style: italic;
  margin: 0;
}

/* F) Testimonials */
.testimonials {
  padding: 80px 0;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 32px;
  max-width: 1000px;
  margin: 0 auto;
}

.testimonial {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 32px;
  text-align: left;
  box-shadow: var(--shadow);
}

.testimonial-header {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 20px;
}

.avatar-photo {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
  border: 2px solid var(--border);
}

.testimonial-info {
  flex: 1;
}

.testimonial-info cite {
  color: var(--text);
  font-weight: 700;
  font-style: normal;
  display: block;
  margin-bottom: 4px;
}

.stars {
  display: flex;
  gap: 2px;
}

.star {
  color: var(--accent-yellow);
  font-size: 16px;
}

.testimonial p {
  color: var(--muted);
  font-style: italic;
  margin: 0;
  line-height: 1.6;
}

/* G) How it works */
.how-it-works {
  padding: 80px 0;
  background: var(--surface);
}

.steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 32px;
  max-width: 800px;
  margin: 0 auto 48px;
}

.step {
  text-align: center;
}

.step-number {
  background: var(--brand);
  color: white;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  font-weight: 700;
  margin: 0 auto 16px;
}

.step h3 {
  font-size: 20px;
  margin-bottom: 8px;
}

.step p {
  color: var(--muted);
  margin: 0;
}

.result {
  text-align: center;
  max-width: 600px;
  margin: 0 auto;
}

.result p {
  font-size: 20px;
  color: var(--brand-deep);
  font-weight: 700;
  margin: 0;
}

/* H) Pricing */
.pricing {
  padding: 80px 0;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 32px;
  max-width: 800px;
  margin: 0 auto;
}

.pricing-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 40px;
  box-shadow: var(--shadow);
  position: relative;
  text-align: center;
}

.pricing-card.featured {
  border-color: var(--brand);
  transform: scale(1.05);
}

.popular-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--brand);
  color: white;
  padding: 8px 20px;
  border-radius: 20px;
  font-size: 14px;
  font-weight: 700;
}

.plan-image {
  margin-bottom: 24px;
  text-align: center;
}

.plan-img {
  width: 100%;
  max-width: 250px;
  height: auto;
  border-radius: 12px;
  box-shadow: var(--shadow);
}

.plan-name {
  font-size: 24px;
  margin-bottom: 8px;
}

.plan-subtitle {
  color: var(--muted);
  font-size: 18px;
  margin-bottom: 32px;
}

.plan-includes h5 {
  font-size: 16px;
  margin-bottom: 16px;
  text-align: left;
}

.plan-features {
  list-style: none;
  text-align: left;
  margin-bottom: 32px;
}

.plan-features li {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
  font-weight: 500;
}

.plan-features .check-icon {
  width: 20px;
  height: 20px;
  font-size: 12px;
}

.plan-pricing {
  margin: 32px 0;
}

.price-current {
  font-size: 36px;
  font-weight: 800;
  color: var(--brand-deep);
  display: block;
}

.price-original {
  font-size: 18px;
  color: #9CA3AF;
  text-decoration: line-through;
  margin-top: 8px;
  display: block;
}

.plan-microcopy {
  color: var(--muted);
  font-size: 14px;
  margin-top: 16px;
  margin-bottom: 0;
}

/* I) Decision paths */
.decision-paths {
  padding: 80px 0;
  background: var(--surface);
}

.paths-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 32px;
  max-width: 800px;
  margin: 0 auto 48px;
}

.decision-paths .btn-primary {
  display: block;
  margin: 0 auto;
  max-width: 300px;
}

.path-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 32px;
  text-align: center;
  box-shadow: var(--shadow);
}

.path-card.highlighted {
  border-color: var(--brand);
  background: #F3FBF9;
}

.path-card h3 {
  font-size: 18px;
  margin: 0;
}

/* J) FAQ */
.faq {
  padding: 80px 0;
}

.faq-list {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 12px;
  margin-bottom: 16px;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.faq-question {
  width: 100%;
  background: none;
  border: none;
  padding: 24px;
  text-align: left;
  font-size: 18px;
  font-weight: 700;
  color: var(--text);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: background-color 0.3s ease;
}

.faq-question:hover {
  background: #F9F9F9;
}

.faq-question:focus {
  outline: 2px solid var(--brand);
  outline-offset: -2px;
}

.faq-arrow {
  transition: transform 0.3s ease;
  color: var(--brand);
}

.faq-question[aria-expanded="true"] .faq-arrow {
  transform: rotate(180deg);
}

.faq-answer {
  padding: 0 24px;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq-answer.active {
  padding: 0 24px 24px;
  max-height: 200px;
}

.faq-answer p {
  color: var(--muted);
  margin: 0;
}

/* K) Footer */
.footer {
  padding: 60px 0 40px;
  background: var(--surface);
  border-top: 1px solid var(--border);
  text-align: center;
}

.trust-seals {
  display: flex;
  justify-content: center;
  gap: 48px;
  margin-bottom: 32px;
  flex-wrap: wrap;
}

.seal {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: var(--brand);
}

.seal span {
  font-size: 14px;
  font-weight: 500;
}

.footer-microcopy {
  color: var(--muted);
  margin-bottom: 24px;
}

.footer-links {
  display: flex;
  justify-content: center;
  gap: 32px;
  flex-wrap: wrap;
}

.footer-link {
  color: var(--muted);
  text-decoration: none;
  font-size: 14px;
  transition: color 0.3s ease;
}

.footer-link:hover {
  color: var(--brand);
}

/* Sticky CTA */
.sticky-cta {
  position: fixed;
  bottom: 20px;
  left: 20px;
  right: 20px;
  z-index: 99;
  display: none;
}

.sticky-cta.visible {
  display: block;
}

/* Responsive Design */
@media (max-width: 768px) {
  .container {
    padding: 0 16px;
  }
  
  .hero-card {
    padding: 32px 24px;
  }
  
  .hero-title {
    font-size: 32px;
  }
  
  .hero-subtitle {
    font-size: 18px;
  }
  
  .section-title {
    font-size: 28px;
  }
  
  .showcase-content {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  
  .pricing-card.featured {
    transform: none;
  }
  
  .trust-seals {
    gap: 24px;
  }
  
  .footer-links {
    gap: 16px;
  }
  
  .sticky-cta.visible {
    display: block;
  }
}

@media (max-width: 480px) {
  .hero-chips {
    flex-direction: column;
    align-items: center;
  }
  
  .paths-grid {
    grid-template-columns: 1fr;
  }
  
  .steps {
    grid-template-columns: 1fr;
  }
  
  .pricing-grid {
    grid-template-columns: 1fr;
  }
}

/* Accessibility */
.btn-primary:focus,
.btn-secondary:focus {
  outline: 3px solid var(--brand);
  outline-offset: 2px;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  
  * {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  
  .btn-primary {
    animation: none !important;
  }
}

/* Animations */
@keyframes pulse {
  0% {
    transform: scale(1);
    box-shadow: var(--shadow);
  }
  50% {
    transform: scale(1.05);
    box-shadow: 0 12px 32px rgba(227, 114, 34, 0.3);
  }
  100% {
    transform: scale(1);
    box-shadow: var(--shadow);
  }
}

/* High contrast mode support */
@media (prefers-contrast: high) {
  :root {
    --border: #000000;
    --muted: #000000;
  }
}
