:root {
  --bg-page: #F9F9F6;
  --bg-dark: #111E38;
  --bg-darker: #0A1428;
  --text-dark: #111E38;
  --text-light: #FFFFFF;
  --text-muted: #6B7280;
  --gold: #C5A880;
  --gold-hover: #B8956A;
  --border-light: rgba(197,168,128,0.2);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', sans-serif;
  background: var(--bg-page);
  color: var(--text-dark);
  line-height: 1.6;
  overflow-x: hidden;
}
h1, h2, h3, h4 {
  font-family: 'Playfair Display', serif;
  font-weight: 600;
  line-height: 1.2;
}
img { max-width: 100%; height: auto; display: block; }
.container { max-width: 1240px; margin: 0 auto; padding: 0 32px; }

/* ────────────────── ICONS ────────────────── */
.icon {
  display: block;
  width: 24px;
  height: 24px;
  flex-shrink: 0;
}
.icon--logo {
  width: 18px;
  height: 18px;
}
.icon--label {
  width: 14px;
  height: 14px;
}
.icon--star {
  width: 14px;
  height: 14px;
  display: inline-block;
  vertical-align: -2px;
  margin-right: 6px;
}
.icon--xl {
  width: 56px;
  height: 56px;
}

.nav-logo,
.footer-logo {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  flex-shrink: 0;
}
.hero-label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.price-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
}

.btn-primary {
  display: inline-block;
  background: var(--gold);
  color: var(--text-dark);
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  font-weight: 600;
  padding: 18px 48px;
  border-radius: 6px;
  border: none;
  cursor: pointer;
  text-decoration: none;
  letter-spacing: 0.02em;
  transition: all 0.3s ease;
}
.btn-primary:hover {
  background: var(--gold-hover);
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(197,168,128,0.35);
}
.btn-primary-sm { padding: 10px 24px; font-size: 14px; }

.fade-in {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.fade-in.fade-in-visible {
  opacity: 1;
  transform: translateY(0);
}

/* ────────────────── NAV ────────────────── */
nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 20px 0;
  transition: background 0.3s ease, box-shadow 0.3s ease;
}
nav.scrolled {
  background: var(--bg-page);
  box-shadow: 0 2px 20px rgba(0,0,0,0.08);
}
.nav-inner {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}
.nav-logo {
  line-height: 0;
}
.nav-logo__wrap {
  position: relative;
  display: block;
  height: 40px;
}
.nav-logo__img {
  height: 40px;
  width: auto;
  display: block;
}
.nav-logo__img--blue {
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
}
nav.scrolled .nav-logo__img--white { opacity: 0; }
nav.scrolled .nav-logo__img--blue { opacity: 1; }
.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
  list-style: none;
}
.nav-links a {
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  font-weight: 500;
  color: rgba(255,255,255,0.8);
  text-decoration: none;
  transition: color 0.3s ease;
}
.nav-links a:hover { color: var(--gold); }
nav.scrolled .nav-links a { color: var(--text-dark); }
nav.scrolled .nav-links a:hover { color: var(--gold); }

/* ────────────────── HERO ────────────────── */
.hero {
  position: relative;
  min-height: 100vh;
  background: var(--bg-dark);
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero-slides {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 0;
  transition: opacity 1.2s ease;
}
.slide--1 { background-image: url('../images/hero-banner-1.jpg'); }
.slide--2 { background-image: url('../images/hero-banner-2.jpg'); }
.slide--3 { background-image: url('../images/hero-banner-3.jpg'); }
.slide--4 { background-image: url('../images/hero-banner-4.jpg'); }
.slide--5 { background-image: url('../images/hero-banner-5.jpg'); }
.slide.active { opacity: 1; }
.slide-overlay {
  position: absolute;
  bottom: 48px;
  left: 48px;
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: 15px;
  color: var(--gold);
  opacity: 0;
  transition: opacity 1.2s ease 0.3s;
  z-index: 2;
}
.slide.active .slide-overlay { opacity: 1; }
.hero-dim {
  position: absolute;
  inset: 0;
  background: linear-gradient(255deg, rgba(10,20,40,0.5) 0%, rgba(10,20,40,0.85) 55%);
  z-index: 1;
}
.hero-content {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
  padding: 100px 32px 80px;
  display: flex;
  align-items: center;
}
.hero-left {
  max-width: 640px;
  text-align: left;
}
.hero-label {
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  font-weight: 500;
  color: var(--gold);
  letter-spacing: 0.3em;
  text-transform: uppercase;
  margin-bottom: 24px;
}
.hero-headline {
  font-size: 56px;
  color: var(--text-light);
  margin-bottom: 24px;
  font-weight: 600;
}
.hero-sub {
  font-family: 'Inter', sans-serif;
  font-size: 18px;
  font-weight: 300;
  color: rgba(255,255,255,0.65);
  margin-bottom: 40px;
  max-width: 520px;
}
.hero-micro {
  margin-top: 16px;
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  color: rgba(255,255,255,0.4);
  letter-spacing: 0.01em;
}

/* ────────────────── MÉTODO ────────────────── */
.method {
  background: var(--bg-page);
  padding: 120px 0;
}
.method-header {
  text-align: center;
  margin-bottom: 72px;
}
.method-header h2 {
  font-size: 48px;
  color: var(--text-dark);
  margin-bottom: 20px;
}
.method-header p {
  font-family: 'Inter', sans-serif;
  font-size: 18px;
  font-weight: 300;
  color: var(--text-muted);
  max-width: 600px;
  margin: 0 auto;
}
.method-showcase {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 48px;
  align-items: start;
}
.method-mockup {
  position: sticky;
  top: 100px;
}
.method-mockup__img {
  width: 100%;
  height: auto;
  display: block;
  filter: drop-shadow(0 24px 48px rgba(17, 30, 56, 0.12));
}
.method-showcase .method-grid {
  grid-template-columns: repeat(2, 1fr);
}
.method-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.method-card {
  background: #FFFFFF;
  border: 1px solid var(--border-light);
  border-radius: 12px;
  padding: 36px 32px;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}
.method-card:hover {
  border-color: var(--gold);
  box-shadow: 0 8px 32px rgba(197,168,128,0.15);
}
.method-card:nth-child(1) { transition-delay: 0s; }
.method-card:nth-child(2) { transition-delay: 0.1s; }
.method-card:nth-child(3) { transition-delay: 0.2s; }
.method-card:nth-child(4) { transition-delay: 0.3s; }
.method-card:nth-child(5) { transition-delay: 0.4s; }
.method-card:nth-child(6) { transition-delay: 0.5s; }
.method-icon {
  width: 52px;
  height: 52px;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  background: rgba(197, 168, 128, 0.1);
  border: 1px solid rgba(197, 168, 128, 0.2);
  border-radius: 14px;
  transition: background 0.3s ease, border-color 0.3s ease, transform 0.3s ease;
}
.method-card:hover .method-icon {
  background: rgba(197, 168, 128, 0.18);
  border-color: var(--gold);
  transform: translateY(-2px);
}
.method-icon .icon {
  width: 24px;
  height: 24px;
}
.method-card h3 {
  font-size: 20px;
  color: var(--text-dark);
  margin-bottom: 12px;
}
.method-card p {
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.7;
}

/* ────────────────── PARA QUEM É ────────────────── */
.audience {
  position: relative;
  background-color: #111E38;
  background-image:
    linear-gradient(rgba(17, 30, 56, 0.75), rgba(17, 30, 56, 0.75)),
    url('../images/hebrew-bg.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding: 120px 60px;
}
.audience-inner {
  position: relative;
  z-index: 1;
  max-width: 720px;
  margin: 0 auto;
}
.audience h2 {
  font-size: 44px;
  color: var(--text-light);
  margin-bottom: 56px;
}
.audience-list {
  list-style: none;
  margin-bottom: 56px;
}
.audience-list li {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  padding: 28px 0;
  font-family: 'Inter', sans-serif;
  font-size: 18px;
  color: rgba(255,255,255,0.75);
  line-height: 1.6;
  border-bottom: 1px solid rgba(197,168,128,0.15);
}
.audience-list li:first-child { border-top: 1px solid rgba(197,168,128,0.15); }
.check-icon {
  color: var(--gold);
  flex-shrink: 0;
  margin-top: 2px;
}
.check-icon .icon {
  width: 22px;
  height: 22px;
}
.audience-cta { text-align: center; }

/* ────────────────── OFERTA ────────────────── */
.offer {
  background: var(--bg-page);
  padding: 120px 60px;
  text-align: center;
}
.offer h2 {
  font-size: 44px;
  color: var(--text-dark);
  margin-bottom: 20px;
}
.offer-sub {
  font-family: 'Inter', sans-serif;
  font-size: 18px;
  color: var(--text-muted);
  max-width: 560px;
  margin: 0 auto 56px;
}
.price-card {
  max-width: 480px;
  margin: 0 auto;
  background: var(--bg-dark);
  border-radius: 16px;
  padding: 56px 48px;
  border: 1px solid var(--gold);
}
.price-badge {
  display: inline-block;
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.2em;
  color: var(--gold);
  background: rgba(197,168,128,0.1);
  border-radius: 50px;
  padding: 6px 16px;
  margin-bottom: 28px;
}
.price-old {
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  color: rgba(255,255,255,0.35);
  text-decoration: line-through;
  margin-bottom: 8px;
}
.price-main {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 6px;
  margin-bottom: 8px;
}
.price-value {
  font-family: 'Playfair Display', serif;
  font-size: 72px;
  font-weight: 300;
  color: var(--gold);
  line-height: 1;
}
.price-period {
  font-family: 'Inter', sans-serif;
  font-size: 18px;
  color: rgba(255,255,255,0.5);
}
.price-equiv {
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  color: rgba(197,168,128,0.6);
  margin-bottom: 32px;
}
.price-divider {
  height: 1px;
  background: rgba(197,168,128,0.2);
  margin-bottom: 32px;
}
.price-features {
  list-style: none;
  text-align: left;
  margin-bottom: 40px;
}
.price-features li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  color: rgba(255,255,255,0.65);
  padding: 8px 0;
}
.price-features li::before {
  content: '';
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  margin-top: 2px;
  background-color: var(--gold);
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none'%3E%3Ccircle cx='12' cy='12' r='10' stroke='black' stroke-width='1.5'/%3E%3Cpath d='M8 12l3 3 5-6' stroke='black' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  mask-size: contain;
  mask-repeat: no-repeat;
  mask-position: center;
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none'%3E%3Ccircle cx='12' cy='12' r='10' stroke='black' stroke-width='1.5'/%3E%3Cpath d='M8 12l3 3 5-6' stroke='black' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  -webkit-mask-size: contain;
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-position: center;
}
.btn-full { width: 100%; text-align: center; }
.price-micro {
  margin-top: 20px;
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  color: rgba(255,255,255,0.3);
  line-height: 1.7;
}

/* ────────────────── FAQ ────────────────── */
.faq {
  background: var(--bg-dark);
  padding: 120px 60px;
}
.faq-inner {
  max-width: 720px;
  margin: 0 auto;
}
.faq h2 {
  font-size: 40px;
  color: var(--text-light);
  margin-bottom: 56px;
}
.faq-item {
  border-bottom: 1px solid rgba(197,168,128,0.15);
}
.faq-question {
  width: 100%;
  background: none;
  border: none;
  cursor: pointer;
  padding: 28px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  text-align: left;
  font-family: 'Playfair Display', serif;
  font-size: 20px;
  color: var(--text-light);
  transition: color 0.3s ease;
}
.faq-question:hover { color: var(--gold); }
.faq-question::after {
  content: '';
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  background-color: var(--gold);
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none'%3E%3Cpath d='M12 5v14M5 12h14' stroke='black' stroke-width='1.5' stroke-linecap='round'/%3E%3C/svg%3E");
  mask-size: contain;
  mask-repeat: no-repeat;
  mask-position: center;
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none'%3E%3Cpath d='M12 5v14M5 12h14' stroke='black' stroke-width='1.5' stroke-linecap='round'/%3E%3C/svg%3E");
  -webkit-mask-size: contain;
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-position: center;
  transition: transform 0.3s ease;
}
.faq-item.open .faq-question::after {
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none'%3E%3Cpath d='M5 12h14' stroke='black' stroke-width='1.5' stroke-linecap='round'/%3E%3C/svg%3E");
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none'%3E%3Cpath d='M5 12h14' stroke='black' stroke-width='1.5' stroke-linecap='round'/%3E%3C/svg%3E");
  transform: rotate(0deg);
}
.faq-answer {
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  color: rgba(255,255,255,0.6);
  line-height: 1.8;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding-bottom 0.4s ease;
}
.faq-item.open .faq-answer {
  max-height: 300px;
  padding-bottom: 28px;
}

/* ────────────────── SEO CONTENT ────────────────── */
.seo-content {
  background: var(--bg-page);
  padding: 100px 0;
  border-top: 1px solid var(--border-light);
}
.seo-content h2 {
  font-size: clamp(28px, 4vw, 40px);
  color: var(--text-dark);
  text-align: center;
  max-width: 800px;
  margin: 0 auto 48px;
  line-height: 1.25;
}
.seo-content__grid {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.seo-content__grid p {
  font-family: 'Inter', sans-serif;
  font-size: 17px;
  font-weight: 300;
  color: var(--text-muted);
  line-height: 1.85;
}
.seo-content__grid strong {
  font-weight: 500;
  color: var(--text-dark);
}

/* ────────────────── FOOTER ────────────────── */
footer {
  background: var(--bg-darker);
  padding: 60px;
  text-align: center;
}
.footer-logo {
  display: inline-block;
  margin-bottom: 12px;
  line-height: 0;
}
.footer-logo__img {
  height: 44px;
  width: auto;
  display: block;
  margin: 0 auto;
}
.footer-tagline {
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  color: rgba(255,255,255,0.4);
  margin-bottom: 24px;
}
.footer-links {
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  color: rgba(255,255,255,0.3);
  margin-bottom: 12px;
}
.footer-links a {
  color: rgba(255,255,255,0.3);
  text-decoration: none;
  transition: color 0.3s ease;
}
.footer-links a:hover { color: var(--gold); }
.footer-copy {
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  color: rgba(255,255,255,0.2);
  margin-bottom: 16px;
}
.footer-verse {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: 14px;
  color: rgba(197,168,128,0.4);
}
