/* ============================================
   BFWKND · VALENCIA FASHION WEEKEND · MEDIA KIT
   ============================================ */

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

:root {
  --gold: #C9A962;
  --gold-light: #D4B97A;
  --gold-dark: #A8873A;
  --dark-navy: #0D1424;
  --navy: #111827;
  --navy-mid: #1C2B45;
  --dark: #0A0E18;
  --off-white: #F5F4F0;
  --light-bg: #F0EEE9;
  --white: #FFFFFF;
  --text-dark: #111827;
  --text-mid: #4B5563;
  --text-light: #9CA3AF;
  --font-serif: 'Playfair Display', Georgia, 'Times New Roman', serif;
  --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-sans);
  font-size: 16px;
  color: var(--text-dark);
  background: var(--white);
  overflow-x: hidden;
  line-height: 1.6;
}

img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

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

/* ---- UTILITIES ---- */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

.label {
  font-family: var(--font-sans);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.2rem;
}

.label--gold-center {
  text-align: center;
}

.section-title {
  font-family: var(--font-sans);
  font-size: clamp(2.5rem, 6vw, 5rem);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: -0.02em;
  color: var(--text-dark);
  line-height: 1;
  margin-bottom: 0.5rem;
  text-align: center;
}

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

.section-subtitle {
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--text-light);
  text-align: center;
  margin-bottom: 3.5rem;
}

/* ============================================
   HERO
   ============================================ */
.hero {
  position: relative;
  height: 100vh;
  min-height: 640px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: 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 top;
  filter: brightness(0.55) saturate(0.3);
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(10, 14, 24, 0.4) 0%, rgba(10, 14, 24, 0.15) 40%, rgba(10, 14, 24, 0.75) 100%);
}

.hero__content {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: 0 1.5rem;
  width: 100%;
}

.hero__tag {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 1.5rem;
  opacity: 0.85;
}

.hero__logo {
  margin-bottom: 1.5rem;
  line-height: 0;
}

.hero__logo-img {
  width: auto;
  height: auto;
  max-width: min(860px, 90vw);
  max-height: 290px;
  object-fit: contain;
  display: inline-block;
  filter: drop-shadow(0 4px 30px rgba(0, 0, 0, 0.4));
}

.hero__divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.8rem;
  margin-bottom: 1.8rem;
}

.hero__diamond {
  color: var(--gold);
  font-size: 1rem;
}

.hero__subtitle {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.8rem;
}

.hero__date {
  font-family: var(--font-sans);
  font-size: clamp(1rem, 2.2vw, 1.6rem);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--white);
  margin-bottom: 0.5rem;
}

.hero__venue {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.7);
  font-weight: 300;
  letter-spacing: 0.05em;
}

/* Scroll indicator */
.scroll-indicator {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.3rem;
  animation: scrollBounce 2s ease-in-out infinite;
}

.scroll-indicator__mouse {
  width: 24px;
  height: 36px;
  border: 2px solid rgba(255, 255, 255, 0.5);
  border-radius: 12px;
  position: relative;
  display: flex;
  justify-content: center;
  padding-top: 6px;
}

.scroll-indicator__wheel {
  width: 3px;
  height: 8px;
  background: rgba(255, 255, 255, 0.7);
  border-radius: 2px;
  animation: scrollWheel 2s ease-in-out infinite;
}

.scroll-indicator__arrow {
  font-size: 0.65rem;
  color: rgba(255, 255, 255, 0.5);
}

@keyframes scrollBounce {

  0%,
  100% {
    transform: translateX(-50%) translateY(0);
  }

  50% {
    transform: translateX(-50%) translateY(6px);
  }
}

@keyframes scrollWheel {
  0% {
    opacity: 1;
    transform: translateY(0);
  }

  100% {
    opacity: 0;
    transform: translateY(8px);
  }
}

/* ============================================
   PRESENTACIÓN
   ============================================ */
.presentation {
  background: var(--off-white);
  padding: 7rem 0 6rem;
}

.presentation__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.presentation__title-group {
  margin-bottom: 1.2rem;
}

.presentation__title-bold {
  font-family: var(--font-sans);
  font-size: clamp(2.8rem, 6vw, 5.5rem);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: -0.02em;
  color: var(--text-dark);
  line-height: 0.9;
}

.presentation__title-italic {
  font-family: var(--font-serif);
  font-size: clamp(2.5rem, 5.5vw, 5rem);
  font-weight: 700;
  font-style: italic;
  color: var(--text-dark);
  line-height: 1;
}

.presentation__line {
  width: 60px;
  height: 3px;
  background: var(--gold);
  margin-bottom: 1.5rem;
}

.presentation__text {
  font-size: 1rem;
  color: var(--text-mid);
  line-height: 1.75;
  max-width: 480px;
}

.presentation__right {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.benefit-card {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  background: var(--white);
  border-radius: 14px;
  padding: 1.2rem 1.5rem;
  box-shadow: 0 2px 15px rgba(0, 0, 0, 0.06);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.benefit-card:hover {
  transform: translateX(6px);
  box-shadow: 0 6px 25px rgba(0, 0, 0, 0.1);
}

.benefit-card__icon {
  width: 48px;
  height: 48px;
  background: var(--text-dark);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  flex-shrink: 0;
}

.benefit-card span:last-child {
  font-weight: 600;
  font-size: 1rem;
  color: var(--text-dark);
}

/* ============================================
   VENUE
   ============================================ */
.venue {
  position: relative;
  padding: 7rem 0;
  overflow: hidden;
}

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

.venue__bg-img {
  filter: brightness(0.30) saturate(0.8);
}

.venue__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(10, 14, 24, 0.85) 0%, rgba(10, 14, 24, 0.45) 100%);
}

.venue__grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.venue__title {
  margin-bottom: 1.5rem;
  line-height: 1;
}

.venue__title-bold {
  display: block;
  font-family: var(--font-sans);
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  font-weight: 900;
  text-transform: uppercase;
  color: var(--white);
  letter-spacing: -0.01em;
}

.venue__title-italic {
  display: block;
  font-family: var(--font-serif);
  font-size: clamp(2rem, 4.5vw, 4rem);
  font-weight: 700;
  font-style: italic;
  color: var(--gold);
}

.venue__text {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.8;
  margin-bottom: 2.5rem;
}

.venue__tags {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
}

.venue__tag {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 10px;
  padding: 0.75rem 1rem;
  color: var(--white);
  font-size: 0.875rem;
  font-weight: 500;
  backdrop-filter: blur(8px);
  transition: background 0.25s;
}

.venue__tag:hover {
  background: rgba(255, 255, 255, 0.14);
}

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

.venue__card {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 20px;
  padding: 2.5rem;
  backdrop-filter: blur(16px);
}

.venue__card-title {
  font-family: var(--font-sans);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 1.8rem;
}

.venue__reason {
  display: flex;
  gap: 1.2rem;
  align-items: flex-start;
  margin-bottom: 1.5rem;
}

.venue__reason:last-of-type {
  margin-bottom: 2rem;
}

.venue__reason-num {
  width: 40px;
  height: 40px;
  min-width: 40px;
  background: rgba(201, 169, 98, 0.2);
  border: 1px solid var(--gold);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.05em;
}

.venue__reason strong {
  display: block;
  color: var(--white);
  font-weight: 700;
  margin-bottom: 0.2rem;
  font-size: 0.95rem;
}

.venue__reason p {
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.875rem;
  line-height: 1.5;
}

.venue__address {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.82rem;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  padding-top: 1.5rem;
}

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

/* ============================================
   BENEFICIOS
   ============================================ */
.beneficios {
  position: relative;
  background: var(--navy);
  padding: 7rem 0;
  overflow: hidden;
}

.beneficios__bg-pattern {
  position: absolute;
  inset: 0;
  opacity: 0.07;
  background-image: radial-gradient(circle, rgba(255, 255, 255, 0.5) 1px, transparent 1px);
  background-size: 32px 32px;
}

.beneficios__grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1.2rem;
  margin-top: 1rem;
}

.benefit-item {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  padding: 1.8rem 1.3rem;
  transition: background 0.25s, transform 0.25s;
}

.benefit-item:hover {
  background: rgba(255, 255, 255, 0.09);
  transform: translateY(-4px);
}

.benefit-item__icon {
  width: 52px;
  height: 52px;
  background: rgba(201, 169, 98, 0.15);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  margin-bottom: 1.2rem;
}

.benefit-item h3 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 0.5rem;
}

.benefit-item p {
  font-size: 0.83rem;
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.5;
}

/* ============================================
   PAQUETES
   ============================================ */
.paquetes {
  background: var(--off-white);
  padding: 7rem 0;
}

.paquetes__grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 1.5rem;
  align-items: start;
  margin-top: 5rem;
}

.paquete {
  border-radius: 20px;
  overflow: hidden;
  position: relative;
}

.paquete--dark {
  background: #374151;
  color: var(--white);
  padding: 2.5rem;
}

.paquete--black {
  background: var(--dark-navy);
  color: var(--white);
  padding: 2.5rem;
}

.paquete--gold {
  background: linear-gradient(160deg, var(--gold) 0%, var(--gold-dark) 100%);
  color: var(--white);
  outline: 3px solid var(--gold-light);
  outline-offset: 3px;
}

.paquete--featured {
  transform: translateY(-8px);
  box-shadow: 0 20px 60px rgba(201, 169, 98, 0.35);
}

.paquete__badge {
  background: var(--gold-dark);
  color: var(--white);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  text-align: center;
  padding: 0.45rem 1rem;
}

.paquete__header {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 2rem 2.5rem 0;
}

.paquete--dark .paquete__header,
.paquete--black .paquete__header {
  padding: 0;
  margin-bottom: 1.8rem;
}

.paquete--gold .paquete__header {
  margin-bottom: 0;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.paquete__icon {
  width: 48px;
  height: 48px;
  background: rgba(255, 255, 255, 0.15);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.paquete__name {
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--white);
}

.paquete__desc {
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.65);
  margin-top: 0.2rem;
}

.paquete__price {
  font-size: 3.5rem;
  font-weight: 900;
  color: var(--white);
  margin: 1.2rem 0 1.5rem;
  line-height: 1;
  padding: 0 2.5rem;
}

.paquete--dark .paquete__price,
.paquete--black .paquete__price {
  padding: 0;
}

.paquete--gold .paquete__price {
  padding: 0 2.5rem;
}

.paquete__features {
  list-style: none;
  padding: 0 2.5rem 2.5rem;
}

.paquete--dark .paquete__features,
.paquete--black .paquete__features {
  padding: 0;
}

.paquete__features li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.5rem 0;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.85);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.paquete__features li:last-child {
  border-bottom: none;
}

.dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  flex-shrink: 0;
}

.dot--gold {
  background: var(--gold-light);
}

.dot--grey {
  background: rgba(255, 255, 255, 0.4);
}

/* ============================================
   COMPARACIÓN
   ============================================ */
.comparacion {
  background: var(--light-bg);
  padding: 7rem 0;
}

.table-wrapper {
  overflow-x: auto;
  border-radius: 20px;
  box-shadow: 0 8px 40px rgba(0, 0, 0, 0.08);
  margin-top: 3.5rem;
}

.compare-table {
  width: 100%;
  border-collapse: collapse;
  background: var(--white);
  border-radius: 20px;
  overflow: hidden;
}

.compare-table thead tr {
  background: var(--dark-navy);
}

.compare-table thead th {
  padding: 1.5rem 1.2rem;
  text-align: center;
  color: var(--white);
  font-weight: 700;
  vertical-align: middle;
}

.compare-table thead th:first-child {
  text-align: left;
  font-weight: 600;
  font-size: 0.9rem;
  letter-spacing: 0.03em;
}

.compare-table__highlighted {
  background: var(--gold) !important;
}

.th-price {
  display: block;
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.65);
  font-weight: 400;
  margin-bottom: 0.15rem;
}

.th-name {
  display: block;
  font-size: 1rem;
  font-weight: 800;
  color: var(--white);
}

.compare-table tbody tr {
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  transition: background 0.2s;
}

.compare-table tbody tr:hover {
  background: rgba(0, 0, 0, 0.018);
}

.compare-table tbody td {
  padding: 1.15rem 1.2rem;
  text-align: center;
  font-size: 0.9rem;
  color: var(--text-mid);
}

.compare-table tbody td:first-child {
  text-align: left;
  font-weight: 500;
  color: var(--text-dark);
}

.compare-table__feature-col {
  width: 35%;
}

.check {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  font-size: 0.85rem;
  font-weight: 700;
}

.check--yes {
  background: rgba(201, 169, 98, 0.15);
  color: var(--gold-dark);
}

.check--no {
  background: rgba(0, 0, 0, 0.05);
  color: var(--text-light);
}

/* ============================================
   PATROCINIOS
   ============================================ */
.patrocinios {
  background: var(--dark-navy);
  padding: 7rem 0;
}

.patrocinios__grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 5rem;
  align-items: center;
}

.patrocinios__title {
  font-family: var(--font-sans);
  font-size: clamp(3rem, 7vw, 6rem);
  font-weight: 900;
  text-transform: uppercase;
  color: var(--white);
  line-height: 0.9;
  margin-bottom: 1rem;
  letter-spacing: -0.02em;
}

.patrocinios__text {
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.95rem;
  margin-bottom: 2.5rem;
  line-height: 1.6;
}

.patrocinios__price {
  display: inline-flex;
  flex-direction: column;
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 14px;
  padding: 1.5rem 2.5rem;
}

.patrocinios__desde {
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.5);
  font-weight: 500;
  letter-spacing: 0.05em;
}

.patrocinios__amount {
  font-size: 3.2rem;
  font-weight: 900;
  color: var(--white);
  line-height: 1.1;
}

.patrocinios__right {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.patron-card {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  padding: 1.5rem;
  transition: background 0.25s, transform 0.25s;
}

.patron-card:hover {
  background: rgba(255, 255, 255, 0.1);
  transform: translateY(-3px);
}

.patron-card__icon {
  width: 44px;
  height: 44px;
  background: rgba(201, 169, 98, 0.15);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  margin-bottom: 1rem;
}

.patron-card h4 {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 0.3rem;
}

.patron-card p {
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.5;
}

/* ============================================
   FASHION EXPERIENCE GALLERY
   ============================================ */
.experience {
  background: var(--off-white);
  padding: 7rem 0;
}

.experience__title {
  text-align: center;
  line-height: 1;
  margin-bottom: 3.5rem;
}

.experience__title-bold {
  display: block;
  font-family: var(--font-sans);
  font-size: clamp(3rem, 7vw, 6rem);
  font-weight: 900;
  text-transform: uppercase;
  color: var(--text-dark);
  letter-spacing: -0.02em;
}

.experience__title-italic {
  display: block;
  font-family: var(--font-serif);
  font-size: clamp(1.5rem, 2.8vw, 2.4rem);
  font-style: italic;
  font-weight: 700;
  color: var(--gold);
}

.experience__gallery {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  gap: 1rem;
  grid-template-rows: 500px;
}

.gallery-item {
  border-radius: 16px;
  overflow: hidden;
  cursor: pointer;
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.gallery-item:hover {
  transform: scale(1.02);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}

.gallery-item--tall {
  grid-row: span 1;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.gallery-item:hover img {
  transform: scale(1.06);
}

/* ============================================
   CTA / FOOTER
   ============================================ */
.cta {
  position: relative;
  min-height: 85vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

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

.cta__bg-img {
  filter: brightness(0.35) saturate(0.7);
}

.cta__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(10, 14, 24, 0.5) 0%, rgba(10, 14, 24, 0.4) 100%);
}

.cta__content {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: 4rem 2rem;
  width: 100%;
  max-width: 700px;
  margin: 0 auto;
}

.cta__label {
  margin-bottom: 1.5rem;
}

.cta__title {
  font-family: var(--font-sans);
  font-size: clamp(1.8rem, 3.5vw, 3rem);
  font-weight: 900;
  color: var(--white);
  text-transform: uppercase;
  line-height: 1.05;
  margin-bottom: 2.5rem;
}

.cta__title em {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 700;
  color: var(--gold);
  text-transform: none;
  display: block;
  font-size: 0.9em;
}

.cta__buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 1.5rem;
}

.cta__btn {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.85rem 1.8rem;
  border-radius: 50px;
  font-size: 0.9rem;
  font-weight: 600;
  transition: all 0.25s ease;
  cursor: pointer;
}

.cta__btn--outline {
  border: 1.5px solid rgba(255, 255, 255, 0.35);
  color: var(--white);
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(8px);
}

.cta__btn--outline:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.6);
}

.cta__btn--gold {
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
  color: var(--white);
  border: none;
  box-shadow: 0 6px 25px rgba(201, 169, 98, 0.45);
  margin-top: 0.5rem;
}

.cta__btn--gold:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 35px rgba(201, 169, 98, 0.55);
}

.cta__footer {
  margin-top: 3rem;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.5);
  font-weight: 500;
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
  .beneficios__grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .presentation__grid {
    gap: 3rem;
  }
}

@media (max-width: 768px) {

  .presentation__grid,
  .venue__grid,
  .patrocinios__grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .paquetes__grid {
    grid-template-columns: 1fr;
  }

  .paquete--featured {
    transform: none;
    margin: 0.5rem 0;
  }

  .beneficios__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .patrocinios__right {
    grid-template-columns: 1fr;
  }

  .experience__gallery {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto;
  }

  .gallery-item {
    height: 260px;
  }

  .venue__tags {
    grid-template-columns: 1fr;
  }

  .cta__buttons {
    flex-direction: column;
    align-items: center;
  }

  .hero__logo {
    font-size: clamp(4.5rem, 22vw, 8rem);
  }

  .compare-table {
    font-size: 0.82rem;
  }

  .compare-table tbody td,
  .compare-table thead th {
    padding: 0.9rem 0.7rem;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 1.25rem;
  }

  .beneficios__grid {
    grid-template-columns: 1fr;
  }

  .experience__gallery {
    grid-template-columns: 1fr;
  }

  .gallery-item {
    height: 280px;
  }

  .patrocinios__right {
    grid-template-columns: 1fr;
  }
}