body {
  font-family: "DM Sans", "Plus Jakarta Sans", sans-serif;
  font-size: 16px;
  color: var(--text-body);
  background-color: var(--bg-primary);
  overflow-x: hidden;
}

h1, h2, h3 {
  font-family: "Playfair Display", "DM Serif Display", serif;
  font-weight: 700;
  color: var(--text-title);
  line-height: 1.2;
}

h1 { font-size: clamp(2rem, 5vw, 3.2rem); }
h2 { font-size: clamp(1.75rem, 4vw, 2.5rem); }
h3 { font-size: clamp(1.25rem, 3vw, 1.5rem); }

p {
  line-height: 1.7;
  color: var(--text-body);
}

.container {
  width: 100%;
  max-width: var(--container-width);
  margin: 0 auto;
  padding: var(--container-padding);
}

section {
  padding: var(--section-padding);
  position: relative;
}

.section-title {
  text-align: center;
  margin-bottom: 16px;
}

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

.text-gold { color: var(--gold-primary); }
.text-blue { color: var(--blue-electric); }
.text-white { color: var(--text-white); }

/* Decoracoes de fundo */
.bg-decoration {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
  z-index: 0;
}

.bg-decoration--blue {
  background: var(--blue-glow);
  opacity: 0.4;
}

.bg-decoration--gold {
  background: var(--gold-light);
  opacity: 0.4;
}

/* Scroll animation base */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

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

/* Wave dividers */
.wave-divider {
  width: 100%;
  overflow: hidden;
  line-height: 0;
}

.wave-divider svg {
  width: 100%;
  height: 60px;
  display: block;
}

/* Video Modal */
.video-modal {
  position: fixed;
  inset: 0;
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.video-modal.active {
  opacity: 1;
  visibility: visible;
}

.video-modal__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.85);
}

.video-modal__content {
  position: relative;
  width: 90%;
  max-width: 800px;
  z-index: 1;
  transform: scale(0.9);
  transition: transform 0.3s ease;
}

.video-modal.active .video-modal__content {
  transform: scale(1);
}

.video-modal__close {
  position: absolute;
  top: -40px;
  right: 0;
  color: white;
  font-size: 2rem;
  cursor: pointer;
  background: none;
  border: none;
  line-height: 1;
}

.video-modal__container {
  position: relative;
  padding-bottom: 56.25%;
  background: var(--bg-dark);
  border-radius: 12px;
  overflow: hidden;
}

.video-modal__placeholder {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
}

.video-modal__placeholder svg {
  width: 64px;
  height: 64px;
}

.video-modal__placeholder p {
  color: var(--text-muted);
  font-size: 1.1rem;
}

@media (max-width: 1024px) {
  :root {
    --section-padding: 80px 0;
  }
}

@media (max-width: 768px) {
  :root {
    --section-padding: 60px 0;
    --container-padding: 0 16px;
  }
}
