/* ═══════════════════════════════════════════════════════════════
   CLEA NASCIMENTO — Premium Gospel Artist Website
   Stylesheet Principal — Versão Animada
   ═══════════════════════════════════════════════════════════════ */

/* ─── CSS CUSTOM PROPERTIES (Design Tokens) ─── */
:root {
  /* Cores */
  --gold:        #C5A880;
  --gold-light:  #D4BC9A;
  --gold-dark:   #9E8059;
  --gold-glow:   rgba(197, 168, 128, 0.25);
  --gold-border: rgba(197, 168, 128, 0.35);

  --white:       #FFFFFF;
  --off-white:   #FDFBF7;
  --cream:       #F5F0E8;
  --sand:        #EDE8E0;
  --beige:       #E6DFD4;

  --black:       #1A1A1A;
  --dark:        #2A2A2A;
  --text:        #4A4A4A;
  --text-light:  #7A7A7A;
  --text-muted:  #A0A0A0;

  /* Tipografia */
  --font-heading: 'Playfair Display', Georgia, 'Times New Roman', serif;
  --font-body:    'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

  /* Tamanhos */
  --fs-xs:   0.75rem;
  --fs-sm:   0.875rem;
  --fs-base: 1rem;
  --fs-md:   1.125rem;
  --fs-lg:   1.25rem;
  --fs-xl:   1.5rem;
  --fs-2xl:  2rem;
  --fs-3xl:  2.5rem;
  --fs-4xl:  3.25rem;
  --fs-5xl:  4rem;

  /* Espaçamentos */
  --space-xs:  0.5rem;
  --space-sm:  1rem;
  --space-md:  1.5rem;
  --space-lg:  2rem;
  --space-xl:  3rem;
  --space-2xl: 5rem;
  --space-3xl: 7rem;
  --space-4xl: 10rem;

  /* Layout */
  --container-max: 1200px;
  --header-height: 80px;
  --border-radius: 8px;
  --border-radius-lg: 16px;

  /* Transições */
  --ease-out: cubic-bezier(0.25, 1, 0.5, 1);
  --ease-in-out: cubic-bezier(0.4, 0, 0.2, 1);
  --ease-spring: cubic-bezier(0.175, 0.885, 0.32, 1.275);
  --transition-fast: 0.25s var(--ease-out);
  --transition-base: 0.5s var(--ease-out);
  --transition-slow: 0.8s var(--ease-out);
  --transition-xslow: 1.2s var(--ease-out);

  /* Sombras */
  --shadow-sm:  0 2px 8px rgba(0,0,0,0.06);
  --shadow-md:  0 8px 30px rgba(0,0,0,0.08);
  --shadow-lg:  0 15px 50px rgba(0,0,0,0.12);
  --shadow-gold: 0 8px 30px rgba(197, 168, 128, 0.3);
}


/* ─── RESET & BASE ─── */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  scroll-padding-top: var(--header-height);
}

body {
  font-family: var(--font-body);
  font-size: var(--fs-base);
  font-weight: 400;
  line-height: 1.7;
  color: var(--text);
  background-color: var(--off-white);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }

a {
  color: inherit;
  text-decoration: none;
  transition: color var(--transition-fast);
}

a:focus-visible, button:focus-visible, input:focus-visible,
select:focus-visible, textarea:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
}

button { border: none; background: none; cursor: pointer; font-family: inherit; }
ul, ol { list-style: none; }

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


/* ─── LAYOUT ─── */
.container {
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--space-lg);
}

.section { padding: var(--space-3xl) 0; position: relative; }
.section--cream { background-color: var(--cream); }


/* ─── TYPOGRAPHY ─── */
.section__label {
  display: inline-block;
  font-family: var(--font-body);
  font-size: var(--fs-xs);
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: var(--space-sm);
}

.section__title {
  font-family: var(--font-heading);
  font-size: var(--fs-3xl);
  font-weight: 500;
  line-height: 1.2;
  color: var(--black);
  margin-bottom: var(--space-lg);
}

.section__header {
  text-align: center;
  margin-bottom: var(--space-2xl);
}

/* Título com animação de reveal palavra por palavra */
.section__title .word {
  display: inline-block;
  overflow: hidden;
  vertical-align: top;
}

.section__title .word-inner {
  display: inline-block;
  transform: translateY(100%);
  transition: transform 0.6s var(--ease-out);
}

.section__title.revealed .word-inner {
  transform: translateY(0);
}


/* ─── BUTTONS ─── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-body);
  font-size: var(--fs-sm);
  font-weight: 500;
  letter-spacing: 0.04em;
  padding: 0.875rem 2rem;
  border-radius: 50px;
  transition: all var(--transition-base);
  cursor: pointer;
  white-space: nowrap;
  position: relative;
  overflow: hidden;
}

/* Efeito ripple nos botões */
.btn::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  transition: width 0.6s ease, height 0.6s ease;
}

.btn:active::before {
  width: 300px;
  height: 300px;
}

.btn--gold {
  background-color: var(--gold);
  color: var(--white);
  border: 1px solid var(--gold);
}

.btn--gold:hover {
  background-color: var(--gold-dark);
  border-color: var(--gold-dark);
  box-shadow: var(--shadow-gold);
  transform: translateY(-3px) scale(1.02);
}

.btn--outline {
  background: transparent;
  color: var(--black);
  border: 1px solid var(--gold-border);
}

.btn--outline:hover {
  background-color: var(--gold);
  color: var(--white);
  border-color: var(--gold);
  transform: translateY(-3px) scale(1.02);
}

.btn--sm { padding: 0.625rem 1.5rem; font-size: var(--fs-xs); }
.btn--lg { padding: 1.125rem 2.5rem; font-size: var(--fs-base); }
.btn--full { width: 100%; justify-content: center; }


/* ═══════════════════════════════════════════
   1. PRELOADER
   ═══════════════════════════════════════════ */
.preloader {
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background-color: var(--off-white);
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.8s var(--ease-out), visibility 0.8s var(--ease-out);
}

.preloader.hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.preloader__content {
  text-align: center;
  position: relative;
}

.preloader__glow {
  position: absolute;
  top: 50%; left: 50%;
  width: 150px; height: 150px;
  background: radial-gradient(circle, var(--gold-glow) 0%, transparent 70%);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  animation: preloaderGlow 2s ease-in-out infinite;
}

.preloader__name {
  font-family: var(--font-heading);
  font-size: var(--fs-3xl);
  font-weight: 500;
  color: var(--black);
  letter-spacing: 0.02em;
  position: relative;
  animation: preloaderFadeIn 0.8s ease-out forwards;
  opacity: 0;
}

.preloader__tagline {
  display: block;
  font-size: var(--fs-xs);
  font-weight: 500;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  margin-top: var(--space-xs);
  animation: preloaderFadeIn 0.8s ease-out 0.3s forwards;
  opacity: 0;
}

/* Barra de progresso do preloader */
.preloader__bar {
  width: 120px;
  height: 2px;
  background: var(--sand);
  margin: 1.5rem auto 0;
  border-radius: 2px;
  overflow: hidden;
}

.preloader__bar-fill {
  width: 0;
  height: 100%;
  background: var(--gold);
  border-radius: 2px;
  animation: preloaderBar 1.2s ease-out forwards;
}

@keyframes preloaderGlow {
  0%, 100% { opacity: 0.3; transform: translate(-50%, -50%) scale(1); }
  50%      { opacity: 1;   transform: translate(-50%, -50%) scale(1.5); }
}

@keyframes preloaderFadeIn {
  from { opacity: 0; transform: translateY(15px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes preloaderBar {
  from { width: 0; }
  to   { width: 100%; }
}


/* ═══════════════════════════════════════════
   2. HEADER
   ═══════════════════════════════════════════ */
.header {
  position: fixed;
  top: 0; left: 0;
  width: 100%;
  height: var(--header-height);
  z-index: 1000;
  transition: all var(--transition-base);
  background: transparent;
}

.header.scrolled {
  background: rgba(253, 251, 247, 0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 1px 0 var(--gold-border);
  height: 70px;
}

/* Esconder header no scroll para baixo */
.header.header--hidden {
  transform: translateY(-100%);
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}

.header__logo {
  font-family: var(--font-heading);
  font-size: var(--fs-lg);
  font-weight: 500;
  color: var(--black);
  letter-spacing: 0.02em;
  z-index: 10;
  transition: transform var(--transition-base);
}

.header__logo:hover {
  transform: scale(1.05);
}

.header__logo span { font-weight: 400; }

.header__nav { display: none; }

.header__menu {
  display: flex;
  align-items: center;
  gap: var(--space-lg);
}

.header__link {
  font-size: var(--fs-sm);
  font-weight: 400;
  color: var(--text);
  letter-spacing: 0.02em;
  position: relative;
  padding: 0.25rem 0;
}

.header__link::after {
  content: '';
  position: absolute;
  bottom: 0; left: 50%;
  width: 0; height: 1.5px;
  background-color: var(--gold);
  transition: width 0.4s var(--ease-out), left 0.4s var(--ease-out);
}

.header__link:hover::after,
.header__link.active::after {
  width: 100%;
  left: 0;
}

.header__link:hover,
.header__link.active { color: var(--black); }

.header__actions {
  display: flex;
  align-items: center;
  gap: var(--space-md);
}

.header__social {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 38px; height: 38px;
  border-radius: 50%;
  color: var(--text);
  transition: all var(--transition-fast);
}

.header__social:hover {
  color: var(--gold);
  background-color: var(--gold-glow);
  transform: rotate(8deg) scale(1.1);
}

/* Hamburger */
.header__hamburger {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 40px; height: 40px;
  gap: 5px;
  z-index: 1010;
}

.hamburger__line {
  display: block;
  width: 22px; height: 1.5px;
  background-color: var(--black);
  transition: all 0.4s var(--ease-spring);
  transform-origin: center;
}

.header__hamburger.active .hamburger__line:nth-child(1) {
  transform: translateY(6.5px) rotate(45deg);
}
.header__hamburger.active .hamburger__line:nth-child(2) {
  opacity: 0; transform: scaleX(0);
}
.header__hamburger.active .hamburger__line:nth-child(3) {
  transform: translateY(-6.5px) rotate(-45deg);
}


/* ─── MOBILE MENU ─── */
.mobile-menu {
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  z-index: 999;
  pointer-events: none;
}

.mobile-menu.open { pointer-events: all; }

.mobile-menu__overlay {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: rgba(26, 26, 26, 0.5);
  opacity: 0;
  transition: opacity var(--transition-base);
  backdrop-filter: blur(4px);
}

.mobile-menu.open .mobile-menu__overlay { opacity: 1; }

.mobile-menu__panel {
  position: absolute;
  top: 0; right: 0;
  width: 100%; max-width: 420px; height: 100%;
  background-color: var(--off-white);
  transform: translateX(100%);
  transition: transform 0.6s var(--ease-spring);
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: var(--space-2xl);
}

.mobile-menu.open .mobile-menu__panel { transform: translateX(0); }

.mobile-menu__list {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

.mobile-menu__link {
  font-family: var(--font-heading);
  font-size: var(--fs-2xl);
  font-weight: 400;
  color: var(--black);
  display: inline-block;
  opacity: 0;
  transform: translateX(40px);
  transition: all var(--transition-base);
  position: relative;
}

.mobile-menu__link::after {
  content: '';
  position: absolute;
  bottom: -2px; left: 0;
  width: 0; height: 2px;
  background: var(--gold);
  transition: width 0.4s var(--ease-out);
}

.mobile-menu__link:hover::after { width: 60px; }
.mobile-menu__link:hover { color: var(--gold); }

.mobile-menu.open .mobile-menu__link {
  opacity: 1;
  transform: translateX(0);
}

.mobile-menu.open .mobile-menu__list li:nth-child(1) .mobile-menu__link { transition-delay: 0.1s; }
.mobile-menu.open .mobile-menu__list li:nth-child(2) .mobile-menu__link { transition-delay: 0.15s; }
.mobile-menu.open .mobile-menu__list li:nth-child(3) .mobile-menu__link { transition-delay: 0.2s; }
.mobile-menu.open .mobile-menu__list li:nth-child(4) .mobile-menu__link { transition-delay: 0.25s; }
.mobile-menu.open .mobile-menu__list li:nth-child(5) .mobile-menu__link { transition-delay: 0.3s; }
.mobile-menu.open .mobile-menu__list li:nth-child(6) .mobile-menu__link { transition-delay: 0.35s; }
.mobile-menu.open .mobile-menu__list li:nth-child(7) .mobile-menu__link { transition-delay: 0.4s; }

.mobile-menu__footer {
  margin-top: var(--space-2xl);
  display: flex;
  gap: var(--space-md);
}

.mobile-menu__social {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px; height: 48px;
  border-radius: 50%;
  border: 1px solid var(--gold-border);
  color: var(--gold);
  transition: all 0.3s var(--ease-spring);
}

.mobile-menu__social:hover {
  background-color: var(--gold);
  color: var(--white);
  transform: scale(1.15) rotate(5deg);
}


/* ═══════════════════════════════════════════
   3. HERO SECTION
   ═══════════════════════════════════════════ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero__bg {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
}

.hero__bg-img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center 20%;
  animation: heroZoom 20s ease-in-out infinite alternate;
}

@keyframes heroZoom {
  0%   { transform: scale(1) translateY(0); }
  100% { transform: scale(1.08) translateY(-1%); }
}

.hero__overlay {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: linear-gradient(
    135deg,
    rgba(253, 251, 247, 0.94) 0%,
    rgba(253, 251, 247, 0.78) 40%,
    rgba(253, 251, 247, 0.3) 70%,
    rgba(253, 251, 247, 0.1) 100%
  );
}

/* Partículas douradas flutuantes */
.hero__particles {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  pointer-events: none;
  overflow: hidden;
  z-index: 1;
}

.hero__particle {
  position: absolute;
  width: 4px; height: 4px;
  background: var(--gold);
  border-radius: 50%;
  opacity: 0;
  animation: particleFloat 8s ease-in-out infinite;
}

.hero__particle:nth-child(1) { left: 10%; top: 20%; animation-delay: 0s; animation-duration: 7s; }
.hero__particle:nth-child(2) { left: 25%; top: 60%; animation-delay: 1.5s; animation-duration: 9s; width: 3px; height: 3px; }
.hero__particle:nth-child(3) { left: 50%; top: 40%; animation-delay: 3s; animation-duration: 8s; width: 5px; height: 5px; }
.hero__particle:nth-child(4) { left: 70%; top: 70%; animation-delay: 2s; animation-duration: 10s; width: 3px; height: 3px; }
.hero__particle:nth-child(5) { left: 85%; top: 30%; animation-delay: 4s; animation-duration: 7.5s; }
.hero__particle:nth-child(6) { left: 40%; top: 80%; animation-delay: 1s; animation-duration: 9.5s; width: 6px; height: 6px; }
.hero__particle:nth-child(7) { left: 60%; top: 15%; animation-delay: 3.5s; animation-duration: 8.5s; width: 3px; height: 3px; }
.hero__particle:nth-child(8) { left: 15%; top: 50%; animation-delay: 5s; animation-duration: 11s; width: 4px; height: 4px; }

@keyframes particleFloat {
  0%   { opacity: 0; transform: translateY(0) scale(0); }
  20%  { opacity: 0.6; transform: translateY(-30px) scale(1); }
  80%  { opacity: 0.3; transform: translateY(-120px) scale(0.8); }
  100% { opacity: 0; transform: translateY(-180px) scale(0); }
}

.hero__content {
  position: relative;
  z-index: 2;
  padding-top: var(--header-height);
}

.hero__text {
  max-width: 620px;
  padding: var(--space-2xl) 0;
}

.hero__label {
  display: inline-block;
  font-size: var(--fs-xs);
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: var(--space-md);
  position: relative;
  padding-left: 2.5rem;
}

.hero__label::before {
  content: '';
  position: absolute;
  left: 0; top: 50%;
  width: 0; height: 1px;
  background-color: var(--gold);
  transition: width 1s var(--ease-out) 0.3s;
}

.hero__label.visible::before { width: 2rem; }

/* Título da hero com reveal por linha */
.hero__title {
  font-family: var(--font-heading);
  font-size: var(--fs-4xl);
  font-weight: 500;
  line-height: 1.15;
  color: var(--black);
  margin-bottom: var(--space-md);
}

.hero__title .line {
  display: block;
  overflow: hidden;
}

.hero__title .line-inner {
  display: block;
  transform: translateY(110%);
  transition: transform 0.8s var(--ease-out);
}

.hero__title.visible .line-inner { transform: translateY(0); }
.hero__title.visible .line:nth-child(2) .line-inner { transition-delay: 0.1s; }
.hero__title.visible .line:nth-child(3) .line-inner { transition-delay: 0.2s; }

.hero__desc {
  font-size: var(--fs-md);
  line-height: 1.8;
  color: var(--text);
  margin-bottom: var(--space-xl);
  max-width: 520px;
}

.hero__buttons {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-sm);
  margin-bottom: var(--space-xl);
}

.hero__badges {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-md);
}

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  font-size: var(--fs-xs);
  color: var(--text-light);
  font-weight: 400;
  transition: color var(--transition-fast);
}

.hero__badge:hover { color: var(--gold); }

.hero__badge svg { color: var(--gold); flex-shrink: 0; }

/* Scroll indicator */
.hero__scroll-indicator {
  position: absolute;
  bottom: 2rem; left: 50%;
  transform: translateX(-50%);
  z-index: 2;
}

.hero__scroll-indicator span {
  display: block;
  width: 24px; height: 40px;
  border: 2px solid var(--gold-border);
  border-radius: 12px;
  position: relative;
}

.hero__scroll-indicator span::after {
  content: '';
  position: absolute;
  top: 6px; left: 50%;
  width: 3px; height: 8px;
  background: var(--gold);
  border-radius: 2px;
  transform: translateX(-50%);
  animation: scrollMouse 2s ease-in-out infinite;
}

@keyframes scrollMouse {
  0%   { opacity: 1; transform: translateX(-50%) translateY(0); }
  50%  { opacity: 0.3; transform: translateX(-50%) translateY(14px); }
  100% { opacity: 1; transform: translateX(-50%) translateY(0); }
}


/* ═══════════════════════════════════════════
   4. SOBRE MIM
   ═══════════════════════════════════════════ */
.about__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-2xl);
  align-items: center;
}

.about__image-wrap { position: relative; }

.about__image-frame {
  position: relative;
  overflow: hidden;
  border-radius: var(--border-radius-lg);
  aspect-ratio: 3 / 4;
  max-width: 450px;
  margin: 0 auto;
}

.about__image {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 1.2s var(--ease-out);
  transform: scale(1.1);
}

/* Reveal animation: imagem desliza de trás de um clip */
.about__image-frame.revealed .about__image {
  transform: scale(1);
}

.about__image-frame::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: var(--off-white);
  z-index: 2;
  transform-origin: right;
  transition: transform 1s var(--ease-out);
  transform: scaleX(1);
}

.about__image-frame.revealed::before {
  transform: scaleX(0);
}

.about__image-accent {
  position: absolute;
  bottom: -12px; right: -12px;
  width: 50%; height: 50%;
  border: 1px solid var(--gold-border);
  border-radius: var(--border-radius-lg);
  z-index: -1;
  opacity: 0;
  transform: translate(10px, 10px);
  transition: all 0.8s var(--ease-out) 0.5s;
}

.about__image-frame.revealed + .about__image-accent,
.about__image-wrap.visible .about__image-accent {
  opacity: 1;
  transform: translate(0, 0);
}

.about__text p {
  margin-bottom: var(--space-md);
  font-size: var(--fs-base);
  line-height: 1.9;
}

.about__quote {
  font-family: var(--font-heading);
  font-size: var(--fs-xl);
  font-style: italic;
  color: var(--black);
  line-height: 1.5;
  padding-left: var(--space-lg);
  border-left: 2px solid var(--gold);
  margin-bottom: var(--space-sm);
  position: relative;
}

.about__quote-mark {
  font-family: var(--font-heading);
  font-size: 4rem;
  color: var(--gold-glow);
  line-height: 0;
  position: absolute;
  top: 1.5rem; left: -0.5rem;
}

.about__signature {
  font-size: var(--fs-sm);
  color: var(--gold);
  font-weight: 500;
  letter-spacing: 0.05em;
}


/* ═══════════════════════════════════════════
   5. GALERIA
   ═══════════════════════════════════════════ */
.gallery__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-sm);
}

.gallery__item {
  position: relative;
  overflow: hidden;
  border-radius: var(--border-radius);
  cursor: pointer;
  aspect-ratio: 1 / 1;
}

.gallery__item--tall { grid-row: span 2; aspect-ratio: auto; }
.gallery__item--wide { grid-column: span 2; aspect-ratio: 16 / 9; }

.gallery__img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.8s var(--ease-out), filter 0.6s var(--ease-out);
}

.gallery__hover {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: linear-gradient(135deg, rgba(197,168,128,0.4), rgba(26,26,26,0.5));
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity var(--transition-base);
  color: var(--white);
}

.gallery__hover svg {
  transform: scale(0.5) rotate(-90deg);
  transition: transform 0.5s var(--ease-spring);
}

.gallery__item:hover .gallery__img {
  transform: scale(1.1);
}

.gallery__item:hover .gallery__hover { opacity: 1; }

.gallery__item:hover .gallery__hover svg {
  transform: scale(1) rotate(0deg);
}


/* ═══════════════════════════════════════════
   6. VÍDEOS
   ═══════════════════════════════════════════ */
.videos__featured { margin-bottom: var(--space-xl); }

.video-card {
  border-radius: var(--border-radius-lg);
  overflow: hidden;
  background: var(--white);
  box-shadow: var(--shadow-sm);
  cursor: pointer;
  transition: all 0.5s var(--ease-out);
}

.video-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-6px);
}

.video-card__thumb {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16 / 9;
}

.video-card--main .video-card__thumb { aspect-ratio: 21 / 9; }

.video-card__thumb img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.8s var(--ease-out);
}

.video-card:hover .video-card__thumb img { transform: scale(1.08); }

.video-card__overlay {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: rgba(26, 26, 26, 0.35);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background var(--transition-base);
}

.video-card:hover .video-card__overlay {
  background: rgba(26, 26, 26, 0.5);
}

.video-card__play {
  width: 64px; height: 64px;
  border-radius: 50%;
  background: var(--gold);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.5s var(--ease-spring);
  box-shadow: 0 0 0 0 rgba(197, 168, 128, 0.4);
  animation: playPulse 2.5s ease-in-out infinite;
}

@keyframes playPulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(197, 168, 128, 0.4); }
  50%      { box-shadow: 0 0 0 20px rgba(197, 168, 128, 0); }
}

.video-card:hover .video-card__play {
  transform: scale(1.15);
}

.video-card--main .video-card__play { width: 80px; height: 80px; }

.video-card__play svg { margin-left: 3px; }

.video-card__info { padding: var(--space-md) var(--space-lg); }

.video-card__info h3 {
  font-family: var(--font-heading);
  font-size: var(--fs-md);
  font-weight: 500;
  color: var(--black);
  margin-bottom: 0.25rem;
}

.video-card__info p { font-size: var(--fs-sm); color: var(--text-light); }

.videos__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: var(--space-lg);
}


/* ═══════════════════════════════════════════
   7. MÚSICAS
   ═══════════════════════════════════════════ */
.music__featured {
  display: flex;
  flex-direction: column;
  gap: var(--space-xl);
  background: var(--white);
  border-radius: var(--border-radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  margin-bottom: var(--space-2xl);
  transition: box-shadow var(--transition-base);
}

.music__featured:hover { box-shadow: var(--shadow-lg); }

.music__featured-cover {
  width: 100%;
  max-height: 400px;
  overflow: hidden;
}

.music__featured-cover img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 1s var(--ease-out);
}

.music__featured:hover .music__featured-cover img { transform: scale(1.05); }

.music__featured-info { padding: 0 var(--space-lg) var(--space-lg); }

.music__featured-badge {
  display: inline-block;
  font-size: var(--fs-xs);
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: var(--space-sm);
}

.music__featured-title {
  font-family: var(--font-heading);
  font-size: var(--fs-2xl);
  font-weight: 500;
  color: var(--black);
  margin-bottom: var(--space-sm);
}

.music__featured-desc {
  color: var(--text);
  line-height: 1.7;
  margin-bottom: var(--space-lg);
  max-width: 480px;
}

.music__featured-actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-sm);
}

/* Faixas */
.music__list {
  display: flex;
  flex-direction: column;
}

.music__track {
  display: flex;
  align-items: center;
  gap: var(--space-md);
  padding: var(--space-md) var(--space-lg);
  border-bottom: 1px solid var(--sand);
  transition: all var(--transition-fast);
  border-radius: var(--border-radius);
  position: relative;
}

.music__track::before {
  content: '';
  position: absolute;
  left: 0; top: 0;
  width: 3px; height: 0;
  background: var(--gold);
  border-radius: 3px;
  transition: height 0.4s var(--ease-out);
}

.music__track:hover {
  background-color: var(--white);
  transform: translateX(8px);
  box-shadow: var(--shadow-sm);
}

.music__track:hover::before { height: 100%; }

.music__track:last-child { border-bottom: none; }

.music__track-number {
  font-family: var(--font-heading);
  font-size: var(--fs-lg);
  color: var(--gold);
  font-weight: 500;
  min-width: 32px;
  transition: transform var(--transition-fast);
}

.music__track:hover .music__track-number { transform: scale(1.2); }

.music__track-info { flex: 1; min-width: 0; }

.music__track-name {
  font-size: var(--fs-base);
  font-weight: 500;
  color: var(--black);
  margin-bottom: 0.125rem;
}

.music__track-artist { font-size: var(--fs-sm); color: var(--text-light); }

.music__track-actions {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  flex-shrink: 0;
}

.music__track-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px; height: 36px;
  border-radius: 50%;
  color: var(--text-light);
  transition: all 0.3s var(--ease-spring);
}

.music__track-btn:hover {
  color: var(--gold);
  background-color: var(--gold-glow);
  transform: scale(1.2);
}


/* ═══════════════════════════════════════════
   8. AGENDA
   ═══════════════════════════════════════════ */
.schedule__empty {
  text-align: center;
  padding: var(--space-2xl) 0;
}

.schedule__empty-icon {
  color: var(--gold);
  margin-bottom: var(--space-md);
  animation: calendarFloat 3s ease-in-out infinite;
}

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

.schedule__empty-text {
  font-family: var(--font-heading);
  font-size: var(--fs-xl);
  color: var(--black);
  margin-bottom: var(--space-xs);
}

.schedule__empty-sub { font-size: var(--fs-sm); color: var(--text-light); }

.schedule__event {
  display: flex;
  align-items: center;
  gap: var(--space-lg);
  padding: var(--space-lg);
  border: 1px solid var(--sand);
  border-radius: var(--border-radius-lg);
  margin-bottom: var(--space-md);
  transition: all 0.4s var(--ease-out);
  background: var(--white);
}

.schedule__event:hover {
  border-color: var(--gold-border);
  box-shadow: var(--shadow-md);
  transform: translateX(8px);
}

.schedule__date {
  text-align: center;
  min-width: 80px;
  padding: var(--space-sm);
  border-right: 1px solid var(--sand);
}

.schedule__day {
  display: block;
  font-family: var(--font-heading);
  font-size: var(--fs-2xl);
  font-weight: 600;
  color: var(--gold);
  line-height: 1;
}

.schedule__month {
  display: block;
  font-size: var(--fs-xs);
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text);
  margin-top: 0.25rem;
}

.schedule__year { display: block; font-size: var(--fs-xs); color: var(--text-light); }

.schedule__info { flex: 1; }

.schedule__event-name {
  font-family: var(--font-heading);
  font-size: var(--fs-md);
  font-weight: 500;
  color: var(--black);
  margin-bottom: 0.25rem;
}

.schedule__event-location {
  font-size: var(--fs-sm);
  color: var(--text-light);
  display: flex;
  align-items: center;
  gap: 0.375rem;
}

.schedule__event-location svg { color: var(--gold); flex-shrink: 0; }

.schedule__cta {
  margin-top: var(--space-2xl);
  padding: var(--space-xl);
  background: var(--white);
  border: 1px solid var(--gold-border);
  border-radius: var(--border-radius-lg);
  text-align: center;
  transition: all var(--transition-base);
}

.schedule__cta:hover {
  box-shadow: var(--shadow-gold);
  border-color: var(--gold);
}

.schedule__cta h3 {
  font-family: var(--font-heading);
  font-size: var(--fs-xl);
  font-weight: 500;
  color: var(--black);
  margin-bottom: var(--space-lg);
  max-width: 520px;
  margin-left: auto;
  margin-right: auto;
}


/* ═══════════════════════════════════════════
   9. CTA DE IMPACTO
   ═══════════════════════════════════════════ */
.cta-impact {
  position: relative;
  padding: var(--space-4xl) 0;
  overflow: hidden;
}

.cta-impact__bg {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
}

.cta-impact__bg-img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 20s ease-in-out;
}

/* Parallax do background */
.cta-impact.in-view .cta-impact__bg-img {
  transform: scale(1.1);
}

.cta-impact__overlay {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: linear-gradient(
    135deg,
    rgba(26, 26, 26, 0.9) 0%,
    rgba(42, 42, 42, 0.82) 100%
  );
}

.cta-impact__content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
}

.cta-impact__title {
  font-family: var(--font-heading);
  font-size: var(--fs-3xl);
  font-weight: 500;
  color: var(--white);
  line-height: 1.25;
  margin-bottom: var(--space-md);
}

.cta-impact__text {
  font-size: var(--fs-md);
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.7;
  margin-bottom: var(--space-xl);
}


/* ═══════════════════════════════════════════
   10. CONTATO
   ═══════════════════════════════════════════ */
.contact__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-2xl);
}

.contact__desc {
  font-size: var(--fs-base);
  color: var(--text);
  line-height: 1.7;
  margin-bottom: var(--space-xl);
}

.contact__channels {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

.contact__channel {
  display: flex;
  align-items: center;
  gap: var(--space-md);
  padding: var(--space-md);
  border: 1px solid var(--sand);
  border-radius: var(--border-radius-lg);
  transition: all 0.4s var(--ease-out);
}

.contact__channel:hover {
  border-color: var(--gold);
  background-color: var(--white);
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}

.contact__channel-icon {
  width: 48px; height: 48px;
  border-radius: 50%;
  background: var(--gold-glow);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  flex-shrink: 0;
  transition: all 0.4s var(--ease-spring);
}

.contact__channel:hover .contact__channel-icon {
  background: var(--gold);
  color: var(--white);
  transform: rotate(10deg) scale(1.1);
}

.contact__channel-label {
  display: block;
  font-size: var(--fs-xs);
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-light);
}

.contact__channel-value {
  display: block;
  font-size: var(--fs-base);
  font-weight: 500;
  color: var(--black);
}

/* Formulário */
.contact__form {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

.form__row {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-md);
}

.form__label {
  display: block;
  font-size: var(--fs-sm);
  font-weight: 500;
  color: var(--black);
  margin-bottom: var(--space-xs);
}

.form__input {
  width: 100%;
  padding: 0.875rem var(--space-md);
  font-family: var(--font-body);
  font-size: var(--fs-base);
  color: var(--black);
  background-color: var(--white);
  border: 1px solid var(--sand);
  border-radius: var(--border-radius);
  transition: all 0.3s var(--ease-out);
  appearance: none;
  -webkit-appearance: none;
}

.form__input:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 4px var(--gold-glow);
  outline: none;
  transform: translateY(-2px);
}

.form__input::placeholder { color: var(--text-muted); }

.form__select {
  background-image: url("data:image/svg+xml,%3Csvg width='12' height='8' viewBox='0 0 12 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1.5L6 6.5L11 1.5' stroke='%237A7A7A' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 2.5rem;
  cursor: pointer;
}

.form__textarea { resize: vertical; min-height: 120px; }

/* Feedback de sucesso */
.contact__success {
  text-align: center;
  padding: var(--space-2xl);
}

.contact__success-icon {
  color: var(--gold);
  margin-bottom: var(--space-md);
  animation: successBounce 0.6s var(--ease-spring);
}

@keyframes successBounce {
  0%   { transform: scale(0) rotate(-30deg); opacity: 0; }
  50%  { transform: scale(1.2) rotate(5deg); }
  100% { transform: scale(1) rotate(0); opacity: 1; }
}

.contact__success h3 {
  font-family: var(--font-heading);
  font-size: var(--fs-xl);
  color: var(--black);
  margin-bottom: var(--space-xs);
  animation: fadeInUp 0.5s var(--ease-out) 0.2s both;
}

.contact__success p {
  color: var(--text-light);
  animation: fadeInUp 0.5s var(--ease-out) 0.4s both;
}


/* ═══════════════════════════════════════════
   11. FOOTER
   ═══════════════════════════════════════════ */
.footer {
  background-color: var(--black);
  padding: var(--space-2xl) 0 var(--space-lg);
}

.footer__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-xl);
  text-align: center;
  padding-bottom: var(--space-xl);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer__logo {
  font-family: var(--font-heading);
  font-size: var(--fs-xl);
  font-weight: 500;
  color: var(--white);
  transition: transform var(--transition-base);
}

.footer__logo:hover { transform: scale(1.05); }
.footer__logo span { font-weight: 400; color: var(--gold-light); }

.footer__tagline {
  font-size: var(--fs-sm);
  color: rgba(255, 255, 255, 0.5);
  margin-top: var(--space-xs);
}

.footer__links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: var(--space-sm) var(--space-lg);
}

.footer__links a {
  font-size: var(--fs-sm);
  color: rgba(255, 255, 255, 0.5);
  transition: all var(--transition-fast);
  position: relative;
}

.footer__links a::after {
  content: '';
  position: absolute;
  bottom: -2px; left: 0;
  width: 0; height: 1px;
  background: var(--gold);
  transition: width 0.3s var(--ease-out);
}

.footer__links a:hover { color: var(--gold); }
.footer__links a:hover::after { width: 100%; }

.footer__social { display: flex; gap: var(--space-md); }

.footer__social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px; height: 44px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.5);
  transition: all 0.4s var(--ease-spring);
}

.footer__social a:hover {
  color: var(--gold);
  border-color: var(--gold);
  background: rgba(197, 168, 128, 0.1);
  transform: translateY(-4px) scale(1.1);
}

.footer__bottom {
  padding-top: var(--space-lg);
  text-align: center;
}

.footer__bottom p {
  font-size: var(--fs-xs);
  color: rgba(255, 255, 255, 0.35);
}


/* ═══════════════════════════════════════════
   LIGHTBOX
   ═══════════════════════════════════════════ */
.lightbox {
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: rgba(0, 0, 0, 0.95);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition-base);
  backdrop-filter: blur(10px);
}

.lightbox.active { opacity: 1; visibility: visible; }

.lightbox__close {
  position: absolute;
  top: 1.5rem; right: 1.5rem;
  font-size: 2rem;
  color: var(--white);
  width: 48px; height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: all 0.3s var(--ease-spring);
  z-index: 10;
}

.lightbox__close:hover {
  background: rgba(255, 255, 255, 0.15);
  transform: rotate(90deg);
}

.lightbox__prev, .lightbox__next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 48px; height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: var(--white);
  transition: all 0.3s var(--ease-spring);
  z-index: 10;
}

.lightbox__prev { left: 1rem; }
.lightbox__next { right: 1rem; }

.lightbox__prev:hover, .lightbox__next:hover {
  background: rgba(255, 255, 255, 0.15);
  transform: translateY(-50%) scale(1.15);
}

.lightbox__content { max-width: 90vw; max-height: 85vh; }

.lightbox__img {
  max-width: 100%;
  max-height: 85vh;
  object-fit: contain;
  border-radius: var(--border-radius);
  transform: scale(0.85) rotate(-2deg);
  transition: transform 0.5s var(--ease-spring);
}

.lightbox.active .lightbox__img {
  transform: scale(1) rotate(0deg);
}


/* ═══════════════════════════════════════════
   VIDEO MODAL
   ═══════════════════════════════════════════ */
.video-modal {
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: rgba(0, 0, 0, 0.95);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition-base);
  backdrop-filter: blur(10px);
}

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

.video-modal__close {
  position: absolute;
  top: 1.5rem; right: 1.5rem;
  font-size: 2rem;
  color: var(--white);
  width: 48px; height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: all 0.3s var(--ease-spring);
  z-index: 10;
}

.video-modal__close:hover {
  background: rgba(255, 255, 255, 0.15);
  transform: rotate(90deg);
}

.video-modal__content {
  width: 90vw;
  max-width: 960px;
  aspect-ratio: 16 / 9;
  transform: scale(0.9);
  transition: transform 0.5s var(--ease-spring);
}

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

.video-modal__player {
  width: 100%; height: 100%;
  border-radius: var(--border-radius);
  background: var(--black);
}

.video-modal__iframe {
  width: 100%; height: 100%;
  border-radius: var(--border-radius);
}


/* ═══════════════════════════════════════════
   WHATSAPP FLUTUANTE
   ═══════════════════════════════════════════ */
.whatsapp-float {
  position: fixed;
  bottom: 2rem; right: 2rem;
  width: 56px; height: 56px;
  background: #25D366;
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.35);
  z-index: 900;
  transition: all 0.4s var(--ease-spring);
  animation: whatsappEntry 0.8s var(--ease-spring) 2s both;
}

.whatsapp-float:hover {
  transform: scale(1.15) rotate(10deg);
  box-shadow: 0 8px 30px rgba(37, 211, 102, 0.5);
}

/* Pulso infinito */
.whatsapp-float::after {
  content: '';
  position: absolute;
  width: 100%; height: 100%;
  border-radius: 50%;
  background: #25D366;
  z-index: -1;
  animation: whatsappPulse 2.5s ease-in-out infinite;
}

@keyframes whatsappPulse {
  0%, 100% { transform: scale(1); opacity: 0.4; }
  50%      { transform: scale(1.4); opacity: 0; }
}

@keyframes whatsappEntry {
  from { transform: scale(0) rotate(-90deg); opacity: 0; }
  to   { transform: scale(1) rotate(0); opacity: 1; }
}


/* ═══════════════════════════════════════════
   ANIMAÇÕES DE SCROLL
   ═══════════════════════════════════════════ */
.anim-fade {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s var(--ease-out), transform 0.8s var(--ease-out);
}

.anim-fade.visible {
  opacity: 1;
  transform: translateY(0);
}

.anim-slide-right {
  opacity: 0;
  transform: translateX(-60px);
  transition: opacity 0.9s var(--ease-out), transform 0.9s var(--ease-out);
}

.anim-slide-right.visible {
  opacity: 1;
  transform: translateX(0);
}

.anim-slide-left {
  opacity: 0;
  transform: translateX(60px);
  transition: opacity 0.9s var(--ease-out), transform 0.9s var(--ease-out);
}

.anim-slide-left.visible {
  opacity: 1;
  transform: translateX(0);
}

/* Scale up animation */
.anim-scale {
  opacity: 0;
  transform: scale(0.85);
  transition: opacity 0.8s var(--ease-out), transform 0.8s var(--ease-out);
}

.anim-scale.visible {
  opacity: 1;
  transform: scale(1);
}

/* Reveal clip animation */
.anim-reveal {
  clip-path: inset(0 100% 0 0);
  transition: clip-path 1s var(--ease-out);
}

.anim-reveal.visible {
  clip-path: inset(0 0 0 0);
}

/* Parallax effect */
.parallax-bg {
  will-change: transform;
  transition: transform 0.1s linear;
}

/* Decorative animated line */
.section__line {
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  margin: var(--space-lg) auto;
  transition: width 1.2s var(--ease-out);
}

.section__line.visible {
  width: 80px;
}

@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(25px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* Stagger children animation */
.stagger-children > * {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.5s var(--ease-out), transform 0.5s var(--ease-out);
}

.stagger-children.visible > *:nth-child(1) { transition-delay: 0s; opacity: 1; transform: translateY(0); }
.stagger-children.visible > *:nth-child(2) { transition-delay: 0.08s; opacity: 1; transform: translateY(0); }
.stagger-children.visible > *:nth-child(3) { transition-delay: 0.16s; opacity: 1; transform: translateY(0); }
.stagger-children.visible > *:nth-child(4) { transition-delay: 0.24s; opacity: 1; transform: translateY(0); }
.stagger-children.visible > *:nth-child(5) { transition-delay: 0.32s; opacity: 1; transform: translateY(0); }
.stagger-children.visible > *:nth-child(6) { transition-delay: 0.4s; opacity: 1; transform: translateY(0); }
.stagger-children.visible > *:nth-child(7) { transition-delay: 0.48s; opacity: 1; transform: translateY(0); }
.stagger-children.visible > *:nth-child(8) { transition-delay: 0.56s; opacity: 1; transform: translateY(0); }
.stagger-children.visible > *:nth-child(9) { transition-delay: 0.64s; opacity: 1; transform: translateY(0); }


/* ═══════════════════════════════════════════
   RESPONSIVO
   ═══════════════════════════════════════════ */
@media (min-width: 768px) {
  .section__title { font-size: var(--fs-3xl); }
  .hero__title { font-size: var(--fs-4xl); }

  .about__grid { grid-template-columns: 5fr 6fr; gap: var(--space-2xl); }
  .gallery__grid { grid-template-columns: repeat(3, 1fr); gap: var(--space-md); }
  .contact__grid { grid-template-columns: 1fr 1fr; gap: var(--space-2xl); }
  .form__row { grid-template-columns: 1fr 1fr; }

  .music__featured { flex-direction: row; }
  .music__featured-cover { width: 320px; flex-shrink: 0; max-height: none; }
  .music__featured-info {
    padding: var(--space-xl);
    display: flex; flex-direction: column; justify-content: center;
  }

  .footer__inner {
    flex-direction: row;
    justify-content: space-between;
    text-align: left;
  }
}

@media (min-width: 1024px) {
  .header__nav { display: block; }
  .header__hamburger { display: none; }
  .header__actions .header__cta { display: inline-flex; }
  .hero__title { font-size: var(--fs-5xl); }

  .hero__overlay {
    background: linear-gradient(
      to right,
      rgba(253, 251, 247, 0.96) 0%,
      rgba(253, 251, 247, 0.85) 35%,
      rgba(253, 251, 247, 0.4) 60%,
      rgba(253, 251, 247, 0.05) 100%
    );
  }

  .about__grid { grid-template-columns: 5fr 7fr; gap: var(--space-3xl); }
  .cta-impact__title { font-size: var(--fs-4xl); }
}

@media (min-width: 1280px) {
  .container { padding: 0 var(--space-xl); }
  .hero__text { max-width: 680px; }
}

@media (max-width: 480px) {
  :root {
    --fs-3xl: 2rem;
    --fs-4xl: 2.25rem;
    --fs-5xl: 2.5rem;
  }

  .container { padding: 0 var(--space-md); }
  .section { padding: var(--space-2xl) 0; }
  .hero__buttons { flex-direction: column; }
  .hero__badges { flex-direction: column; gap: var(--space-sm); }

  .gallery__grid { grid-template-columns: 1fr 1fr; gap: var(--space-xs); }
  .gallery__item--wide { grid-column: span 2; }
  .gallery__item--tall { grid-row: span 1; aspect-ratio: 1; }

  .schedule__event { flex-direction: column; text-align: center; }
  .schedule__date { border-right: none; border-bottom: 1px solid var(--sand); padding-bottom: var(--space-sm); }

  .video-card--main .video-card__thumb { aspect-ratio: 16 / 9; }

  .whatsapp-float { bottom: 1.25rem; right: 1.25rem; width: 50px; height: 50px; }
}

@media (max-width: 1023px) {
  .header__actions .header__cta { display: none; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  html { scroll-behavior: auto; }
}

@media print {
  .header, .preloader, .whatsapp-float, .hero__scroll-indicator { display: none !important; }
  body { color: #000; background: #fff; }
}
