/* Import Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,400;0,500;0,600;0,700;1,400;1,500&family=Inter:wght@300;400;500;600;700&family=Playfair+Display:ital,wght@0,400;0,500;0,600;0,700;1,400&display=swap');

/* CSS Variables */
:root {
  --golden-primary: #C9A227;
  --golden-light: #E8D5A3;
  --golden-dark: #8B6914;
  --bg-warm: #FDF8E8;
  --bg-warm-light: #F5E6C8;
  --bg-warm-dark: #E8D4A8;
  --text-primary: #2C2416;
  --text-secondary: #5C4D3C;
  --text-light: #8B7355;
  --white: #FFFFFF;
  
  --font-display: 'Playfair Display', serif;
  --font-body: 'Inter', sans-serif;
  --font-accent: 'Cormorant Garamond', serif;
  
  --shadow-golden: 0 4px 20px rgba(201, 162, 39, 0.15);
  --shadow-golden-lg: 0 8px 30px rgba(201, 162, 39, 0.2);
  --shadow-golden-xl: 0 12px 40px rgba(201, 162, 39, 0.25);
  
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 80px;
}

body {
  font-family: var(--font-body);
  background-color: var(--bg-warm);
  color: var(--text-primary);
  line-height: 1.6;
  overflow-x: hidden;
}

/* Scrollbar */
::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: var(--bg-warm);
}

::-webkit-scrollbar-thumb {
  background: var(--golden-primary);
  border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--golden-dark);
}

/* Header/Navigation */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(253, 248, 232, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(201, 162, 39, 0.1);
  transition: var(--transition);
}

.header.scrolled {
  box-shadow: var(--shadow-golden);
}

.header-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

.logo {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text-primary);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 8px;
}

.logo span {
  background: linear-gradient(90deg, var(--golden-primary) 0%, var(--golden-dark) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.nav-desktop {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav-link {
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--text-secondary);
  text-decoration: none;
  transition: var(--transition);
  position: relative;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--golden-primary);
  transition: var(--transition);
}

.nav-link:hover {
  color: var(--golden-dark);
}

.nav-link:hover::after {
  width: 100%;
}

.btn-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 28px;
  background: linear-gradient(135deg, var(--golden-primary) 0%, var(--golden-dark) 100%);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 600;
  text-decoration: none;
  border-radius: 50px;
  box-shadow: var(--shadow-golden);
  transition: var(--transition);
  border: none;
  cursor: pointer;
}

.btn-cta:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-golden-lg);
}

/* Mobile Menu */
.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}

.menu-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text-primary);
  transition: var(--transition);
}

.menu-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.menu-toggle.active span:nth-child(2) {
  opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

.nav-mobile {
  display: none;
  position: absolute;
  top: 72px;
  left: 0;
  right: 0;
  background: rgba(253, 248, 232, 0.98);
  backdrop-filter: blur(10px);
  padding: 24px;
  border-bottom: 1px solid rgba(201, 162, 39, 0.1);
  flex-direction: column;
  gap: 16px;
  transform: translateY(-100%);
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
}

.nav-mobile.active {
  transform: translateY(0);
  opacity: 1;
  visibility: visible;
}

.nav-mobile .nav-link {
  padding: 12px 0;
  font-size: 1.1rem;
  border-bottom: 1px solid rgba(201, 162, 39, 0.1);
}

.nav-mobile .btn-cta {
  margin-top: 8px;
  justify-content: center;
}

/* Animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes pulseGlow {
  0%, 100% {
    box-shadow: 0 4px 20px rgba(201, 162, 39, 0.15);
  }
  50% {
    box-shadow: 0 8px 30px rgba(201, 162, 39, 0.3);
  }
}

@keyframes float {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}

.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1), 
              transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

/* Hero Section */
.hero {
  min-height: 100vh;
  background: linear-gradient(180deg, var(--bg-warm) 0%, var(--bg-warm-light) 60%, var(--bg-warm-dark) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 120px 24px 80px;
  position: relative;
  overflow: hidden;
}

.hero-decoration {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
}

.hero-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.3;
}

.hero-blob-1 {
  top: 80px;
  left: 40px;
  width: 280px;
  height: 280px;
  background: var(--golden-light);
}

.hero-blob-2 {
  bottom: 80px;
  right: 40px;
  width: 380px;
  height: 380px;
  background: var(--golden-primary);
  opacity: 0.1;
}

.hero-blob-3 {
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 800px;
  height: 800px;
  background: var(--golden-light);
  opacity: 0.05;
}

.hero-container {
  max-width: 1280px;
  width: 100%;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

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

.hero-content {
  text-align: left;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  background: rgba(201, 162, 39, 0.1);
  color: var(--golden-dark);
  font-size: 0.875rem;
  font-weight: 500;
  border-radius: 50px;
  margin-bottom: 24px;
}

.badge svg {
  width: 16px;
  height: 16px;
}

.hero-title {
  font-family: var(--font-display);
  font-size: 3.5rem;
  font-weight: 700;
  line-height: 1.15;
  color: var(--text-primary);
  margin-bottom: 24px;
}

.hero-title .gradient-text {
  background: linear-gradient(90deg, var(--golden-primary) 0%, var(--golden-light) 50%, var(--golden-primary) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-subtitle {
  font-family: var(--font-accent);
  font-size: 1.5rem;
  font-style: italic;
  color: var(--text-secondary);
  margin-bottom: 32px;
  line-height: 1.6;
}

.hero-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 18px 40px;
  background: linear-gradient(135deg, var(--golden-primary) 0%, var(--golden-dark) 100%);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 1.1rem;
  font-weight: 600;
  text-decoration: none;
  border-radius: 50px;
  box-shadow: var(--shadow-golden-lg);
  transition: var(--transition);
  border: none;
  cursor: pointer;
}

.hero-cta:hover {
  transform: scale(1.05);
  box-shadow: var(--shadow-golden-xl);
}

.hero-author {
  margin-top: 24px;
  font-size: 0.875rem;
  color: var(--text-light);
}

.hero-author span {
  font-weight: 600;
  color: var(--golden-dark);
}

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

.book-wrapper {
  position: relative;
}

.book-glow {
  position: absolute;
  inset: 0;
  background: rgba(201, 162, 39, 0.2);
  border-radius: 16px;
  filter: blur(20px);
  transform: rotate(6deg) scale(0.95);
}

.book-cover {
  position: relative;
  max-width: 400px;
  width: 100%;
  border-radius: 12px;
  box-shadow: var(--shadow-golden-xl);
  animation: pulseGlow 3s ease-in-out infinite;
}

.book-badge {
  position: absolute;
  bottom: -16px;
  right: -16px;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(4px);
  padding: 8px 16px;
  border-radius: 8px;
  box-shadow: var(--shadow-golden);
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--golden-dark);
}

.scroll-indicator {
  position: absolute;
  bottom: 32px;
  /* left: 50%; */
  transform: translateX(-50%);
  color: var(--golden-dark);
  opacity: 0.6;
  animation: float 2s ease-in-out infinite;
  cursor: pointer;
  background: none;
  border: none;
}

.scroll-indicator:hover {
  opacity: 1;
}

/* Section Base */
.section {
  padding: 80px 24px;
  position: relative;
}

.section-container {
  max-width: 1200px;
  margin: 0 auto;
}

.section-header {
  text-align: center;
  margin-bottom: 48px;
}

.section-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  background: rgba(201, 162, 39, 0.1);
  color: var(--golden-dark);
  font-size: 0.875rem;
  font-weight: 500;
  border-radius: 50px;
  margin-bottom: 16px;
}

.section-title {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 16px;
  line-height: 1.3;
}

.section-title .gradient-text {
  background: linear-gradient(90deg, var(--golden-primary) 0%, var(--golden-dark) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Autoridade Section */


.autoridade {
  background: linear-gradient(to bottom, var(--bg-warm), var(--bg-warm-light));
}

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

.author-photo-wrapper {
  display: flex;
  justify-content: center;
}

.author-photo-container {
  position: relative;
}

.author-photo-placeholder {
  width: 320px;
  height: 400px;
  background: linear-gradient(135deg, rgba(201, 162, 39, 0.2) 0%, rgba(201, 162, 39, 0.1) 100%);
  border-radius: 16px;
  border: 2px dashed rgba(201, 162, 39, 0.4);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  box-shadow: var(--shadow-golden);
}

.author-photo-placeholder .icon-circle {
  width: 80px;
  height: 80px;
  background: rgba(201, 162, 39, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.author-photo-placeholder .icon-circle svg {
  width: 40px;
  height: 40px;
  color: var(--golden-primary);
  opacity: 0.5;
}

.author-photo-placeholder p {
  text-align: center;
  color: var(--text-secondary);
}

.author-photo-placeholder p.secondary {
  font-size: 0.875rem;
  color: var(--text-light);
}

.author-photo-badge {
  position: absolute;
  top: -12px;
  right: -12px;
  width: 40px;
  height: 40px;
  background: var(--golden-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-golden);
}

.author-photo-badge svg {
  width: 20px;
  height: 20px;
  color: var(--white);
}

.author-photo-frame {
  position: absolute;
  bottom: -16px;
  right: -16px;
  width: 100%;
  height: 100%;
  border: 2px solid rgba(201, 162, 39, 0.3);
  border-radius: 16px;
  z-index: -1;
}

.autoridade-content {
  text-align: left;
}

.autoridade-subtitle {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-accent);
  font-size: 1.125rem;
  font-style: italic;
  color: var(--golden-dark);
  margin-bottom: 16px;
}

.autoridade-subtitle svg {
  width: 20px;
  height: 20px;
}

.autoridade-text {
  font-size: 1.125rem;
  color: var(--text-secondary);
  line-height: 1.8;
  margin-bottom: 16px;
}

.autoridade-quote {
  font-family: var(--font-accent);
  font-size: 1.25rem;
  font-style: italic;
  color: var(--golden-dark);
  margin-bottom: 24px;
}

.autoridade-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 16px;
  background: rgba(255, 255, 255, 0.6);
  border-radius: 50px;
  font-size: 0.875rem;
  color: var(--text-secondary);
}

.tag svg {
  width: 16px;
  height: 16px;
  color: var(--golden-primary);
}

/* Conexao Section */
.conexao {
  background: var(--bg-warm-light);
}

.conexao-decoration {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
}

.conexao-blob-1 {
  position: absolute;
  top: 25%;
  right: 0;
  width: 250px;
  height: 250px;
  background: var(--golden-primary);
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.05;
}

.conexao-blob-2 {
  position: absolute;
  bottom: 25%;
  left: 0;
  width: 200px;
  height: 200px;
  background: var(--golden-light);
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.1;
}

.dores-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 48px;
}

.dor-card {
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(4px);
  border-radius: 16px;
  padding: 32px;
  box-shadow: var(--shadow-golden);
  transition: var(--transition);
}

.dor-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-golden-lg);
}

.dor-icon {
  width: 56px;
  height: 56px;
  background: rgba(201, 162, 39, 0.1);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.dor-icon svg {
  width: 28px;
  height: 28px;
  color: var(--golden-dark);
}

.dor-text {
  font-size: 1.125rem;
  font-weight: 500;
  color: var(--text-primary);
  line-height: 1.6;
}

.pior-parte {
  background: linear-gradient(to right, rgba(201, 162, 39, 0.1), rgba(232, 213, 163, 0.2));
  border-radius: 16px;
  padding: 48px;
  text-align: center;
}

.pior-parte-icon {
  width: 64px;
  height: 64px;
  background: rgba(255, 255, 255, 0.8);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
  box-shadow: var(--shadow-golden);
}

.pior-parte-icon svg {
  width: 32px;
  height: 32px;
  color: var(--golden-dark);
}

.pior-parte h3 {
  font-family: var(--font-display);
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 16px;
}

.pior-parte .quote {
  font-family: var(--font-accent);
  font-size: 1.75rem;
  font-style: italic;
  color: var(--golden-dark);
  margin-bottom: 32px;
}

.pior-parte-footer {
  padding-top: 32px;
  border-top: 1px solid rgba(201, 162, 39, 0.2);
}

.pior-parte-footer p {
  font-size: 1.125rem;
  color: var(--text-secondary);
}

.pior-parte-footer span {
  font-weight: 600;
  color: var(--golden-dark);
}

/* QuebraPadrao Section */
.quebra-padrao {
  background: var(--text-primary);
  position: relative;
  overflow: hidden;
}

.quebra-padrao-decoration {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.quebra-padrao-blob-1 {
  position: absolute;
  top: 0;
  left: 25%;
  width: 380px;
  height: 380px;
  background: var(--golden-primary);
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.05;
}

.quebra-padrao-blob-2 {
  position: absolute;
  bottom: 0;
  right: 25%;
  width: 250px;
  height: 250px;
  background: var(--golden-primary);
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.1;
}

.quebra-padrao-pattern {
  position: absolute;
  inset: 0;
  opacity: 0.05;
  background-image: radial-gradient(circle at 2px 2px, var(--golden-primary) 1px, transparent 0);
  background-size: 40px 40px;
}

.quebra-padrao .section-container {
  position: relative;
  z-index: 1;
  text-align: center;
}

.quebra-padrao .section-badge {
  background: rgba(201, 162, 39, 0.2);
  color: var(--golden-light);
}

.quebra-padrao .section-title {
  color: var(--white);
}

.quebra-padrao .section-title span {
  color: var(--golden-primary);
}

.quebra-nao-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 48px;
}

.quebra-nao-item {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(4px);
  padding: 16px 24px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.quebra-nao-item svg {
  width: 20px;
  height: 20px;
  color: var(--golden-primary);
}

.quebra-nao-item span {
  color: rgba(255, 255, 255, 0.9);
  font-weight: 500;
}

.quebra-sim {
  background: linear-gradient(to right, rgba(201, 162, 39, 0.2), rgba(201, 162, 39, 0.3), rgba(201, 162, 39, 0.2));
  border-radius: 16px;
  padding: 48px;
  border: 1px solid rgba(201, 162, 39, 0.3);
}

.quebra-sim svg {
  width: 48px;
  height: 48px;
  color: var(--golden-primary);
  margin-bottom: 24px;
}

.quebra-sim-text {
  font-family: var(--font-accent);
  font-size: 1.75rem;
  font-style: italic;
  color: var(--white);
  line-height: 1.6;
  margin-bottom: 32px;
}

.quebra-sim-text span {
  color: var(--golden-primary);
}

.quebra-sim-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-bottom: 32px;
}

.quebra-sim-divider::before,
.quebra-sim-divider::after {
  content: '';
  width: 64px;
  height: 1px;
  background: rgba(201, 162, 39, 0.5);
}

.quebra-sim-divider span {
  width: 12px;
  height: 12px;
  background: var(--golden-primary);
  border-radius: 50%;
}

.quebra-sim-conclusao {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  color: var(--golden-primary);
}

/* SobreLivro Section */
.sobre-livro {
  background: linear-gradient(to bottom, var(--bg-warm-light), var(--bg-warm));
}

.sobre-livro-decoration {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
}

.sobre-livro-blob-1 {
  position: absolute;
  top: 33%;
  left: 40px;
  width: 280px;
  height: 280px;
  background: var(--golden-primary);
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.05;
}

.sobre-livro-blob-2 {
  position: absolute;
  bottom: 33%;
  right: 40px;
  width: 250px;
  height: 250px;
  background: var(--golden-light);
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.1;
}

.topicos-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 64px;
}

.topico-card {
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(4px);
  border-radius: 16px;
  padding: 24px;
  box-shadow: var(--shadow-golden);
  transition: var(--transition);
}

.topico-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-golden-lg);
}

.topico-card:hover .topico-icon {
  transform: scale(1.1);
}

.topico-icon {
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, rgba(201, 162, 39, 0.2), rgba(232, 213, 163, 0.3));
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  transition: var(--transition);
}

.topico-icon svg {
  width: 24px;
  height: 24px;
  color: var(--golden-dark);
}

.topico-title {
  font-family: var(--font-display);
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 8px;
}

.topico-desc {
  font-size: 0.875rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

.quote-box {
  position: relative;
  background: linear-gradient(to right, rgba(201, 162, 39, 0.1), rgba(201, 162, 39, 0.05), rgba(201, 162, 39, 0.1));
  border-radius: 16px;
  padding: 48px;
}

.quote-icon {
  position: absolute;
  top: 24px;
  left: 24px;
  width: 40px;
  height: 40px;
  color: var(--golden-primary);
  opacity: 0.3;
}

.quote-content {
  position: relative;
  z-index: 1;
  text-align: center;
}

.quote-text {
  font-family: var(--font-accent);
  font-size: 1.5rem;
  font-style: italic;
  color: var(--text-primary);
  line-height: 1.6;
  margin-bottom: 24px;
}

.quote-text span {
  color: var(--golden-dark);
  font-weight: 600;
}

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

.quote-author::before,
.quote-author::after {
  content: '';
  width: 40px;
  height: 1px;
  background: var(--golden-primary);
}

.quote-author cite {
  font-style: normal;
  font-weight: 500;
  color: var(--text-secondary);
}

/* Verdade Section */
.verdade {
  background: var(--bg-warm);
}

.verdade-decoration {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
}

.verdade-blob {
  position: absolute;
  top: 25%;
  right: 80px;
  width: 320px;
  height: 320px;
  background: var(--golden-primary);
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.05;
}

.verdade-icon-wrapper {
  width: 64px;
  height: 64px;
  background: rgba(201, 162, 39, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
}

.verdade-icon-wrapper svg {
  width: 32px;
  height: 32px;
  color: var(--golden-primary);
}

.verdade-box {
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(4px);
  border-radius: 16px;
  padding: 48px;
  box-shadow: var(--shadow-golden);
  margin-bottom: 40px;
}

.verdade-intro {
  font-size: 1.25rem;
  color: var(--text-primary);
  text-align: center;
  margin-bottom: 32px;
}

.verdade-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-bottom: 32px;
}

.verdade-divider::before,
.verdade-divider::after {
  content: '';
  width: 80px;
  height: 1px;
  background: rgba(201, 162, 39, 0.5);
}

.verdade-divider span {
  font-family: var(--font-accent);
  font-size: 1.25rem;
  font-style: italic;
  color: var(--golden-dark);
}

.verdade-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.verdade-item {
  display: flex;
  align-items: center;
  gap: 16px;
  background: linear-gradient(to right, rgba(201, 162, 39, 0.05), transparent);
  border-radius: 12px;
  padding: 16px 20px;
}

.verdade-check {
  width: 32px;
  height: 32px;
  background: var(--golden-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.verdade-check svg {
  width: 18px;
  height: 18px;
  color: var(--white);
}

.verdade-item span {
  font-size: 1.125rem;
  color: var(--text-primary);
  font-weight: 500;
}

.verdade-conclusao {
  font-family: var(--font-accent);
  font-size: 1.5rem;
  font-style: italic;
  color: var(--golden-dark);
  text-align: center;
}

/* Beneficios Section */
.beneficios {
  background: linear-gradient(to bottom, var(--bg-warm), var(--bg-warm-light));
}

.beneficios-decoration {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
}

.beneficios-blob-1 {
  position: absolute;
  top: 33%;
  left: 80px;
  width: 280px;
  height: 280px;
  background: var(--golden-primary);
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.05;
}

.beneficios-blob-2 {
  position: absolute;
  bottom: 25%;
  right: 80px;
  width: 250px;
  height: 250px;
  background: var(--golden-light);
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.1;
}

.beneficios-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.beneficio-card {
  position: relative;
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(4px);
  border-radius: 16px;
  padding: 24px;
  box-shadow: var(--shadow-golden);
  transition: var(--transition);
  overflow: hidden;
}

.beneficio-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-golden-lg);
}

.beneficio-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(201, 162, 39, 0.05), rgba(232, 213, 163, 0.1));
  opacity: 0;
  transition: var(--transition);
}

.beneficio-card:hover::before {
  opacity: 1;
}

.beneficio-content {
  position: relative;
  z-index: 1;
}

.beneficio-icon {
  width: 56px;
  height: 56px;
  background: linear-gradient(135deg, var(--golden-primary), var(--golden-dark));
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  box-shadow: var(--shadow-golden);
  transition: var(--transition);
}

.beneficio-card:hover .beneficio-icon {
  transform: scale(1.1);
}

.beneficio-icon svg {
  width: 28px;
  height: 28px;
  color: var(--white);
}

.beneficio-title {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 12px;
}

.beneficio-desc {
  color: var(--text-secondary);
  line-height: 1.6;
}

.beneficios-footer {
  text-align: center;
  margin-top: 48px;
}

.beneficios-footer p {
  font-family: var(--font-accent);
  font-size: 1.25rem;
  font-style: italic;
  color: var(--text-secondary);
}

/* MomentoVirada Section */
.momento-virada {
  background: var(--text-primary);
  position: relative;
  overflow: hidden;
}

.momento-virada-decoration {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.momento-virada-blob-1 {
  position: absolute;
  top: 25%;
  left: 25%;
  width: 380px;
  height: 380px;
  background: var(--golden-primary);
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.05;
}

.momento-virada-blob-2 {
  position: absolute;
  bottom: 25%;
  right: 25%;
  width: 250px;
  height: 250px;
  background: var(--golden-primary);
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.1;
}

.momento-virada-pattern {
  position: absolute;
  inset: 0;
  opacity: 0.1;
  background-image: radial-gradient(circle at 1px 1px, var(--golden-primary) 1px, transparent 0);
  background-size: 50px 50px;
}

.momento-virada .section-container {
  position: relative;
  z-index: 1;
  text-align: center;
}

.momento-virada .section-badge {
  background: rgba(201, 162, 39, 0.2);
  color: var(--golden-light);
}

.momento-virada .section-title {
  color: var(--white);
}

.momento-virada .section-title span {
  color: var(--golden-primary);
}

.momento-subtitle {
  font-size: 1.25rem;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 48px;
}

.momento-box {
  background: linear-gradient(to right, rgba(201, 162, 39, 0.2), rgba(201, 162, 39, 0.3), rgba(201, 162, 39, 0.2));
  border-radius: 16px;
  padding: 48px;
  border: 1px solid rgba(201, 162, 39, 0.3);
  margin-bottom: 32px;
}

.momento-main {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-bottom: 24px;
}

.momento-main svg {
  width: 32px;
  height: 32px;
  color: var(--golden-primary);
}

.momento-main p {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  color: var(--white);
}

.momento-list {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 16px 32px;
  color: rgba(255, 255, 255, 0.7);
}

.momento-item {
  display: flex;
  align-items: center;
  gap: 8px;
}

.momento-item svg {
  width: 20px;
  height: 20px;
  color: rgba(201, 162, 39, 0.7);
}

.momento-item span {
  font-family: var(--font-accent);
  font-size: 1.125rem;
  font-style: italic;
}

.momento-conclusao {
  font-family: var(--font-accent);
  font-size: 1.5rem;
  font-style: italic;
  color: var(--golden-light);
}

/* Fechamento Section */
.fechamento {
  background: linear-gradient(to bottom, var(--bg-warm-light), var(--bg-warm), var(--bg-warm-light));
}

.fechamento-decoration {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
}

.fechamento-blob-1 {
  position: absolute;
  top: 25%;
  left: 25%;
  width: 380px;
  height: 380px;
  background: var(--golden-primary);
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.1;
}

.fechamento-blob-2 {
  position: absolute;
  bottom: 25%;
  right: 25%;
  width: 280px;
  height: 280px;
  background: var(--golden-light);
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.15;
}

.fechamento-card {
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(4px);
  border-radius: 24px;
  padding: 64px;
  box-shadow: var(--shadow-golden-xl);
  text-align: center;
}

.fechamento-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, var(--golden-primary), var(--golden-dark));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 32px;
  box-shadow: var(--shadow-golden-lg);
}

.fechamento-icon svg {
  width: 40px;
  height: 40px;
  color: var(--white);
}

.fechamento-title {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 16px;
}

.fechamento-subtitle {
  font-family: var(--font-accent);
  font-size: 1.75rem;
  font-style: italic;
  color: var(--golden-dark);
  margin-bottom: 48px;
}

.fechamento-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 48px;
}

.fechamento-item {
  background: rgba(201, 162, 39, 0.05);
  border-radius: 12px;
  padding: 24px;
}

.fechamento-item svg {
  width: 32px;
  height: 32px;
  color: var(--golden-primary);
  margin-bottom: 12px;
}

.fechamento-item p {
  font-family: var(--font-display);
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--text-primary);
}

.fechamento-quote {
  background: linear-gradient(to right, rgba(201, 162, 39, 0.1), rgba(232, 213, 163, 0.2));
  border-radius: 16px;
  padding: 32px;
  margin-bottom: 40px;
}

.fechamento-quote p:first-child {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 8px;
}

.fechamento-quote p:last-child {
  font-family: var(--font-accent);
  font-size: 2rem;
  font-style: italic;
  color: var(--golden-dark);
}

.fechamento-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 24px 48px;
  background: linear-gradient(135deg, var(--golden-primary) 0%, var(--golden-dark) 100%);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 1.25rem;
  font-weight: 600;
  text-decoration: none;
  border-radius: 50px;
  box-shadow: var(--shadow-golden-xl);
  transition: var(--transition);
  border: none;
  cursor: pointer;
}

.fechamento-cta:hover {
  transform: scale(1.05);
  box-shadow: 0 16px 50px rgba(201, 162, 39, 0.35);
}

.fechamento-cta svg {
  width: 24px;
  height: 24px;
}

.fechamento-note {
  margin-top: 24px;
  font-size: 0.875rem;
  color: var(--text-light);
}

/* Footer */
.footer {
  text-align: center;
  padding: 64px 24px;
}

.footer-contact {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-bottom: 16px;
  color: var(--text-secondary);
}

.footer-contact svg {
  width: 20px;
  height: 20px;
  color: var(--golden-primary);
}

.footer-title {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 8px;
}

.footer-author {
  color: var(--text-secondary);
  margin-bottom: 24px;
}

.footer-divider {
  width: 128px;
  height: 1px;
  background: rgba(201, 162, 39, 0.3);
  margin: 0 auto 24px;
}

.footer-copy {
  font-size: 0.875rem;
  color: var(--text-light);
}

/* Responsive */
@media (max-width: 1024px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 48px;
    text-align: center;
  }
  
  .hero-content {
    text-align: center;
    order: 2;
  }
  
  .hero-image {
    order: 1;
  }
  
  .hero-title {
    font-size: 2.5rem;
  }
  
  .autoridade-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  
  .autoridade-content {
    text-align: center;
  }
  
  .autoridade-tags {
    justify-content: center;
  }
  
  .dores-grid,
  .topicos-grid,
  .beneficios-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .quebra-nao-list {
    grid-template-columns: 1fr;
  }
  
  .fechamento-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .nav-desktop {
    display: none;
  }
  
  .menu-toggle {
    display: flex;
  }
  
  .nav-mobile {
    display: flex;
  }
  
  .hero {
    padding: 100px 16px 60px;
  }
  
  .hero-title {
    font-size: 2rem;
  }
  
  .hero-subtitle {
    font-size: 1.125rem;
  }
  
  .section {
    padding: 60px 16px;
  }
  
  .section-title {
    font-size: 1.75rem;
  }
  
  .dores-grid,
  .topicos-grid,
  .beneficios-grid {
    grid-template-columns: 1fr;
  }
  
  .dor-card,
  .topico-card,
  .beneficio-card {
    padding: 24px;
  }
  
  .pior-parte,
  .quebra-sim,
  .verdade-box,
  .momento-box,
  .fechamento-card {
    padding: 32px 24px;
  }
  
  .fechamento-title {
    font-size: 1.75rem;
  }
  
  .fechamento-subtitle {
    font-size: 1.25rem;
  }
  
  .fechamento-quote p:last-child {
    font-size: 1.5rem;
  }
  
  .fechamento-cta {
    padding: 18px 32px;
    font-size: 1rem;
    width: 100%;
    justify-content: center;
  }
  
  .momento-main p {
    font-size: 1.5rem;
  }
  
  .momento-list {
    flex-direction: column;
    gap: 12px;
  }
  
  .author-photo-placeholder {
    width: 280px;
    height: 350px;
  }
}

@media (max-width: 480px) {
  .header-container {
    padding: 0 16px;
    height: 64px;
  }
  
  .logo {
    font-size: 1rem;
  }
  
  .hero-title {
    font-size: 1.75rem;
  }
  
  .book-cover {
    max-width: 280px;
  }
  
  .section-title {
    font-size: 1.5rem;
  }
  
  .quote-text {
    font-size: 1.125rem;
  }
  
  .fechamento-card {
    padding: 32px 20px;
  }
}
