/* ===================================================================
   SEMENTE CÓSMICA — PÁGINA WHITE (SAFE PAGE / COMPLIANT)
   Estilização Clean, Sofisticada e de Alta Conversão
   =================================================================== */

:root {
  --primary-emerald: #047857;
  --emerald-dark: #064e3b;
  --emerald-light: #ecfdf5;
  --emerald-border: #a7f3d0;
  
  --gold-primary: #d97706;
  --gold-dark: #b45309;
  --gold-light: #fef3c7;
  --gold-gradient: linear-gradient(135deg, #d97706 0%, #b45309 100%);
  --gold-glow: rgba(217, 119, 6, 0.2);

  --bg-page: #f8fafc;
  --bg-card: #ffffff;
  --bg-alt: #f1f5f9;

  --text-main: #1e293b;
  --text-muted: #64748b;
  --text-light: #94a3b8;

  --font-heading: 'Cinzel', serif;
  --font-body: 'Plus Jakarta Sans', sans-serif;

  --shadow-sm: 0 2px 4px rgba(0,0,0,0.04);
  --shadow-md: 0 10px 25px -5px rgba(0, 0, 0, 0.05), 0 8px 10px -6px rgba(0, 0, 0, 0.03);
  --shadow-lg: 0 20px 35px -10px rgba(4, 120, 87, 0.12);
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
}

/* Reset Básico */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

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

/* Utilitários */
.container {
  width: 100%;
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 20px;
}

.text-center { text-align: center; }
.highlight-emerald { color: var(--primary-emerald); font-weight: 700; }
.highlight-gold { color: var(--gold-primary); font-weight: 700; }

/* Top Header */
.top-bar {
  background: var(--emerald-dark);
  color: #ffffff;
  font-size: 0.85rem;
  font-weight: 600;
  padding: 8px 0;
  letter-spacing: 0.5px;
}

.main-nav {
  background: #ffffff;
  border-bottom: 1px solid #e2e8f0;
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: var(--shadow-sm);
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 70px;
}

.brand-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.brand-logo img {
  height: 40px;
  width: auto;
}

.brand-title {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.25rem;
  color: var(--emerald-dark);
}

.nav-links {
  display: flex;
  gap: 24px;
  align-items: center;
  list-style: none;
}

.nav-links a {
  text-decoration: none;
  color: var(--text-main);
  font-weight: 600;
  font-size: 0.95rem;
  transition: color 0.2s ease;
}

.nav-links a:hover {
  color: var(--primary-emerald);
}

.btn-nav {
  background: var(--primary-emerald);
  color: #ffffff !important;
  padding: 10px 20px;
  border-radius: var(--radius-sm);
  transition: background 0.2s ease !important;
}

.btn-nav:hover {
  background: var(--emerald-dark) !important;
}

/* HERO SECTION */
.hero-section {
  padding: 60px 0 80px;
  background: linear-gradient(180deg, #ffffff 0%, var(--bg-page) 100%);
  position: relative;
  overflow: hidden;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}

.badge-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--emerald-light);
  color: var(--primary-emerald);
  border: 1px solid var(--emerald-border);
  padding: 6px 14px;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 700;
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.hero-title {
  font-family: var(--font-heading);
  font-size: 2.75rem;
  line-height: 1.2;
  color: var(--emerald-dark);
  font-weight: 800;
  margin-bottom: 20px;
}

.hero-subtitle {
  font-size: 1.15rem;
  color: var(--text-muted);
  margin-bottom: 30px;
}

.hero-features {
  list-style: none;
  margin-bottom: 35px;
}

.hero-features li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 600;
  font-size: 1rem;
  margin-bottom: 12px;
  color: var(--text-main);
}

.hero-features li svg {
  color: var(--primary-emerald);
  flex-shrink: 0;
}

.cta-group {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.btn-primary {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  background: var(--gold-gradient);
  color: #ffffff;
  font-size: 1.2rem;
  font-weight: 800;
  padding: 18px 36px;
  border-radius: var(--radius-md);
  text-decoration: none;
  box-shadow: 0 8px 20px rgba(217, 119, 6, 0.3);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  border: none;
  cursor: pointer;
  text-align: center;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(217, 119, 6, 0.4);
}

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

.hero-image-wrap {
  position: relative;
  display: flex;
  justify-content: center;
}

.hero-image-wrap img {
  width: 100%;
  max-width: 460px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  border: 4px solid #ffffff;
  transition: transform 0.3s ease;
}

.hero-image-wrap:hover img {
  transform: scale(1.02);
}

/* SEÇÃO DE BENEFÍCIOS / O QUE É */
.section-padding {
  padding: 80px 0;
}

.section-title {
  font-family: var(--font-heading);
  font-size: 2.2rem;
  color: var(--emerald-dark);
  margin-bottom: 12px;
}

.section-subtitle {
  font-size: 1.1rem;
  color: var(--text-muted);
  max-width: 680px;
  margin: 0 auto 50px;
}

.grid-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.info-card {
  background: var(--bg-card);
  padding: 32px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
  border: 1px solid #e2e8f0;
  transition: transform 0.2s ease, border-color 0.2s ease;
}

.info-card:hover {
  transform: translateY(-4px);
  border-color: var(--emerald-border);
}

.card-icon {
  width: 56px;
  height: 56px;
  background: var(--emerald-light);
  color: var(--primary-emerald);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.info-card h3 {
  font-family: var(--font-heading);
  font-size: 1.35rem;
  color: var(--emerald-dark);
  margin-bottom: 12px;
}

.info-card p {
  color: var(--text-muted);
  font-size: 0.98rem;
  line-height: 1.6;
}

/* MÓDULOS DO GUIA */
.modules-section {
  background: var(--bg-alt);
}

.module-row {
  display: flex;
  background: #ffffff;
  border-radius: var(--radius-md);
  border: 1px solid #e2e8f0;
  overflow: hidden;
  margin-bottom: 20px;
  box-shadow: var(--shadow-sm);
}

.module-num {
  background: var(--emerald-dark);
  color: #ffffff;
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 700;
  padding: 24px 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 120px;
}

.module-content {
  padding: 24px 30px;
  flex: 1;
}

.module-content h4 {
  font-size: 1.2rem;
  color: var(--text-main);
  margin-bottom: 8px;
}

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

/* DEPOIMENTOS */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 30px;
}

.testimonial-card {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: var(--radius-md);
  padding: 28px;
  box-shadow: var(--shadow-sm);
}

.stars {
  color: #f59e0b;
  margin-bottom: 14px;
  font-size: 1.1rem;
}

.testimonial-text {
  font-style: italic;
  color: var(--text-main);
  margin-bottom: 20px;
  font-size: 0.98rem;
}

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

.author-avatar {
  width: 44px;
  height: 44px;
  background: var(--gold-light);
  color: var(--gold-dark);
  font-weight: 700;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
}

.author-details h5 {
  font-size: 0.95rem;
  color: var(--text-main);
}

.author-details span {
  font-size: 0.82rem;
  color: var(--text-muted);
}

/* SEÇÃO DE OFERTA / PREÇO */
.offer-section {
  background: linear-gradient(180deg, var(--emerald-dark) 0%, #022c22 100%);
  color: #ffffff;
  position: relative;
}

.offer-card {
  background: #ffffff;
  color: var(--text-main);
  border-radius: var(--radius-lg);
  max-width: 620px;
  margin: 0 auto;
  padding: 40px;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
  position: relative;
  overflow: hidden;
  border: 3px solid var(--gold-primary);
}

.offer-badge {
  position: absolute;
  top: 0;
  right: 0;
  background: var(--gold-primary);
  color: #ffffff;
  font-size: 0.8rem;
  font-weight: 800;
  padding: 8px 24px;
  border-bottom-left-radius: var(--radius-sm);
  text-transform: uppercase;
}

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

.price-current {
  font-family: var(--font-heading);
  font-size: 3.2rem;
  color: var(--emerald-dark);
  font-weight: 800;
  margin: 10px 0;
}

.price-parcel {
  font-size: 1rem;
  color: var(--text-muted);
  margin-bottom: 25px;
}

.offer-bullets {
  list-style: none;
  text-align: left;
  margin-bottom: 30px;
  border-top: 1px solid #e2e8f0;
  padding-top: 20px;
}

.offer-bullets li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.95rem;
  margin-bottom: 10px;
}

/* GARANTIA BOX */
.guarantee-box {
  display: flex;
  gap: 20px;
  align-items: center;
  background: var(--emerald-light);
  border: 1px solid var(--emerald-border);
  border-radius: var(--radius-md);
  padding: 24px;
  max-width: 680px;
  margin: 40px auto 0;
}

.guarantee-icon {
  width: 60px;
  height: 60px;
  background: var(--primary-emerald);
  color: #ffffff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.guarantee-text h4 {
  color: var(--emerald-dark);
  font-size: 1.1rem;
  margin-bottom: 4px;
}

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

/* FAQ ACCORDION */
.faq-list {
  max-width: 760px;
  margin: 0 auto;
}

.faq-item {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: var(--radius-sm);
  margin-bottom: 14px;
  overflow: hidden;
}

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

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

/* RODAPÉ INSTITUCIONAL (COMPLIANT) */
.site-footer {
  background: #0f172a;
  color: #94a3b8;
  padding: 60px 0 30px;
  font-size: 0.88rem;
}

.footer-nav {
  display: flex;
  justify-content: center;
  gap: 30px;
  list-style: none;
  margin-bottom: 30px;
}

.footer-nav a {
  color: #cbd5e1;
  text-decoration: none;
  transition: color 0.2s ease;
}

.footer-nav a:hover {
  color: #ffffff;
}

.footer-disclaimer {
  max-width: 800px;
  margin: 0 auto 30px;
  line-height: 1.5;
  font-size: 0.8rem;
  color: #64748b;
  text-align: center;
}

.footer-copy {
  border-top: 1px solid #1e293b;
  padding-top: 20px;
  text-align: center;
  font-size: 0.82rem;
}

/* RESPONSIVIDADE PÁGINA WHITE */
@media (max-width: 992px) {
  .hero-section {
    padding: 30px 0 45px;
  }
  .hero-grid {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 0;
  }
  .hero-content {
    display: contents;
  }
  .badge-tag {
    order: 1;
  }
  .hero-title {
    order: 2;
    font-size: 2.1rem;
    line-height: 1.25;
    margin-bottom: 16px;
  }
  .hero-subtitle {
    order: 3;
    font-size: 1.05rem;
    margin-bottom: 18px;
  }
  /* MOCKUP ACIMA DO BOTÃO NO CELULAR */
  .hero-image-wrap {
    order: 4;
    margin: 10px 0 25px;
    width: 100%;
    display: flex;
    justify-content: center;
  }
  .hero-image-wrap img {
    max-width: 320px;
  }
  .hero-features {
    order: 5;
    display: inline-block;
    text-align: left;
    margin-bottom: 25px;
  }
  .hero-features li {
    justify-content: flex-start;
    font-size: 0.95rem;
  }
  .cta-group {
    order: 6;
    width: 100%;
    align-items: center;
  }
  .btn-primary {
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
  }
  .guarantee-micro {
    justify-content: center;
    text-align: center;
  }
  .nav-links {
    display: none;
  }
}

@media (max-width: 600px) {
  .top-bar {
    font-size: 0.78rem;
    padding: 6px 10px;
  }
  .nav-container {
    height: 60px;
  }
  .hero-section {
    padding: 25px 0 40px;
  }
  .hero-title {
    font-size: 1.7rem;
    margin-bottom: 14px;
  }
  .hero-subtitle {
    font-size: 0.98rem;
    line-height: 1.5;
    margin-bottom: 18px;
  }
  .hero-features li {
    font-size: 0.9rem;
    gap: 8px;
  }
  .btn-primary {
    width: 100%;
    font-size: 1.05rem;
    padding: 16px 18px;
  }
  .guarantee-micro {
    font-size: 0.78rem;
  }
  .hero-image-wrap img {
    max-width: 260px;
  }
  .offer-card {
    padding: 24px 18px;
  }
  .price-current {
    font-size: 2.4rem;
  }
  .module-row {
    flex-direction: column;
  }
  .module-num {
    padding: 12px;
    font-size: 1.1rem;
  }
}
