/* ========================================
   RESET E CONFIGURAÇÕES GLOBAIS
   ======================================== */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

/*
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,600;0,700;0,800;1,400;1,600&family=Source+Sans+3:wght@300;400;500;600;700&display=swap');
*/

:root {
  --parchment: #F5F0E8;
  --ink: #2C1810;
  --leather: #6B3A2A;
  --gold: #C4973B;
  --cream: #FFF8F0;
  --leather-light: #8B5E3C;
  --gold-light: #D4AA4F;
  --shadow: rgba(44, 24, 16, .12);
  --success-bg: rgba(196, 151, 59, .12);
}

html {
  height: 100%;
  scroll-behavior: smooth;
}

body {
  height: 100%;
  width: 100%;
  font-family: 'Source Sans 3', Georgia, serif;
  color: var(--ink);
  background: var(--parchment);
  overflow-x: hidden;
  line-height: 1.6;
}

/* ========================================
   NAVEGAÇÃO PRINCIPAL
   ======================================== */
.nav-wrap {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--ink);
  border-bottom: 3px solid var(--gold);
  transition: box-shadow .3s;
}

.nav-wrap.scrolled {
  box-shadow: 0 4px 24px rgba(0, 0, 0, .3);
}

.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 24px;
  height: 64px;
}

.nav-brand {
  font-family: 'Playfair Display', serif;
  font-size: 26px;
  font-weight: 800;
  color: var(--gold);
  text-decoration: none;
  letter-spacing: 1px;
}

.nav-brand span {
  font-weight: 400;
  font-size: 14px;
  color: var(--gold-light);
  display: block;
  line-height: 1;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-family: 'Source Sans 3', sans-serif;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 8px;
  list-style: none;
}

.nav-links a {
  color: var(--cream);
  text-decoration: none;
  font-size: 15px;
  font-weight: 500;
  padding: 8px 14px;
  border-radius: 6px;
  transition: all .25s;
}

.nav-links a:hover {
  background: rgba(196, 151, 59, .15);
  color: var(--gold);
}

.nav-links a:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 2px;
}

.nav-cta {
  background: var(--gold) !important;
  color: var(--ink) !important;
  font-weight: 700 !important;
  padding: 8px 20px !important;
  border-radius: 8px !important;
}

.nav-cta:hover {
  background: var(--gold-light) !important;
  transform: translateY(-1px);
}

.nav-cta-outline {
  border: 1.5px solid var(--gold) !important;
  color: var(--gold) !important;
  font-weight: 600 !important;
  padding: 7px 18px !important;
  border-radius: 8px !important;
}

.nav-cta-outline:hover {
  background: var(--gold) !important;
  color: var(--ink) !important;
}

.burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}

.burger span {
  display: block;
  width: 24px;
  height: 2.5px;
  background: var(--gold);
  border-radius: 2px;
  transition: all .3s;
}

.burger.open span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.burger.open span:nth-child(2) {
  opacity: 0;
}

.burger.open span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* ========================================
   HERO
   ======================================== */
.hero {
  width: 100%;
  background: linear-gradient(135deg, var(--ink) 0%, #3D2117 40%, var(--leather) 70%, #4A2A1A 100%);
  position: relative;
  overflow: hidden;
  padding: 100px 24px 80px;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    repeating-linear-gradient(90deg, transparent, transparent 60px, rgba(196, 151, 59, .03) 60px, rgba(196, 151, 59, .03) 61px),
    repeating-linear-gradient(0deg, transparent, transparent 40px, rgba(196, 151, 59, .02) 40px, rgba(196, 151, 59, .02) 41px);
  pointer-events: none;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 120px;
  background: linear-gradient(to top, var(--parchment), transparent);
  pointer-events: none;
}

.hero-inner {
  max-width: 1000px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
  text-align: center;
}

.hero-kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 248, 240, .08);
  border: 1px solid rgba(255, 248, 240, .12);
  color: var(--gold);
  padding: 8px 14px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .6px;
  text-transform: uppercase;
  margin-bottom: 18px;
}

.hero-quill {
  font-size: 64px;
  margin-bottom: 18px;
  display: block;
  filter: drop-shadow(0 4px 16px rgba(196, 151, 59, .4));
  animation: float 4s ease-in-out infinite;
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}

.hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(32px, 5.5vw, 58px);
  color: var(--cream);
  font-weight: 700;
  line-height: 1.15;
  margin-bottom: 16px;
}

.hero h1 em {
  color: var(--gold);
  font-style: italic;
}

.hero-desc {
  font-size: clamp(16px, 2.2vw, 20px);
  color: rgba(255, 248, 240, .78);
  max-width: 760px;
  margin: 0 auto 30px;
  font-weight: 300;
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 24px;
}

.hero-cta {
  display: inline-block;
  background: var(--gold);
  color: var(--ink);
  font-size: 18px;
  font-weight: 700;
  padding: 16px 40px;
  border-radius: 12px;
  text-decoration: none;
  transition: all .3s;
  box-shadow: 0 8px 32px rgba(196, 151, 59, .35);
}

.hero-cta:hover {
  background: var(--gold-light);
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(196, 151, 59, .45);
}

.hero-cta:focus-visible {
  outline: 3px solid var(--cream);
  outline-offset: 4px;
}

.hero-cta-secondary {
  display: inline-block;
  border: 1.5px solid rgba(255, 248, 240, .25);
  color: var(--cream);
  font-size: 17px;
  font-weight: 600;
  padding: 15px 26px;
  border-radius: 12px;
  text-decoration: none;
  transition: all .3s;
  background: rgba(255, 255, 255, .03);
}

.hero-cta-secondary:hover {
  border-color: var(--gold);
  color: var(--gold);
  transform: translateY(-3px);
}

.hero-benefits {
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 44px;
}

.hero-benefits span {
  background: rgba(255, 248, 240, .08);
  color: rgba(255, 248, 240, .85);
  border: 1px solid rgba(255, 248, 240, .10);
  padding: 8px 12px;
  border-radius: 999px;
  font-size: 14px;
}

.hero-stats {
  display: flex;
  justify-content: center;
  gap: 48px;
  margin-top: 12px;
}

.hero-stat {
  text-align: center;
}

.hero-stat strong {
  display: block;
  font-family: 'Playfair Display', serif;
  font-size: 32px;
  color: var(--gold);
  font-weight: 700;
}

.hero-stat span {
  font-size: 14px;
  color: rgba(255, 248, 240, .60);
  text-transform: uppercase;
  letter-spacing: 1.5px;
}

.book-deco {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: 48px;
}

.book-deco i {
  width: 18px;
  height: 60px;
  border-radius: 3px 6px 6px 3px;
  opacity: .5;
  box-shadow: 2px 2px 8px rgba(0, 0, 0, .3);
}

/* ========================================
   SEÇÕES GERAIS
   ======================================== */
.section {
  padding: 80px 24px;
}

.section-inner {
  max-width: 1100px;
  margin: 0 auto;
}

.section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(26px, 4vw, 38px);
  color: var(--ink);
  text-align: center;
  margin-bottom: 12px;
  font-weight: 700;
}

.section-sub {
  text-align: center;
  color: var(--leather-light);
  font-size: 17px;
  max-width: 700px;
  margin: 0 auto 48px;
  font-weight: 400;
}

.section-alt {
  background: var(--cream);
}

/* ========================================
   CARDS
   ======================================== */
.feat-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 28px;
}

.feat-card {
  background: var(--cream);
  border: 1px solid rgba(107, 58, 42, .1);
  border-radius: 16px;
  padding: 36px 28px;
  transition: all .35s;
  position: relative;
  overflow: hidden;
}

.feat-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--gold), var(--leather));
  opacity: 0;
  transition: opacity .3s;
}

.feat-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 48px var(--shadow);
}

.feat-card:hover::before {
  opacity: 1;
}

.feat-icon {
  width: 52px;
  height: 52px;
  background: linear-gradient(135deg, var(--gold), var(--leather));
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  margin-bottom: 18px;
}

.feat-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 20px;
  color: var(--ink);
  margin-bottom: 10px;
  font-weight: 700;
}

.feat-card p {
  font-size: 15px;
  color: var(--leather-light);
  line-height: 1.65;
}

/* ========================================
   STEPS
   ======================================== */
.steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 32px;
  counter-reset: step;
}

.step {
  text-align: center;
  position: relative;
  padding: 24px 16px;
}

.step::before {
  counter-increment: step;
  content: counter(step);
  font-family: 'Playfair Display', serif;
  font-size: 56px;
  font-weight: 800;
  color: var(--gold);
  opacity: .2;
  line-height: 1;
}

.step h3 {
  font-family: 'Playfair Display', serif;
  font-size: 19px;
  margin: 12px 0 8px;
  color: var(--ink);
  font-weight: 700;
}

.step p {
  font-size: 14px;
  color: var(--leather-light);
  line-height: 1.6;
}

/* ========================================
   PREÇOS
   ======================================== */
.pricing-toggle {
  display: flex;
  justify-content: center;
  gap: 4px;
  margin-bottom: 40px;
  background: rgba(107, 58, 42, .08);
  border-radius: 12px;
  padding: 4px;
  max-width: 380px;
  margin-left: auto;
  margin-right: auto;
}

.pricing-toggle button {
  flex: 1;
  padding: 10px 16px;
  border: none;
  background: transparent;
  font-size: 14px;
  font-weight: 600;
  color: var(--leather-light);
  border-radius: 10px;
  cursor: pointer;
  transition: all .25s;
  font-family: 'Source Sans 3', sans-serif;
}

.pricing-toggle button.active {
  background: var(--gold);
  color: var(--ink);
  box-shadow: 0 2px 8px rgba(196, 151, 59, .3);
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
  align-items: stretch;
}

.price-card {
  background: var(--cream);
  border: 2px solid rgba(107, 58, 42, .08);
  border-radius: 20px;
  padding: 36px 28px;
  text-align: center;
  transition: all .35s;
  position: relative;
}

.price-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 48px var(--shadow);
}

.price-card.popular {
  border-color: var(--gold);
  background: linear-gradient(180deg, #FFF8F0, #FFF3E0);
}

.price-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--gold);
  color: var(--ink);
  font-size: 12px;
  font-weight: 700;
  padding: 4px 18px;
  border-radius: 20px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.price-tag {
  display: inline-block;
  background: rgba(107, 58, 42, .08);
  color: var(--leather);
  font-size: 12px;
  font-weight: 700;
  padding: 6px 12px;
  border-radius: 999px;
  margin-bottom: 14px;
  text-transform: uppercase;
  letter-spacing: .8px;
}

.price-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 22px;
  color: var(--ink);
  margin-bottom: 6px;
  font-weight: 700;
}

.price-card .price-desc {
  font-size: 14px;
  color: var(--leather-light);
  margin-bottom: 18px;
}

.price-amount {
  font-family: 'Playfair Display', serif;
  font-size: 42px;
  color: var(--ink);
  font-weight: 800;
  line-height: 1;
}

.price-amount small {
  font-size: 16px;
  font-weight: 400;
  color: var(--leather-light);
}

.price-period {
  font-size: 13px;
  color: var(--leather-light);
  margin-bottom: 24px;
  min-height: 20px;
}

.price-list {
  list-style: none;
  text-align: left;
  margin-bottom: 28px;
}

.price-list li {
  padding: 8px 0;
  font-size: 14px;
  color: var(--ink);
  border-bottom: 1px solid rgba(107, 58, 42, .06);
  display: flex;
  align-items: center;
  gap: 10px;
}

.price-list li::before {
  content: '✓';
  color: var(--gold);
  font-weight: 700;
  font-size: 16px;
}

.price-list li.disabled {
  color: rgba(107, 58, 42, .35);
  text-decoration: line-through;
}

.price-list li.disabled::before {
  content: '✕';
  color: rgba(107, 58, 42, .2);
}

.price-btn {
  display: block;
  width: 100%;
  padding: 14px;
  border: none;
  border-radius: 12px;
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
  transition: all .3s;
  font-family: 'Source Sans 3', sans-serif;
}

.price-btn-primary {
  background: var(--gold);
  color: var(--ink);
}

.price-btn-primary:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
}

.price-btn-outline {
  background: transparent;
  border: 2px solid var(--leather);
  color: var(--leather);
}

.price-btn-outline:hover {
  background: var(--leather);
  color: var(--cream);
}

.price-btn:focus-visible {
  outline: 3px solid var(--gold);
  outline-offset: 3px;
}

.pricing-note {
  max-width: 900px;
  margin: 28px auto 0;
  background: rgba(196, 151, 59, .10);
  border: 1px solid rgba(196, 151, 59, .22);
  color: var(--ink);
  padding: 18px 22px;
  border-radius: 16px;
  text-align: center;
  font-size: 15px;
}

/* ========================================
   DEPOIMENTOS
   ======================================== */
.test-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
}

.test-card {
  background: var(--cream);
  border-radius: 16px;
  padding: 32px 28px;
  border: 1px solid rgba(107, 58, 42, .08);
  position: relative;
}

.test-card::before {
  content: '"';
  font-family: 'Playfair Display', serif;
  font-size: 72px;
  color: var(--gold);
  opacity: .3;
  position: absolute;
  top: 8px;
  left: 20px;
  line-height: 1;
}

.test-text {
  font-size: 15px;
  color: var(--leather-light);
  line-height: 1.7;
  margin-bottom: 18px;
  padding-top: 20px;
  font-style: italic;
}

.test-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.test-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold), var(--leather));
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--cream);
  font-weight: 700;
  font-size: 18px;
  font-family: 'Playfair Display', serif;
}

.test-name {
  font-weight: 600;
  color: var(--ink);
  font-size: 15px;
}

.test-role {
  font-size: 13px;
  color: var(--leather-light);
}

/* ========================================
   CTA FINAL
   ======================================== */
.cta-section {
  background: linear-gradient(135deg, var(--ink), var(--leather));
  padding: 72px 24px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 30% 50%, rgba(196, 151, 59, .12), transparent 60%);
  pointer-events: none;
}

.cta-section h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(26px, 4vw, 40px);
  color: var(--cream);
  margin-bottom: 14px;
  font-weight: 700;
  position: relative;
}

.cta-section p {
  color: rgba(255, 248, 240, .7);
  font-size: 18px;
  margin-bottom: 32px;
  max-width: 620px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
}

.cta-actions {
  display: flex;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
  position: relative;
}

.cta-section a {
  display: inline-block;
  background: var(--gold);
  color: var(--ink);
  font-size: 18px;
  font-weight: 700;
  padding: 16px 44px;
  border-radius: 12px;
  text-decoration: none;
  transition: all .3s;
  position: relative;
  box-shadow: 0 8px 32px rgba(196, 151, 59, .3);
}

.cta-section a:hover {
  background: var(--gold-light);
  transform: translateY(-3px);
}

.cta-link-secondary {
  background: transparent !important;
  color: var(--cream) !important;
  border: 1.5px solid rgba(255, 248, 240, .25);
  box-shadow: none !important;
}

.cta-link-secondary:hover {
  border-color: var(--gold);
  color: var(--gold) !important;
  background: rgba(255,255,255,.03) !important;
}

/* ========================================
   FOOTER
   ======================================== */
.site-footer {
  background: var(--ink);
  color: rgba(255, 248, 240, .6);
  padding: 60px 24px 24px;
}

.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}

.footer-brand {
  font-family: 'Playfair Display', serif;
  font-size: 28px;
  color: var(--gold);
  font-weight: 800;
  margin-bottom: 12px;
}

.footer-brand span {
  display: block;
  font-size: 12px;
  color: rgba(255, 248, 240, .4);
  font-family: 'Source Sans 3', sans-serif;
  font-weight: 400;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.footer-desc {
  font-size: 14px;
  line-height: 1.7;
  margin-bottom: 16px;
}

.footer-social {
  display: flex;
  gap: 12px;
}

.footer-social a {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background: rgba(196, 151, 59, .15);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  text-decoration: none;
  font-size: 16px;
  transition: all .25s;
}

.footer-social a:hover {
  background: var(--gold);
  color: var(--ink);
}

.footer h4 {
  font-family: 'Playfair Display', serif;
  font-size: 16px;
  color: var(--cream);
  margin-bottom: 16px;
  font-weight: 700;
}

.footer-links {
  list-style: none;
}

.footer-links li {
  margin-bottom: 10px;
}

.footer-links a {
  color: rgba(255, 248, 240, .5);
  text-decoration: none;
  font-size: 14px;
  transition: color .25s;
}

.footer-links a:hover {
  color: var(--gold);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 248, 240, .08);
  padding-top: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 13px;
}

/* ========================================
   WHATSAPP FLOAT
   ======================================== */
.wpp-float {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 999;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: #25D366;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 24px rgba(37, 211, 102, .4);
  transition: all .3s;
  text-decoration: none;
  animation: pulse-wpp 2s infinite;
}

.wpp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 8px 32px rgba(37, 211, 102, .5);
}

@keyframes pulse-wpp {
  0%, 100% {
    box-shadow: 0 6px 24px rgba(37, 211, 102, .4);
  }
  50% {
    box-shadow: 0 6px 32px rgba(37, 211, 102, .6), 0 0 0 12px rgba(37, 211, 102, .1);
  }
}

.wpp-float svg {
  width: 32px;
  height: 32px;
  fill: #fff;
}

/* ========================================
   MENU MOBILE
   ======================================== */
.mobile-menu {
  display: none;
  position: absolute;
  top: 64px;
  left: 0;
  right: 0;
  background: var(--ink);
  border-top: 1px solid rgba(196, 151, 59, .15);
  padding: 16px 24px;
  flex-direction: column;
  gap: 4px;
  box-shadow: 0 16px 48px rgba(0, 0, 0, .3);
}

.mobile-menu.show {
  display: flex;
}

.mobile-menu a {
  color: var(--cream);
  text-decoration: none;
  padding: 12px 16px;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 500;
  transition: all .25s;
}

.mobile-menu a:hover {
  background: rgba(196, 151, 59, .1);
  color: var(--gold);
}

.mobile-menu .nav-cta,
.mobile-menu .nav-cta-outline {
  text-align: center;
  margin-top: 4px;
}

/* ========================================
   RESPONSIVIDADE
   ======================================== */
@media (max-width: 768px) {
  .nav-links {
    display: none;
  }

  .burger {
    display: flex;
  }

  .hero {
    padding: 72px 20px 60px;
  }

  .hero-stats {
    gap: 24px;
    flex-wrap: wrap;
  }

  .hero-stat strong {
    font-size: 26px;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 28px;
  }

  .pricing-grid {
    grid-template-columns: 1fr;
  }

  .steps {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 560px) {
  .hero-actions,
  .cta-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .hero-cta,
  .hero-cta-secondary,
  .cta-section a {
    width: 100%;
    text-align: center;
  }

  .hero-benefits {
    flex-direction: column;
    align-items: center;
  }
}

@media (max-width: 480px) {
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .steps {
    grid-template-columns: 1fr;
  }

  .hero-stats {
    flex-direction: column;
    gap: 16px;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
}

/* ========================================
   ANIMAÇÕES
   ======================================== */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: all .7s cubic-bezier(.23, 1, .32, 1);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}