/* =========================================
   VARIABLES & BRANDING GUIDES
========================================= */
:root {
  /* Brand Colors */
  --c-purple-dark: #200f24; /* Background base */
  --c-purple-deep: #401F4C;
  --c-purple-light: #5c306d;
  --c-green: #5B6B45;
  --c-gold: #E4B56C;
  --c-gold-light: #F2D59B;
  --c-offwhite: #E8E4D9;
  --c-black: #120711;

  /* Typography */
  --font-title: 'Cormorant Garamond', serif;
  --font-body: 'Raleway', sans-serif;
}

/* =========================================
   RESET & BASE
========================================= */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  background-color: var(--c-purple-dark);
  color: var(--c-offwhite);
  font-family: var(--font-body);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

::selection {
  background-color: var(--c-gold);
  color: var(--c-black);
}

/* Smooth scrollbar styling */
::-webkit-scrollbar {
  width: 8px;
}
::-webkit-scrollbar-track {
  background: var(--c-purple-dark);
}
::-webkit-scrollbar-thumb {
  background: var(--c-purple-deep);
  border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
  background: var(--c-gold);
}

/* Lenis CSS */
html.lenis, html.lenis body {
  height: auto;
}
.lenis.lenis-smooth {
  scroll-behavior: auto !important;
}
.lenis.lenis-smooth [data-lenis-prevent] {
  overscroll-behavior: contain;
}
.lenis.lenis-stopped {
  overflow: hidden;
}
.lenis.lenis-scrolling iframe {
  pointer-events: none;
}

/* =========================================
   UTILITIES
========================================= */
.container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
}

.mt-1 { margin-top: 1rem; }
.italic { font-style: italic; }

/* Premium Text Glow */
.highlight-text {
  background: linear-gradient(to right, var(--c-gold-light), var(--c-gold));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  text-shadow: 0 0 30px rgba(228, 181, 108, 0.4);
}

.highlight-gold {
  color: var(--c-gold);
  font-weight: 500;
}

/* =========================================
   COMPONENTS
========================================= */
/* Top Marquee */
.top-marquee {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 40px;
  background: rgba(18, 7, 17, 0.8);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  z-index: 150;
  overflow: hidden;
  display: flex;
  align-items: center;
  border-bottom: 1px solid rgba(228, 181, 108, 0.2);
  box-shadow: 0 10px 30px rgba(0,0,0,0.5);
}

.marquee-content {
  display: flex;
  white-space: nowrap;
  align-items: center;
  animation: marquee 25s linear infinite;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 10px;
  letter-spacing: 0.2em;
  color: var(--c-gold);
}

.marquee-content span {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 0 24px;
}

.marquee-content .divider {
  color: rgba(255,255,255,0.2);
  margin: 0 4px;
}

@keyframes marquee {
  0% { transform: translateX(0%); }
  100% { transform: translateX(-50%); }
}

/* =========================================
   HERO SECTION
========================================= */
.hero {
  position: relative;
  min-height: 100vh;
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-top: 80px; /* offset for header */
  padding-bottom: 120px; /* avoid overlap with marquees */
  overflow: hidden;
}

/* Background Effects */
.hero-bg-effects {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}

.universe-img-hero {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.15;
  mix-blend-mode: screen;
  z-index: 0;
}

.glow-orb {
  position: absolute;
  border-radius: 50%;
  mix-blend-mode: screen;
  filter: blur(140px);
}

.purple-orb {
  width: 60vw;
  height: 60vh;
  top: 10%;
  right: -10%;
  background: rgba(92, 48, 109, 0.4);
  animation: pulse-slow 8s infinite alternate;
}

.gold-orb {
  width: 40vw;
  height: 40vh;
  top: 30%;
  left: -10%;
  background: rgba(228, 181, 108, 0.15);
}

.green-orb {
  width: 50vw;
  height: 50vh;
  bottom: -20%;
  right: 10%;
  background: rgba(91, 107, 69, 0.2);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 70% 30%, transparent 0%, var(--c-purple-dark) 80%);
  z-index: 1;
}

@keyframes pulse-slow {
  0% { opacity: 0.6; transform: scale(0.9); }
  100% { opacity: 1; transform: scale(1.1); }
}

/* Hero Content */
.hero-container {
  display: flex;
  flex-direction: column-reverse;
  align-items: center;
  position: relative;
  z-index: 10;
  gap: 40px;
}

@media (min-width: 1024px) {
  .hero-container {
    flex-direction: row;
    justify-content: space-between;
    gap: 60px;
  }
}

.hero-content {
  width: 100%;
  z-index: 30;
}

@media (min-width: 1024px) {
  .hero-content {
    width: 58%;
  }
}

.hero-badge {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 24px;
}

.badge-line {
  width: 32px;
  height: 1px;
  background: var(--c-gold);
}

.hero-badge span {
  color: var(--c-gold);
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 11px;
  font-weight: 700;
}

.hero-title {
  font-family: var(--font-title);
  font-size: clamp(32px, 8.5vw, 40px);
  line-height: 1.15;
  font-weight: 500;
  margin-bottom: 24px;
  color: #fff;
}

@media (min-width: 768px) {
  .hero-title { font-size: 50px; line-height: 1.1; }
}

@media (min-width: 1024px) {
  .hero-title { font-size: 54px; }
}

@media (min-width: 1280px) {
  .hero-title { font-size: 64px; }
}

.hero-text-block {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  color: rgba(255,255,255,0.8);
  font-weight: 300;
  max-width: 600px;
  margin-bottom: 32px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

@media (min-width: 768px) {
  .hero-text-block { font-size: 18px; }
}

/* Button CTA */
.btn-primary {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(to right, var(--c-gold), var(--c-gold-light));
  color: var(--c-purple-dark);
  font-family: var(--font-body);
  font-weight: 700;
  padding: 12px 32px; /* Reduzido de 16px para deixar menos gordo */
  border-radius: 50px;
  text-decoration: none;
  overflow: hidden;
  transition: all 0.3s ease;
  box-shadow: 0 0 20px rgba(228, 181, 108, 0.3);
  border: 1px solid rgba(255, 255, 255, 0.4);
}

.btn-primary:hover {
  transform: scale(1.02);
  box-shadow: 0 0 40px rgba(228, 181, 108, 0.6);
}

.btn-text {
  position: relative;
  z-index: 10;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 13px;
}

.btn-shine {
  position: absolute;
  top: 0;
  left: -100%;
  width: 50%;
  height: 100%;
  background: linear-gradient(to right, transparent, rgba(255,255,255,0.5), transparent);
  transform: skewX(30deg);
  animation: shine 3s ease-in-out infinite;
  z-index: 0;
}

@keyframes shine {
  0% { left: -100%; }
  20% { left: 200%; }
  100% { left: 200%; }
}

/* Hero Image */
.hero-image {
  position: relative;
  width: 100%;
  z-index: 10;
  display: flex;
  justify-content: center;
  margin-top: 20px;
}

@media (min-width: 1024px) {
  .hero-image {
    width: 42%;
    justify-content: flex-end;
    margin-top: 0;
    height: 85vh;
  }
}

.expert-img {
  width: 100%;
  max-width: 550px;
  transform: scale(1.15); /* Aumenta a imagem no mobile */
  transform-origin: bottom center;
  object-fit: cover;
  /* Efeitos premium para foto (ideal para imagens recortadas) */
  filter: drop-shadow(0 20px 40px rgba(228, 181, 108, 0.15));
  -webkit-mask-image: linear-gradient(to top, transparent 0%, black 15%);
  mask-image: linear-gradient(to top, transparent 0%, black 15%);
  /* Remover borda dura e box-shadow de bloco */
  border: none;
  box-shadow: none;
}

@media (min-width: 1024px) {
  .expert-img {
    height: 100%;
    object-position: top center;
    transform: scale(1); /* Reseta no desktop */
  }
}

/* Diagonal Marquees in Hero */
.diagonal-marquees {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  z-index: 20;
  pointer-events: none;
  height: 120px;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0.7;
}

.diag-marquee-1 {
  position: absolute;
  width: 120%;
  height: 40px;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(4px);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  transform: rotate(-2deg) translateY(8px);
  box-shadow: 0 0 20px rgba(0,0,0,0.2);
}

.diag-content-1 {
  display: flex;
  white-space: nowrap;
  animation: marquee 30s linear infinite;
  color: rgba(255,255,255,0.4);
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 0.2em;
}

.diag-content-1 span { padding: 0 20px; }

.diag-marquee-2 {
  position: absolute;
  width: 120%;
  height: 40px;
  background: rgba(228, 181, 108, 0.1);
  backdrop-filter: blur(8px);
  border-top: 1px solid rgba(228, 181, 108, 0.3);
  border-bottom: 1px solid rgba(228, 181, 108, 0.3);
  display: flex;
  align-items: center;
  transform: rotate(2deg) translateY(-8px);
  box-shadow: 0 0 30px rgba(228, 181, 108, 0.15);
}

.diag-content-2 {
  display: flex;
  white-space: nowrap;
  animation: marquee 25s linear infinite reverse;
  color: var(--c-gold-light);
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 0.2em;
}

.diag-content-2 span { padding: 0 20px; }

/* =========================================
   HIGHLIGHT SECTION (LAW OF ATTRACTION)
========================================= */
.highlight-section {
  padding: 140px 0;
  position: relative;
  overflow: hidden;
  border-top: 1px solid rgba(228, 181, 108, 0.1);
  border-bottom: 1px solid rgba(228, 181, 108, 0.1);
}

.highlight-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}

.universe-img-3 {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.3;
  mix-blend-mode: screen;
}

.highlight-overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle, rgba(64,31,76,0.6) 0%, var(--c-purple-dark) 90%);
}

.highlight-container {
  position: relative;
  z-index: 10;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.highlight-quote {
  max-width: 900px;
  line-height: 1.4;
  color: rgba(255, 255, 255, 0.9);
  font-style: italic;
}

.highlight-quote .highlight-gold {
  color: var(--c-gold);
  text-shadow: 0 0 30px rgba(228, 181, 108, 0.4);
}

/* =========================================
   DISCOVER SECTION (O QUE VOCÊ VAI DESCOBRIR)
========================================= */
.sec-reveal-container {
  border-top: 1px solid rgba(228, 181, 108, 0.15);
  position: relative;
}

.discover-section {
  padding: 100px 0;
  background-color: var(--c-purple-dark);
  position: relative;
  overflow: hidden;
}

.discover-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}

.purple-orb-2 {
  position: absolute;
  width: 70vw;
  height: 70vh;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: rgba(92, 48, 109, 0.2);
  filter: blur(150px);
  border-radius: 50%;
}

.discover-container {
  position: relative;
  z-index: 10;
}

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

.section-badge {
  display: inline-block;
  color: var(--c-gold);
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  margin-bottom: 16px;
}

.section-title {
  font-family: var(--font-title);
  font-size: 36px;
  color: #fff;
  margin-bottom: 16px;
}

@media (min-width: 768px) {
  .section-title { font-size: 48px; }
}

.section-subtitle {
  font-size: 20px;
  font-family: var(--font-title);
  margin-bottom: 24px;
}

.section-text {
  font-size: 16px;
  color: rgba(255,255,255,0.7);
}

.discover-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}

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

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

.discover-card {
  background: linear-gradient(145deg, rgba(255,255,255,0.06) 0%, rgba(64, 31, 76, 0.2) 100%);
  border: 1px solid rgba(255,255,255,0.05);
  border-top: 1px solid rgba(255,255,255,0.15); /* Reflexo de vidro na borda superior */
  border-left: 1px solid rgba(255,255,255,0.1);
  border-radius: 20px;
  padding: 40px 32px;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  box-shadow: 0 10px 30px -10px rgba(0, 0, 0, 0.5);
}

.discover-card:hover {
  border-color: rgba(228, 181, 108, 0.3);
  transform: translateY(-8px);
  box-shadow: 0 20px 40px -10px rgba(228, 181, 108, 0.15), 0 0 20px rgba(92, 48, 109, 0.5);
}

.discover-card::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 50%;
  height: 100%;
  background: linear-gradient(to right, transparent, rgba(255,255,255,0.05), transparent);
  transform: skewX(-25deg);
  transition: all 0.7s ease;
  z-index: 1;
}

.discover-card:hover::after {
  left: 200%;
}

.discover-card::before {
  content: '';
  position: absolute;
  top: -40px;
  right: -40px;
  width: 120px;
  height: 120px;
  background: radial-gradient(circle, rgba(228, 181, 108, 0.15) 0%, transparent 70%);
  border-radius: 50%;
  transition: all 0.5s ease;
  z-index: 0;
}

.discover-card:hover::before {
  transform: scale(1.6);
  background: radial-gradient(circle, rgba(228, 181, 108, 0.25) 0%, transparent 70%);
}

.card-icon {
  font-size: 36px;
  color: var(--c-gold);
  margin-bottom: 24px;
  position: relative;
  z-index: 2;
  filter: drop-shadow(0 0 10px rgba(228, 181, 108, 0.3));
}

.discover-card p {
  font-size: 16px;
  line-height: 1.6;
  color: rgba(255,255,255,0.85);
  font-weight: 300;
  position: relative;
  z-index: 2;
}

/* =========================================
   PIVOT SECTION (A RAIZ DO PROBLEMA)
========================================= */
.pivot-section {
  padding: 120px 0;
  background-color: var(--c-purple-deep);
  position: relative;
  overflow: hidden;
  border-top: 1px solid rgba(228, 181, 108, 0.1);
  box-shadow: inset 0 20px 50px rgba(0,0,0,0.3);
}

.pivot-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}

.universe-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.15;
  mix-blend-mode: screen;
}

.pivot-overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle, transparent 0%, var(--c-purple-deep) 80%);
}

.pivot-container {
  position: relative;
  z-index: 10;
}

.pivot-content {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.text-center { text-align: center; }
.mx-auto { margin-left: auto; margin-right: auto; }
.mt-8 { margin-top: 32px; }
.mb-6 { margin-bottom: 24px; }
.max-w-3xl { max-width: 800px; }

.font-title { font-family: var(--font-title); }
.text-4xl { font-size: 32px; }
.text-5xl { font-size: 40px; }
.text-3xl { font-size: 28px; }
.leading-relaxed { line-height: 1.6; }

@media (min-width: 768px) {
  .text-4xl { font-size: 40px; }
  .text-5xl { font-size: 56px; }
  .text-3xl { font-size: 36px; }
}

.pivot-steps {
  display: flex;
  flex-direction: column;
  gap: 12px;
  font-size: 28px;
  font-family: var(--font-title);
  margin-top: 24px;
}

@media (min-width: 768px) {
  .pivot-steps {
    flex-direction: row;
    gap: 40px;
    justify-content: center;
  }
}

.pivot-text {
  font-size: 18px;
  font-weight: 300;
  color: rgba(255,255,255,0.8);
  letter-spacing: 0.05em;
}

.divider-line {
  width: 2px;
  height: 80px;
  background: linear-gradient(to bottom, transparent, var(--c-gold), transparent);
  margin: 40px auto;
  opacity: 0.6;
}

.pivot-desc {
  font-size: 18px;
  line-height: 1.8;
  color: rgba(255,255,255,0.7);
  font-weight: 300;
}

/* =========================================
   CHAPTERS SECTION
========================================= */
.chapters-section {
  padding: 120px 0;
  background-color: var(--c-purple-dark);
}

.chapters-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  max-width: 1000px;
  margin: 0 auto;
}

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

.chapter-item {
  display: flex;
  align-items: flex-start;
  gap: 24px;
  background: rgba(255,255,255,0.02);
  border: 1px solid rgba(228, 181, 108, 0.1);
  border-radius: 16px;
  padding: 32px;
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
  animation: border-pulse 4s infinite alternate;
}

@keyframes border-pulse {
  0% { 
    box-shadow: 0 0 10px rgba(228, 181, 108, 0.05), inset 0 0 10px rgba(228, 181, 108, 0.02); 
    border-color: rgba(228, 181, 108, 0.1); 
  }
  100% { 
    box-shadow: 0 0 25px rgba(228, 181, 108, 0.2), inset 0 0 20px rgba(228, 181, 108, 0.1); 
    border-color: rgba(228, 181, 108, 0.35); 
  }
}

.chapter-item:hover {
  background: rgba(255,255,255,0.05);
  border-color: var(--c-gold);
  transform: translateY(-5px);
  box-shadow: 0 0 40px rgba(228, 181, 108, 0.5), inset 0 0 30px rgba(228, 181, 108, 0.2);
  animation: none;
}

.chapter-number {
  font-family: var(--font-title);
  font-size: 48px;
  font-weight: 700;
  color: var(--c-gold);
  opacity: 0.9;
  line-height: 0.8;
  text-shadow: 0 0 15px rgba(228, 181, 108, 0.2);
}

.chapter-content {
  flex: 1;
}

.chapter-title {
  font-family: var(--font-title);
  font-size: 24px;
  color: #fff;
  margin-bottom: 12px;
  line-height: 1.3;
}

.chapter-desc {
  font-size: 15px;
  line-height: 1.6;
  color: rgba(255,255,255,0.7);
  font-weight: 300;
}

/* =========================================
   AUDIENCE SECTION (PARA QUEM É)
========================================= */
.audience-section {
  padding: 120px 0;
  background-color: var(--c-purple-deep);
  position: relative;
  overflow: hidden;
  border-top: 1px solid rgba(228, 181, 108, 0.1);
  box-shadow: inset 0 20px 50px rgba(0,0,0,0.3);
}

.audience-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}

.universe-img-2 {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.3;
  mix-blend-mode: screen;
}

.audience-overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle, transparent 10%, var(--c-purple-deep) 90%);
}

.audience-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  z-index: 10;
}

.audience-content {
  width: 100%;
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
  background: rgba(64, 31, 76, 0.4);
  padding: 48px;
  border-radius: 24px;
  border: 1px solid rgba(228, 181, 108, 0.1);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.3);
}

.audience-subtitle {
  font-family: var(--font-title);
  font-size: 24px;
  color: var(--c-gold);
  margin-bottom: 40px;
  font-style: italic;
  font-weight: 500;
}

.audience-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 16px;
  text-align: left; /* Keep list items left aligned for readability */
}

.audience-list li {
  display: flex;
  align-items: center;
  gap: 16px;
  font-size: 18px;
  color: rgba(255,255,255,0.85);
  font-weight: 300;
  padding: 20px 24px;
  background: rgba(255,255,255,0.02);
  border: 1px solid rgba(255,255,255,0.05);
  border-radius: 12px;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.audience-list li:hover {
  background: rgba(228, 181, 108, 0.05);
  border-color: rgba(228, 181, 108, 0.3);
  transform: translateY(-4px);
  box-shadow: 0 10px 20px rgba(0,0,0,0.2);
}

.audience-list i {
  color: var(--c-gold);
  font-size: 24px;
  filter: drop-shadow(0 0 8px rgba(228, 181, 108, 0.4));
}

/* =========================================
   TAKEAWAY SECTION (O RESULTADO)
========================================= */
.takeaway-section {
  padding: 120px 0;
  background-color: var(--c-purple-dark);
  position: relative;
  overflow: hidden;
  border-top: 1px solid rgba(228, 181, 108, 0.1);
}

.takeaway-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}

.takeaway-container {
  position: relative;
  z-index: 10;
}

.takeaway-content {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.takeaway-highlights {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin: 40px 0;
}

@media (min-width: 768px) {
  .takeaway-highlights {
    flex-direction: row;
    gap: 60px;
    justify-content: center;
  }
}

.highlight-word {
  font-family: var(--font-title);
  font-size: 40px;
  font-weight: 700;
  color: var(--c-gold);
  text-shadow: 0 0 30px rgba(228, 181, 108, 0.4);
  position: relative;
  transition: all 0.5s ease;
}

.highlight-word:hover {
  transform: scale(1.05);
  text-shadow: 0 0 50px rgba(228, 181, 108, 0.8);
}

@media (min-width: 768px) {
  .highlight-word { font-size: 56px; }
  .highlight-word:not(:last-child)::after {
    content: '·';
    position: absolute;
    right: -35px;
    color: rgba(255,255,255,0.15);
  }
}

.takeaway-desc {
  font-size: 22px;
  line-height: 1.6;
  color: #fff;
  max-width: 600px;
  font-weight: 300;
}

/* =========================================
   AUTHOR SECTION (QUEM SOU EU)
========================================= */
.author-section {
  padding: 120px 0;
  background-color: var(--c-purple-dark);
  position: relative;
  overflow: hidden;
  border-top: 1px solid rgba(228, 181, 108, 0.1);
}

.author-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 48px;
}

@media (min-width: 1024px) {
  .author-container {
    flex-direction: row;
    gap: 80px;
    align-items: center;
  }
}

.author-image-wrapper {
  position: relative;
  width: 100%;
  max-width: 400px;
}

@media (min-width: 1024px) {
  .author-image-wrapper {
    width: 45%;
  }
}

.author-photo {
  width: 100%;
  border-radius: 20px;
  position: relative;
  z-index: 10;
  filter: drop-shadow(0 20px 40px rgba(0,0,0,0.4));
  border: 1px solid rgba(255,255,255,0.05);
  object-fit: cover;
}

.author-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 120%;
  height: 120%;
  background: radial-gradient(circle, rgba(228, 181, 108, 0.15) 0%, transparent 70%);
  z-index: 0;
  border-radius: 50%;
}

.author-content {
  width: 100%;
}

@media (min-width: 1024px) {
  .author-content {
    width: 55%;
  }
}

.author-text {
  font-size: 18px;
  line-height: 1.8;
  color: rgba(255,255,255,0.8);
  font-weight: 300;
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 24px;
}

/* =========================================
   FINAL SECTION
========================================= */
.final-section {
  padding: 140px 0;
  background-color: var(--c-purple-deep);
  position: relative;
  overflow: hidden;
  border-top: 1px solid rgba(228, 181, 108, 0.1);
  box-shadow: inset 0 20px 50px rgba(0,0,0,0.3);
}

.final-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}

.final-container {
  position: relative;
  z-index: 10;
}

.final-content {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.final-text {
  font-size: 20px;
  font-weight: 300;
  color: rgba(255,255,255,0.8);
  letter-spacing: 0.05em;
  margin-bottom: 8px;
}

.final-desc {
  font-size: 20px;
  line-height: 1.8;
  color: rgba(255,255,255,0.9);
  font-weight: 300;
}

.gold-orb-3 {
  position: absolute;
  width: 60vw;
  height: 60vh;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: radial-gradient(circle, rgba(228, 181, 108, 0.15) 0%, transparent 70%);
  border-radius: 50%;
  filter: blur(100px);
}

/* =========================================
   FOOTER
========================================= */
.site-footer {
  padding: 40px 0;
  background-color: var(--c-purple-dark);
  border-top: 1px solid rgba(228, 181, 108, 0.1);
  text-align: center;
  position: relative;
  z-index: 10;
}

.footer-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.footer-brand {
  font-family: var(--font-title);
  font-size: 24px;
  color: var(--c-gold);
  font-weight: 500;
  letter-spacing: 0.05em;
  margin-bottom: 8px;
}

.footer-links {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 14px;
}

.footer-links a {
  color: rgba(255,255,255,0.6);
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: var(--c-gold);
}

.footer-dot {
  color: rgba(255,255,255,0.2);
}

.footer-copy {
  font-size: 12px;
  color: rgba(255,255,255,0.4);
  margin-top: 16px;
}

@media (min-width: 768px) {
  .footer-container {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }
  .footer-brand { margin-bottom: 0; }
  .footer-copy { margin-top: 0; }
}

/* =========================================
   BACK TO TOP BUTTON
========================================= */
.back-to-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 50px;
  height: 50px;
  background-color: var(--c-gold);
  color: var(--c-purple-deep);
  border: none;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  text-decoration: none;
  font-size: 24px;
  cursor: pointer;
  z-index: 99999;
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0,0,0,0.5);
}

.back-to-top:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 25px rgba(228, 181, 108, 0.4);
}
