/* ========================================
   POESIS - Eventos Musicais
   ======================================== */

/* --- FONTS --- */
@font-face {
  font-family: 'Anybody';
  src: url('../siteassets/fonts/Anybody-Variable.ttf') format('truetype');
  font-weight: 100 900;
  font-stretch: 50% 150%;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Anybody';
  src: url('../siteassets/fonts/Anybody-Italic-Variable.ttf') format('truetype');
  font-weight: 100 900;
  font-stretch: 50% 150%;
  font-style: italic;
  font-display: swap;
}

/* --- VARIABLES --- */
:root {
  --color-bg-dark: #1d1c11;
  --color-bg-cream: #f8f3ec;
  --color-bg-light: #f1ece7;
  --color-text-light: #f8f3ec;
  --color-text-dark: #1d1c11;
  --color-cta: #925027;
  --color-cta-hover: #a35e30;
  --color-accent: #8d7b66;
  --color-gold: #b8860b;

  --font-display: 'Anybody', sans-serif;
  --font-body: 'Inter', sans-serif;

  --max-width: 1200px;
  --header-height: 80px;
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  background-color: var(--color-bg-dark);
  color: var(--color-text-light);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

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

a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style: none;
}

button {
  border: none;
  background: none;
  cursor: pointer;
  font-family: inherit;
}

/* --- CONTAINER --- */
.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 40px;
}

.container--center {
  text-align: center;
}

/* ========================================
   HEADER / NAV
   ======================================== */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: none;
  transition: background 0.3s ease;
}

.header--scrolled {
  background: none;
}

.nav {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 40px;
  height: var(--header-height);
  display: flex;
  align-items: center;
  justify-content: center;
}

.nav__bar {
  display: flex;
  align-items: center;
  width: 100%;
  background: rgba(248, 243, 236, 0.06);
  border: 1px solid rgba(248, 243, 236, 0.1);
  border-radius: 300px;
  padding: 10px 10px 10px 28px;
  backdrop-filter: blur(8px);
  transition: background 0.4s ease, border-color 0.4s ease;
}

.nav__logo-img {
  height: 46px;
  width: auto;
  transition: filter 0.4s ease;
}

.nav__divider {
  width: 1px;
  height: 28px;
  background: rgba(248, 243, 236, 0.2);
  flex-shrink: 0;
  margin: 0 16px;
  transition: background 0.4s ease;
}

.nav__menu {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex: 1;
}

.nav__link {
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 400;
  color: var(--color-text-light);
  letter-spacing: 1px;
  transition: color 0.3s ease;
  text-transform: uppercase;
}

.nav__link:hover {
  color: var(--color-cta);
}

.nav__cta {
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 400;
  color: #fff;
  background-color: var(--color-cta);
  padding: 10px 32px;
  border-radius: 300px;
  letter-spacing: 1px;
  transition: background-color 0.3s ease, transform 0.2s ease;
  text-transform: uppercase;
}

.nav__cta:hover {
  background-color: var(--color-cta-hover);
  transform: scale(1.03);
}

/* Nav dark mode (over light sections) */
.header--on-light .nav__bar {
  background: rgba(29, 28, 17, 0.08);
  border-color: rgba(29, 28, 17, 0.12);
}

.header--on-light .nav__link {
  color: var(--color-text-dark);
}

.header--on-light .nav__link:hover {
  color: var(--color-cta);
}

.header--on-light .nav__divider {
  background: rgba(29, 28, 17, 0.2);
}

.header--on-light .nav__logo-img {
  filter: brightness(0) saturate(100%) sepia(20%) hue-rotate(10deg);
}

/* Mobile toggle */
.nav__toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
  z-index: 1001;
}

.nav__toggle span {
  width: 24px;
  height: 2px;
  background: var(--color-text-light);
  transition: all 0.3s ease, background 0.4s ease;
}

.header--on-light .nav__toggle span {
  background: var(--color-text-dark);
}

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

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

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

/* ========================================
   HERO
   ======================================== */
.hero {
  position: relative;
  width: 100%;
  height: 100vh;
  min-height: 600px;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero__bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(
      to right,
      rgba(29, 28, 17, 0.92) 0%,
      rgba(29, 28, 17, 0.7) 35%,
      rgba(29, 28, 17, 0.35) 60%,
      rgba(29, 28, 17, 0.1) 100%
    ),
    linear-gradient(
      to top,
      rgba(29, 28, 17, 0.9) 0%,
      rgba(29, 28, 17, 0) 25%
    );
}

.hero__content {
  position: relative;
  z-index: 2;
  padding: 0 40px;
  max-width: var(--max-width);
  margin: 0 auto;
  width: 100%;
}

.hero__title {
  font-family: var(--font-display);
  font-weight: 300;
  text-transform: uppercase;
  color: var(--color-text-light);
  line-height: 1.1;
  text-shadow: 0 2px 40px rgba(0, 0, 0, 0.3);
}

.hero__title span {
  display: block;
  font-size: clamp(36px, 5vw, 64px);
  opacity: 0;
  transform: translateY(30px);
  animation: fadeUp 0.8s ease forwards;
}

.hero__title span:nth-child(2) { animation-delay: 0.2s; }
.hero__title span:nth-child(3) { animation-delay: 0.4s; }

.hero__subtitle {
  font-family: var(--font-display);
  font-size: clamp(14px, 1.4vw, 20px);
  font-weight: 400;
  color: var(--color-accent);
  margin-top: 32px;
  text-transform: uppercase;
  letter-spacing: 3px;
  max-width: 580px;
  line-height: 1.6;
  opacity: 0;
  animation: fadeUp 0.8s ease 0.6s forwards;
}

.hero__decor {
  position: absolute;
  opacity: 0.05;
  pointer-events: none;
  z-index: 1;
}

.hero__decor--trumpet {
  bottom: -20px;
  right: -40px;
  width: 300px;
}

.hero__btn {
  margin-top: 40px;
  opacity: 0;
  animation: fadeUp 0.8s ease 0.8s forwards;
}

@keyframes fadeUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ========================================
   SECTIONS BASE
   ======================================== */
.section {
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}

.section--dark {
  background-color: var(--color-bg-dark);
}

.section--light {
  background-color: var(--color-bg-light);
}

.section--cream {
  background-color: var(--color-bg-cream);
}

.section--fullpage {
  min-height: 100vh;
  display: flex;
  align-items: center;
}

.section--fullpage > .container {
  width: 100%;
}

.section--cta {
  background-color: var(--color-bg-dark);
  padding: 120px 0;
}

.section__label {
  font-family: var(--font-display);
  font-size: clamp(32px, 3.5vw, 40px);
  font-weight: 300;
  color: var(--color-text-light);
  margin-bottom: 16px;
  text-transform: uppercase;
}

.section__label--dark {
  color: var(--color-text-dark);
}

.section__intro {
  font-family: var(--font-display);
  font-size: clamp(16px, 1.6vw, 20px);
  font-weight: 300;
  color: var(--color-accent);
  margin-bottom: 60px;
}

.section__title {
  font-family: var(--font-display);
  font-size: clamp(28px, 3.2vw, 42px);
  font-weight: 300;
  color: var(--color-bg-light);
  text-transform: uppercase;
  margin-bottom: 20px;
  line-height: 1.15;
  max-width: 360px;
}

.section__desc {
  font-family: var(--font-display);
  font-size: clamp(16px, 1.6vw, 20px);
  font-weight: 300;
  color: var(--color-accent);
  line-height: 1.7;
  max-width: 700px;
  margin-bottom: 32px;
}

.section__desc--dark {
  color: var(--color-text-dark);
  opacity: 0.7;
}

.section__desc--intro {
  margin-bottom: 60px;
}

.section__desc--center {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.section__label--center {
  text-align: center;
}

.section__intro--center {
  text-align: center;
}

/* Decorative elements */
.section__decor {
  position: absolute;
  opacity: 0.06;
  pointer-events: none;
}

.section__decor--left {
  left: -80px;
  top: 50%;
  transform: translateY(-50%);
  height: 400px;
}

.section__decor--right {
  right: -60px;
  bottom: 40px;
  width: 250px;
}

/* ========================================
   BUTTONS
   ======================================== */
.btn {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 400;
  letter-spacing: 1px;
  transition: all 0.3s ease;
}

.btn--outline {
  color: var(--color-cta);
  border: 1px solid var(--color-cta);
  padding: 10px 26px;
  border-radius: 300px;
  font-size: 14px;
  align-self: flex-start;
  width: fit-content;
}

.btn--outline:hover {
  color: #fff;
  background-color: var(--color-cta);
}

.btn--cta {
  color: #fff;
  background-color: var(--color-cta);
  padding: 16px 48px;
  border-radius: 300px;
  font-size: 16px;
  text-transform: uppercase;
}

.btn--cta:hover {
  background-color: var(--color-cta-hover);
  transform: scale(1.03);
}

/* ========================================
   CERIMÔNIAS
   ======================================== */
.cerimonias__block {
  margin-bottom: 80px;
}

.cerimonias__header {
  display: flex;
  align-items: stretch;
  gap: 0;
  margin-bottom: 40px;
  background: rgba(141, 123, 102, 0.1);
  border-radius: 20px;
  overflow: hidden;
  padding: 24px;
  min-height: 460px;
}

.cerimonias__header--reverse {
  flex-direction: row-reverse;
}

.cerimonias__text {
  flex: 1;
  min-width: 0;
  padding: 24px 32px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.cerimonias__image {
  flex: 0 0 45%;
  overflow: hidden;
  border-radius: 14px;
}

.cerimonias__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.cerimonias__image--asset {
  display: none;
}

.cerimonias__block--repertorio .cerimonias__header {
  position: relative;
  overflow: hidden;
  min-height: 340px;
  padding: 20px;
}

.cerimonias__block--repertorio .cerimonias__text {
  flex: 0 0 50%;
}

.cerimonias__block--repertorio .cerimonias__asset {
  position: absolute;
  right: 40px;
  top: 50%;
  transform: translateY(-50%) rotate(90deg) scaleY(-1);
  height: 120%;
  width: auto;
  object-fit: contain;
  filter: brightness(0.08);
  opacity: 0.5;
  border-radius: 14px;
}

.cerimonias__decor {
  display: block;
  width: 120px;
  opacity: 0.08;
  margin-top: 24px;
}

.cerimonias__block--repertorio {
  position: relative;
}

/* Placeholder for missing photos */
.placeholder-img {
  width: 100%;
  height: 100%;
  min-height: 280px;
  background: rgba(141, 123, 102, 0.08);
  border: 2px dashed rgba(141, 123, 102, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-accent);
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 300;
  text-align: center;
  line-height: 1.5;
}

.placeholder-img--wide {
  height: 360px;
  max-width: 900px;
  margin: 0 auto 40px;
}

/* ========================================
   CAROUSEL
   ======================================== */
.carousel {
  position: relative;
  overflow: hidden;
  margin-top: 32px;
}

.carousel::after {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 120px;
  height: 100%;
  background: linear-gradient(to right, rgba(29, 28, 17, 0) 0%, rgba(29, 28, 17, 0.85) 70%, rgba(29, 28, 17, 1) 100%);
  z-index: 3;
  pointer-events: none;
  transition: opacity 0.4s ease;
}

.carousel.carousel--at-end::after {
  opacity: 0;
}

.carousel__track {
  display: flex;
  gap: 24px;
  transition: transform 0.5s ease;
}

.carousel__slide {
  flex: 0 0 calc(33.333% - 16px);
  min-width: 240px;
}

.carousel__controls {
  position: static;
  display: contents;
}

.carousel__btn {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(8px);
  transition: all 0.3s ease;
  position: absolute;
  top: 50%;
  transform: translateY(-60%);
  z-index: 5;
}

.carousel__btn--next {
  right: 8px;
  transition: opacity 0.3s ease;
}

.carousel__btn--next.carousel__btn--hidden {
  opacity: 0;
  pointer-events: none;
}

.carousel__btn--prev {
  left: 8px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.carousel__btn--prev.carousel__btn--visible {
  opacity: 1;
  pointer-events: auto;
}

.carousel__btn:hover {
  border-color: #fff;
  background: rgba(255, 255, 255, 0.3);
}

.carousel__btn svg {
  width: 20px;
  height: 20px;
}

/* ========================================
   VIDEO CARDS
   ======================================== */
.video-card {
  cursor: pointer;
  border: 1px solid rgba(248, 243, 236, 0.15);
  border-radius: 16px;
  padding: 12px;
  transition: border-color 0.3s ease;
}

.video-card:hover {
  border-color: rgba(248, 243, 236, 0.3);
}

.video-card__thumb {
  position: relative;
  border-radius: 10px;
  overflow: hidden;
  aspect-ratio: 16/9;
  background: #111;
}

.video-card__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease, filter 0.4s ease;
}

.video-card:hover .video-card__thumb img {
  transform: scale(1.05);
  filter: brightness(0.7);
}

.video-card__play {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 48px;
  height: 48px;
  opacity: 0.8;
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.video-card:hover .video-card__play {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1.1);
}

.video-card__label {
  display: block;
  margin-top: 12px;
  font-family: var(--font-display);
  font-size: clamp(18px, 2vw, 28px);
  font-weight: 300;
  color: var(--color-accent);
  text-transform: uppercase;
}

/* ========================================
   BANDAS (FESTAS)
   ======================================== */
.banda {
  margin-bottom: 80px;
  padding-top: 40px;
  border-top: 1px solid rgba(141, 123, 102, 0.15);
}

.banda:first-of-type {
  border-top: none;
  padding-top: 0;
}

.banda__header {
  display: flex;
  align-items: stretch;
  gap: 0;
  margin-bottom: 32px;
  background: rgba(141, 123, 102, 0.1);
  border-radius: 20px;
  padding: 24px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.banda__info {
  flex: 1;
  min-width: 0;
  padding: 24px 32px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.banda__image {
  flex: 0 0 420px;
  border-radius: 16px;
  overflow: hidden;
}

.banda__image img {
  width: 100%;
  height: 380px;
  object-fit: cover;
  border-radius: 16px;
}

.banda--fullpage .banda__header {
  max-width: 100%;
  padding: 24px;
}

.banda--fullpage .banda__info {
  padding: 24px 32px;
}

.banda--fullpage .banda__image {
  flex: 0 0 55%;
}

.banda--fullpage .banda__image img {
  height: auto;
  object-fit: contain;
  border-radius: 16px;
}

.banda__name {
  font-size: clamp(24px, 3vw, 36px);
  font-weight: 400;
  color: var(--color-bg-light);
  margin-bottom: 16px;
  text-transform: uppercase;
}

.banda__name--panchang {
  font-family: var(--font-display);
  font-weight: 700;
  font-stretch: 75%;
  letter-spacing: 4px;
}

.banda__name--mattone {
  font-family: var(--font-display);
  font-style: italic;
  letter-spacing: 2px;
}

.banda__name--zodiak {
  font-family: var(--font-display);
  font-weight: 300;
  font-style: italic;
  text-transform: capitalize;
}

/* ========================================
   SOBRE IMAGE
   ======================================== */
.sobre__image {
  margin-bottom: 48px;
}

/* ========================================
   STATS (SOBRE NÓS)
   ======================================== */
/* Stats Grid */
.stats-grid {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 48px;
}

.stats-grid__row {
  display: flex;
  gap: 16px;
}

.stats-grid__row:first-child .stats-grid__card--photo {
  flex: 1.6;
}

.stats-grid__row:first-child .stats-grid__card--gold {
  flex: 1;
}

.stats-grid__row:last-child .stats-grid__card--gold {
  flex: 1;
}

.stats-grid__row:last-child .stats-grid__card--photo {
  flex: 1.4;
}

.stats-grid__card {
  border-radius: 20px;
  overflow: hidden;
  position: relative;
  min-height: 320px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 40px;
}

.stats-grid__card--photo {
  padding: 0;
}

.stats-grid__card--gold {
  background: var(--color-cta);
  justify-content: center;
}

.stats-grid__card--gold-light {
  background: #b8762e;
}

.stats-grid__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
}

.stats-grid__overlay {
  position: relative;
  z-index: 2;
  padding: 40px;
}

.stats-grid__card--photo::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 60%;
  background: linear-gradient(to top, rgba(0,0,0,0.7) 0%, transparent 100%);
  z-index: 1;
}

.stats-grid__number {
  font-family: var(--font-display);
  font-size: clamp(32px, 3.5vw, 52px);
  font-weight: 300;
  color: #fff;
  display: block;
}

.stats-grid__label {
  font-family: var(--font-display);
  font-size: clamp(28px, 3vw, 46px);
  font-weight: 300;
  color: #fff;
  display: block;
}

.stats-grid__sub {
  font-family: var(--font-display);
  font-size: clamp(18px, 2vw, 28px);
  font-weight: 300;
  color: rgba(255,255,255,0.8);
  display: block;
  margin-top: 8px;
}

.stats-grid__sub--large {
  font-family: var(--font-display);
  font-size: clamp(20px, 2.2vw, 30px);
  font-weight: 300;
  color: rgba(255,255,255,0.85);
  display: block;
  margin-top: 8px;
  line-height: 1.4;
}

/* ========================================
   TESTIMONIALS (DEPOIMENTOS)
   ======================================== */
.testimonials {
  overflow: hidden;
  margin-top: 48px;
  position: relative;
}

.testimonials::before,
.testimonials::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  width: 80px;
  z-index: 2;
  pointer-events: none;
}

.testimonials::before {
  left: 0;
  background: linear-gradient(to right, var(--color-bg-cream), transparent);
}

.testimonials::after {
  right: 0;
  background: linear-gradient(to left, var(--color-bg-cream), transparent);
}

.testimonials__track {
  display: flex;
  gap: 32px;
  animation: scrollTestimonials 120s linear infinite;
  width: max-content;
}

.testimonial {
  flex: 0 0 400px;
  background: rgba(29, 28, 17, 0.04);
  border-radius: 16px;
  padding: 40px 32px;
  border: 1px solid rgba(29, 28, 17, 0.08);
}

.testimonial__text {
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 300;
  color: var(--color-text-dark);
  line-height: 1.7;
  font-style: italic;
  margin-bottom: 24px;
}

.testimonial__author {
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 500;
  color: var(--color-text-dark);
}

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

.testimonials:hover .testimonials__track {
  animation-play-state: paused;
}

/* ========================================
   CTA SECTION
   ======================================== */
.cta__title {
  font-family: var(--font-display);
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 300;
  color: var(--color-text-light);
  margin-bottom: 20px;
  text-transform: uppercase;
}

.cta__desc {
  font-family: var(--font-display);
  font-size: clamp(16px, 1.6vw, 20px);
  font-weight: 300;
  color: var(--color-accent);
  margin-bottom: 40px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

/* ========================================
   FORM (CONTATO)
   ======================================== */
.cta__title--center,
.cta__desc--center {
  text-align: center;
}

.cta__desc--center {
  margin-left: auto;
  margin-right: auto;
}

.form {
  max-width: 640px;
  margin: 48px auto 0;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.form__row {
  display: flex;
  gap: 16px;
}

.form__group {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form__label {
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 400;
  color: var(--color-accent);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.form__optional {
  text-transform: none;
  letter-spacing: 0;
  opacity: 0.5;
  font-size: 12px;
}

.form__input {
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--color-text-light);
  background: rgba(248, 243, 236, 0.06);
  border: 1px solid rgba(248, 243, 236, 0.12);
  border-radius: 12px;
  padding: 14px 18px;
  transition: border-color 0.3s ease, background 0.3s ease;
  outline: none;
  width: 100%;
}

.form__input:focus {
  border-color: var(--color-cta);
  background: rgba(248, 243, 236, 0.1);
}

.form__input::placeholder {
  color: rgba(141, 123, 102, 0.5);
}

.form__select {
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%238d7b66' stroke-width='1.5' fill='none'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 40px;
  cursor: pointer;
}

.form__select option {
  background: var(--color-bg-dark);
  color: var(--color-text-light);
}

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

.btn--form {
  align-self: center;
  margin-top: 8px;
  min-width: 200px;
}

/* ========================================
   FOOTER
   ======================================== */
.footer {
  background-color: var(--color-bg-dark);
  border-top: 1px solid rgba(141, 123, 102, 0.15);
  padding: 48px 40px;
}

.footer__content {
  max-width: var(--max-width);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.footer__logo-img {
  height: 90px;
  width: auto;
}

.footer__right {
  display: flex;
  align-items: center;
  gap: 24px;
}

.footer__social {
  display: flex;
  gap: 16px;
}

.footer__social a {
  color: var(--color-text-light);
  transition: color 0.3s ease;
}

.footer__social a:hover {
  color: var(--color-cta);
}

.footer__copy {
  font-family: var(--font-body);
  font-size: 13px;
  color: var(--color-accent);
}

/* ========================================
   WHATSAPP FLUTUANTE
   ======================================== */
.whatsapp-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  width: 56px;
  height: 56px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 999;
  box-shadow: 0 4px 16px rgba(37, 211, 102, 0.4);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 24px rgba(37, 211, 102, 0.5);
}

/* ========================================
   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: 900px;
  z-index: 1;
}

.video-modal__close {
  position: absolute;
  top: -48px;
  right: 0;
  font-size: 36px;
  color: #fff;
  background: none;
  border: none;
  cursor: pointer;
  transition: opacity 0.3s ease;
}

.video-modal__close:hover {
  opacity: 0.7;
}

.video-modal__player {
  position: relative;
  padding-bottom: 56.25%;
  border-radius: 12px;
  overflow: hidden;
  background: #000;
}

.video-modal__player iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

/* ========================================
   SCROLL ANIMATIONS
   ======================================== */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

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

/* ========================================
   RESPONSIVE
   ======================================== */
@media (max-width: 968px) {
  .nav__toggle {
    display: flex;
  }

  .nav__bar {
    background: none;
    border: none;
    padding: 0;
    backdrop-filter: none;
  }

  .nav__divider {
    display: none;
  }

  .nav__menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    max-width: 360px;
    height: 100vh;
    background: var(--color-bg-dark);
    flex-direction: column;
    justify-content: center;
    gap: 32px;
    padding: 60px 40px;
    transition: right 0.4s ease;
    box-shadow: -4px 0 20px rgba(0, 0, 0, 0.3);
  }

  .nav__menu--open {
    right: 0;
  }

  .nav__link {
    font-size: 18px;
  }

  .cerimonias__header,
  .cerimonias__header--reverse,
  .banda__header {
    flex-direction: column;
  }

  .cerimonias__text {
    padding: 32px;
  }

  .cerimonias__image,
  .banda__image {
    flex: 0 0 auto;
    width: 100%;
  }

  .cerimonias__image img {
    height: 260px;
  }

  .banda__image img {
    height: auto;
    max-height: 300px;
    object-fit: cover;
  }

  .banda--fullpage .banda__image {
    flex: 0 0 auto;
  }

  .banda--fullpage .banda__header {
    flex-direction: column;
  }

  .carousel__slide {
    flex: 0 0 calc(50% - 12px);
    min-width: 240px;
  }

  .footer__content {
    flex-direction: column;
    gap: 24px;
    text-align: center;
  }

  .footer__right {
    flex-direction: column;
    gap: 16px;
  }

  .stats-grid__row {
    flex-direction: column;
  }

  .stats-grid__card {
    min-height: 220px;
  }

  .cerimonias__block--repertorio .cerimonias__header {
    min-height: auto;
    padding: 24px;
  }

  .cerimonias__block--repertorio .cerimonias__text {
    flex: 1;
  }

  .cerimonias__block--repertorio .cerimonias__asset {
    display: none;
  }

  .form__row {
    flex-direction: column;
    gap: 24px;
  }
}

@media (max-width: 640px) {
  .container {
    padding: 0 20px;
  }

  .nav {
    padding: 0 20px;
  }

  .section {
    padding: 60px 0;
  }

  .hero__content {
    padding: 0 20px;
  }

  .carousel__slide {
    flex: 0 0 85%;
    min-width: 260px;
  }

  .testimonial {
    flex: 0 0 300px;
    padding: 28px 24px;
  }

  .section--cta {
    padding: 80px 0;
  }

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