/* ===========================
   CSS Variables & Design Tokens
   =========================== */
:root {
  /* Colors - Navy & Gold Theme */
  --color-background: #F4F7F9; /* Fundo claro sutilmente azulado */
  --color-card: #FFFFFF;
  --color-navy: #0A1530;
  --color-navy-light: #1A2B56;
  --color-gold: #C9A84C;
  --color-gold-light: #E8D399;
  --color-gold-bg: rgba(201, 168, 76, 0.1);
  --color-text: #334155;
  --color-heading: #0F172A;
  --color-muted: #64748B;
  --color-border: #E2E8F0;
  --color-success: #10B981;

  /* Typography */
  --font-heading: 'Playfair Display', Georgia, serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;

  /* Spacing */
  --space-xs: 0.5rem;
  --space-sm: 1rem;
  --space-md: 1.5rem;
  --space-lg: 2rem;
  --space-xl: 3rem;
  --space-2xl: 4rem;

  /* Border Radius */
  --radius-md: 12px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --radius-full: 9999px;

  /* Shadows */
  --shadow-soft: 0 4px 20px -2px rgba(10, 21, 48, 0.05), 0 0 3px rgba(10, 21, 48, 0.02);
  --shadow-md: 0 10px 30px -5px rgba(10, 21, 48, 0.1);
  --shadow-gold: 0 8px 24px -4px rgba(201, 168, 76, 0.3);

  /* Transitions */
  --transition: 0.3s ease;
}

/* ===========================
   Reset & Base Styles
   =========================== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  color: var(--color-text);
  background-color: var(--color-background);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

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

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

/* ===========================
   Typography
   =========================== */
h1, h2, h3, h4 {
  font-family: var(--font-heading);
  color: var(--color-heading);
  line-height: 1.2;
}

.text-gold {
  color: var(--color-gold);
}

.text-navy {
  color: var(--color-navy);
}

.text-center { text-align: center; }
.text-muted { color: var(--color-muted); }

/* ===========================
   Layout & Utilities
   =========================== */
.container {
  width: 100%;
  max-width: 1024px;
  margin: 0 auto;
  padding: 0 var(--space-sm);
}

.section-padding {
  padding: var(--space-xl) 0;
}

@media (min-width: 768px) {
  .section-padding {
    padding: var(--space-2xl) 0;
  }
}

/* ===========================
   Buttons
   =========================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 16px 32px;
  border-radius: var(--radius-lg);
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 1.1rem;
  cursor: pointer;
  transition: transform var(--transition), box-shadow var(--transition), filter var(--transition);
  text-align: center;
  width: 100%;
  max-width: 400px;
  border: none;
}

.btn-primary {
  background: linear-gradient(135deg, var(--color-gold), #B5933B);
  color: #fff;
  box-shadow: var(--shadow-gold);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.btn-primary:hover {
  transform: translateY(-2px);
  filter: brightness(1.05);
  box-shadow: 0 12px 28px -4px rgba(201, 168, 76, 0.4);
}

.btn-navy {
  background: var(--color-navy);
  color: #fff;
  box-shadow: var(--shadow-md);
}

.btn-navy:hover {
  background: var(--color-navy-light);
  transform: translateY(-2px);
}

/* ===========================
   Top Bar
   =========================== */
.top-bar {
  background: var(--color-navy);
  color: #fff;
  text-align: center;
  padding: 8px var(--space-sm);
  font-size: 0.85rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
}

@media (min-width: 600px) {
  .top-bar {
    flex-direction: row;
    gap: 12px;
  }
}

.top-bar .highlight {
  color: var(--color-gold);
  font-weight: 600;
}

/* ===========================
   Hero Section
   =========================== */
.hero {
  position: relative;
  background: linear-gradient(180deg, rgba(201, 168, 76, 0.05) 0%, var(--color-background) 100%);
  padding-top: var(--space-xl);
  padding-bottom: var(--space-xl);
  text-align: center;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--color-gold-bg);
  color: var(--color-heading);
  border: 1px solid rgba(201, 168, 76, 0.4);
  padding: 6px 16px;
  border-radius: var(--radius-full);
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: var(--space-md);
}

.badge svg {
  color: var(--color-gold);
}

.hero h1 {
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 800;
  margin-bottom: var(--space-sm);
  max-width: 800px;
  margin-inline: auto;
}

.hero p {
  font-size: clamp(1rem, 2vw, 1.15rem);
  color: var(--color-muted);
  max-width: 650px;
  margin: 0 auto var(--space-lg);
}

.hero-image-wrapper {
  max-width: 800px;
  margin: 0 auto var(--space-lg);
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-gold);
  border: 1px solid var(--color-border);
  background: var(--color-card);
}

.hero-image-wrapper img {
  width: 100%;
  height: auto;
  object-fit: cover;
}

.secure-info {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  margin-top: 12px;
  font-size: 0.8rem;
  color: var(--color-muted);
}

/* ===========================
   Testimonials (Quem já imprimiu)
   =========================== */
.testimonials {
  background: var(--color-background);
}

.section-header {
  text-align: center;
  margin-bottom: var(--space-xl);
}

.section-header h2 {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  color: var(--color-navy);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-md);
}

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

.testimonial-card {
  background: var(--color-card);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: var(--space-md);
  box-shadow: var(--shadow-soft);
  display: flex;
  flex-direction: column;
}

.stars {
  color: var(--color-gold);
  margin-bottom: 12px;
  display: flex;
  gap: 2px;
}

.testimonial-card p {
  font-size: 0.95rem;
  margin-bottom: var(--space-md);
  flex-grow: 1;
}

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

.avatar {
  width: 40px;
  height: 40px;
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-weight: 600;
  font-size: 0.9rem;
}

.author-info h4 {
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 0;
}

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

/* ===========================
   Steps Image Section
   =========================== */
.steps-section {
  background: var(--color-card);
}

.steps-wrapper {
  max-width: 700px;
  margin: 0 auto;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-gold);
  border: 1px solid var(--color-border);
}

/* ===========================
   Benefits (Feito para quem ama)
   =========================== */
.benefits-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-md);
}

@media (min-width: 600px) {
  .benefits-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 900px) {
  .benefits-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.benefit-card {
  background: var(--color-background);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: var(--space-md);
  box-shadow: var(--shadow-soft);
}

.benefit-icon {
  display: inline-flex;
  padding: 10px;
  background: var(--color-gold-bg);
  color: var(--color-gold);
  border-radius: var(--radius-md);
  margin-bottom: 12px;
}

.benefit-card h3 {
  font-family: var(--font-body);
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 6px;
}

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

/* ===========================
   Showcase Gallery
   =========================== */
.gallery-section {
  background: var(--color-card);
}

.gallery-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-md);
}

@media (min-width: 600px) {
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.gallery-item {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--color-border);
  box-shadow: var(--shadow-soft);
}

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

.gallery-item:hover img {
  transform: scale(1.03);
}

/* ===========================
   Package Details (Tudo o que você vai receber)
   =========================== */
.package-section {
  background: var(--color-background);
}

.main-product {
  background: var(--color-card);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-xl);
  padding: var(--space-lg);
  box-shadow: var(--shadow-soft);
  display: grid;
  gap: var(--space-lg);
  align-items: center;
}

@media (min-width: 768px) {
  .main-product {
    grid-template-columns: 300px 1fr;
    padding: var(--space-xl);
  }
}

.main-product img {
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-soft);
}

.product-info .label {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--color-gold);
  margin-bottom: 8px;
  display: block;
}

.product-info h3 {
  font-size: 1.75rem;
  margin-bottom: 8px;
}

.features-list {
  margin-top: var(--space-md);
  list-style: none;
}

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

.features-list li svg {
  color: var(--color-success);
  flex-shrink: 0;
  margin-top: 2px;
}

/* ===========================
   Bonuses
   =========================== */
.bonuses-header {
  text-align: center;
  margin: var(--space-xl) 0 var(--space-lg);
}

.bonus-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-lg);
}

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

.bonus-card {
  background: var(--color-card);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
}

.bonus-img-wrapper {
  background: var(--color-navy);
  padding: var(--space-md);
  display: flex;
  justify-content: center;
  align-items: center;
  height: 250px;
}

.bonus-img-wrapper img {
  max-height: 100%;
  object-fit: contain;
}

.bonus-content {
  padding: var(--space-md);
}

.bonus-content .label {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--color-gold);
  margin-bottom: 8px;
  display: block;
}

/* ===========================
   Categories Section
   =========================== */
.categories-section {
  background: var(--color-navy);
  color: #fff;
}
.categories-section h2 {
  color: #fff;
}
.categories-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
  max-width: 900px;
  margin: 24px auto 0;
}
@media (min-width: 600px) {
  .categories-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 900px) {
  .categories-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}
.category-pill {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-md);
  padding: 12px 16px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.category-pill span.name {
  font-size: 0.9rem;
  font-weight: 500;
}
.category-pill span.count {
  background: rgba(201, 168, 76, 0.2);
  color: var(--color-gold);
  padding: 2px 8px;
  border-radius: var(--radius-full);
  font-size: 0.75rem;
  font-weight: 700;
}
.category-total {
  background: rgba(201, 168, 76, 0.1);
  border: 1px solid rgba(201, 168, 76, 0.3);
  padding: 16px;
  border-radius: var(--radius-md);
  text-align: center;
  max-width: 900px;
  margin: 24px auto 0;
  font-size: 0.95rem;
}

/* ===========================
   Pricing Section
   =========================== */
.pricing-section {
  background: var(--color-background);
  color: var(--color-text);
}

.pricing-section .section-header h2 {
  color: var(--color-navy);
}

.pricing-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-lg);
  max-width: 1000px;
  margin: 0 auto;
}

@media (min-width: 800px) {
  .pricing-grid {
    grid-template-columns: 1fr 1fr;
    align-items: start;
  }
}

.price-card {
  background: var(--color-card);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-xl);
  padding: var(--space-lg);
  position: relative;
  box-shadow: var(--shadow-soft);
  overflow: hidden;
}

.price-card.premium {
  border: 2px solid var(--color-gold);
  box-shadow: var(--shadow-gold);
  padding-top: 50px;
}

.most-popular {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  background: var(--color-gold);
  color: #fff;
  padding: 8px 16px;
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  text-align: center;
}

.price-card-image {
  margin: 0 auto var(--space-md);
  max-width: 300px;
  border-radius: var(--radius-md);
  overflow: hidden;
}

.price-card h3 {
  text-align: center;
  font-size: 1.5rem;
  margin-bottom: 24px;
  color: var(--color-navy);
}

.price-card.premium h3 {
  color: var(--color-navy);
}

.price-amount {
  text-align: center;
  font-size: 3rem;
  font-weight: 800;
  font-family: var(--font-heading);
  color: var(--color-navy);
  line-height: 1;
  margin-bottom: 8px;
}

.price-amount span {
  font-size: 1.25rem;
  vertical-align: top;
  margin-top: 8px;
  display: inline-block;
}

.price-old {
  text-align: center;
  font-size: 0.9rem;
  color: var(--color-muted);
  text-decoration: line-through;
  margin-bottom: 4px;
}

.price-note {
  text-align: center;
  font-size: 0.85rem;
  color: var(--color-muted);
  margin-bottom: var(--space-md);
}

.features-list {
  margin-bottom: 24px;
}

.features-list li.unavailable svg {
  color: #EF4444; /* Red cross */
}
.features-list li.unavailable span {
  color: var(--color-muted);
  text-decoration: line-through;
}

/* ===========================
   Guarantee
   =========================== */
.guarantee-section {
  background: var(--color-card);
  text-align: center;
}

.guarantee-badge {
  width: 80px;
  height: 80px;
  background: var(--color-gold);
  color: #fff;
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto var(--space-md);
  font-size: 2rem;
  font-weight: 700;
  font-family: var(--font-heading);
}

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

.faq-list {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

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

.faq-question {
  width: 100%;
  text-align: left;
  padding: 20px;
  background: none;
  border: none;
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 600;
  color: var(--color-navy);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.faq-question svg {
  transition: transform 0.3s;
}

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

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

.faq-item.active .faq-answer {
  max-height: 300px;
}

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

/* ===========================
   Footer
   =========================== */
.footer {
  background: var(--color-navy);
  color: rgba(255, 255, 255, 0.7);
  text-align: center;
  padding: var(--space-lg) var(--space-sm);
  font-size: 0.85rem;
}

/* Animações */
.animate-on-scroll {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.animate-on-scroll.visible {
  opacity: 1;
  transform: translateY(0);
}
