:root {
  --color-primary: #ff6b35;
  --color-primary-dark: #e55a2b;
  --color-secondary: #ffd23f;
  --color-accent: #06d6a0;
  --color-success: #48bb78;
  --color-warning: #ed8936;
  --color-danger: #f56565;
  
  --color-dark: #2c1810;
  --color-dark-light: #3d2317;
  --color-light: #ffffff;
  --color-muted: rgba(255, 255, 255, 0.7);
  --color-muted-dark: rgba(255, 255, 255, 0.4);
  
  --gradient-primary: linear-gradient(135deg, #ff6b35 0%, #f7931e 100%);
  --gradient-secondary: linear-gradient(135deg, #ffd23f 0%, #ff6b35 100%);
  --gradient-accent: linear-gradient(135deg, #06d6a0 0%, #118ab2 100%);
  --gradient-warm: linear-gradient(135deg, #ff9a56 0%, #ffd23f 100%);
  
  --font-heading: "Playfair Display", serif;
  --font-body: "Inter", system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  
  --max-width: 1400px;
  --container-padding: clamp(1rem, 5vw, 3rem);
  
  --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-base: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 0.8s cubic-bezier(0.4, 0, 0.2, 1);
  
  --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.1);
  --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.15);
  --shadow-lg: 0 8px 25px rgba(0, 0, 0, 0.2);
  --shadow-xl: 0 20px 40px rgba(0, 0, 0, 0.25);
  
  --border-radius-sm: 8px;
  --border-radius-md: 16px;
  --border-radius-lg: 24px;
  --border-radius-xl: 32px;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  color: var(--color-light);
  background: var(--color-dark);
  line-height: 1.6;
  overflow-x: hidden;
  position: relative;
}

body.loaded {
  animation: fadeIn 1s ease-out;
}

/* Preloader */
.preloader {
  position: fixed;
  inset: 0;
  background: var(--gradient-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
}

.preloader__content {
  text-align: center;
  color: white;
}

.preloader__character {
  width: 120px;
  height: auto;
  animation: bounce 2s infinite;
  margin-bottom: 2rem;
}

.preloader__text h2 {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

.loading-bar {
  width: 200px;
  height: 4px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 2px;
  overflow: hidden;
  margin: 0 auto;
}

.loading-progress {
  height: 100%;
  background: var(--gradient-accent);
  transition: width 0.3s ease;
}

/* Background */
.background {
  position: fixed;
  inset: 0;
  z-index: -1;
  overflow: hidden;
}

.background__gradient {
  position: absolute;
  inset: 0;
  background: 
    radial-gradient(circle at 20% 80%, rgba(120, 119, 198, 0.3), transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(255, 119, 198, 0.3), transparent 50%),
    radial-gradient(circle at 40% 40%, rgba(120, 219, 255, 0.2), transparent 50%),
    linear-gradient(135deg, var(--color-dark) 0%, var(--color-dark-light) 100%);
}

.background__texture {
  position: absolute;
  inset: 0;
  background-image: url("fondo.jpg");
  background-size: cover;
  background-position: center;
  opacity: 0.05;
  mix-blend-mode: overlay;
  animation: textureFloat 60s linear infinite;
}

.floating-elements {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.floating-element {
  position: absolute;
  opacity: 0.1;
  animation: floatAround 20s linear infinite;
}

.floating-element--1 {
  width: 80px;
  top: 20%;
  left: 10%;
  animation-delay: 0s;
}

.floating-element--2 {
  width: 60px;
  top: 60%;
  right: 15%;
  animation-delay: -10s;
}

.floating-element--3 {
  width: 55px;
  top: 25%;
  left: 20%;
  animation-delay: -15s;
}

.background__shapes {
  position: absolute;
  inset: 0;
}

.shape {
  position: absolute;
  border-radius: 50%;
  filter: blur(40px);
  opacity: 0.4;
  animation: shapeFloat 15s ease-in-out infinite;
}

.shape--1 {
  width: 300px;
  height: 300px;
  background: var(--gradient-primary);
  top: -150px;
  left: -150px;
}

.shape--2 {
  width: 200px;
  height: 200px;
  background: var(--gradient-secondary);
  bottom: -100px;
  right: -100px;
  animation-delay: -5s;
}

.shape--3 {
  width: 250px;
  height: 250px;
  background: var(--gradient-accent);
  top: 50%;
  right: -125px;
  animation-delay: -10s;
}

.shape--4 {
  width: 180px;
  height: 180px;
  background: var(--gradient-warm);
  bottom: 30%;
  left: -90px;
  animation-delay: -7s;
}

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

.section-header {
  text-align: center;
  margin-bottom: 4rem;
}

.section-title {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 700;
  margin-bottom: 1rem;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.section-subtitle {
  font-size: 1.125rem;
  color: var(--color-muted);
  max-width: 600px;
  margin: 0 auto;
}

/* Botones */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 1rem 2rem;
  border: none;
  border-radius: var(--border-radius-xl);
  font-weight: 600;
  font-size: 1rem;
  text-decoration: none;
  cursor: pointer;
  transition: all var(--transition-base);
  position: relative;
  overflow: hidden;
}

.btn::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(45deg, transparent 30%, rgba(255, 255, 255, 0.2) 50%, transparent 70%);
  transform: translateX(-100%);
  transition: transform 0.6s;
}

.btn:hover::before {
  transform: translateX(100%);
}

.btn--primary {
  background: var(--gradient-primary);
  color: white;
  box-shadow: var(--shadow-lg);
}

.btn--primary:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-xl);
}

.btn--secondary {
  background: rgba(255, 255, 255, 0.1);
  color: white;
  border: 1px solid rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
}

.btn--secondary:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: translateY(-2px);
}

/* Navegación */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 1rem 0;
  transition: all var(--transition-base);
  backdrop-filter: blur(10px);
}

.navbar--scrolled {
  background: rgba(15, 15, 35, 0.9);
  box-shadow: var(--shadow-md);
}

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

.navbar__brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 600;
}

.navbar__logo {
  width: 40px;
  height: auto;
}

.navbar__menu {
  display: flex;
  gap: 2rem;
}

.navbar__link {
  color: var(--color-muted);
  text-decoration: none;
  font-weight: 500;
  transition: color var(--transition-fast);
  position: relative;
}

.navbar__link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gradient-primary);
  transition: width var(--transition-base);
}

.navbar__link:hover {
  color: var(--color-light);
}

.navbar__link:hover::after {
  width: 100%;
}

.navbar__toggle {
  display: none;
  background: none;
  border: none;
  color: var(--color-light);
  font-size: 1.5rem;
  cursor: pointer;
  padding: 0.5rem;
  border-radius: var(--border-radius-sm);
  transition: all var(--transition-fast);
}

.navbar__toggle:hover {
  background: rgba(255, 255, 255, 0.1);
}

.navbar__toggle--active {
  color: var(--color-primary);
}

/* Menú móvil */
.navbar__mobile {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(15, 15, 35, 0.98);
  backdrop-filter: blur(20px);
  z-index: 999;
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition-base);
}

.navbar__mobile--open {
  opacity: 1;
  visibility: visible;
}

.navbar__mobile-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100%;
  padding: 2rem;
  gap: 2rem;
}

.navbar__mobile-link {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  color: var(--color-light);
  text-decoration: none;
  font-size: 1.125rem;
  font-weight: 500;
  padding: 1rem;
  border-radius: var(--border-radius-lg);
  transition: all var(--transition-base);
  min-width: 120px;
  text-align: center;
}

.navbar__mobile-link:hover {
  background: rgba(255, 255, 255, 0.1);
  color: var(--color-primary);
  transform: translateY(-2px);
}

.navbar__mobile-link i {
  font-size: 1.5rem;
  margin-bottom: 0.25rem;
}

.navbar__mobile-cta {
  margin-top: 1rem;
}

.btn--small {
  padding: 0.75rem 1.5rem;
  font-size: 0.9rem;
}

/* Hero Section */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow-x: hidden;
  overflow-y: visible;
  padding: 2rem 0;
}

.hero__background {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.hero__character {
  position: absolute;
  opacity: 0.8;
  animation: heroFloat 8s ease-in-out infinite;
}

.hero__character--main {
  width: clamp(200px, 30vw, 400px);
  top: 20%;
  right: 10%;
  animation-delay: 0s;
}

.hero__character--secondary {
  width: clamp(150px, 25vw, 300px);
  bottom: 10%;
  left: 5%;
  animation-delay: -4s;
}

.hero__content {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--container-padding);
  position: relative;
  z-index: 2;
  width: 100%;
  text-align: center;
}

.hero__text {
  max-width: 700px;
  margin: 0 auto;
  width: 100%;
}

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--border-radius-xl);
  font-size: 0.875rem;
  font-weight: 500;
  margin-bottom: 2rem;
  backdrop-filter: blur(10px);
}

.hero__title {
  font-family: var(--font-heading);
  margin-bottom: 1.5rem;
  overflow: visible;
}

.hero__name {
  display: block;
  font-size: clamp(2.5rem, 7vw, 4.5rem);
  font-weight: 800;
  line-height: 1.1;
  word-wrap: break-word;
  overflow-wrap: break-word;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 0.5rem;
  padding: 0.25rem 0;
}

.hero__subtitle {
  display: block;
  font-size: clamp(1.25rem, 3vw, 1.75rem);
  font-weight: 400;
  color: var(--color-muted);
  margin-top: 0.5rem;
}

.hero__description {
  font-size: 1.125rem;
  color: var(--color-muted);
  margin-bottom: 2rem;
  line-height: 1.7;
}

.hero__stats {
  display: flex;
  gap: 2rem;
  margin-bottom: 2rem;
  justify-content: flex-start;
}

.stat {
  text-align: center;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--border-radius-md);
  padding: 1rem;
  min-width: 80px;
  backdrop-filter: blur(10px);
  transition: all var(--transition-base);
}

.stat:hover {
  background: rgba(255, 255, 255, 0.1);
  transform: translateY(-2px);
}

.stat__number {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--color-light);
  line-height: 1;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.stat__label {
  font-size: 0.875rem;
  color: var(--color-muted);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-top: 0.5rem;
}

.hero__actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.scroll-indicator {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  text-align: center;
  cursor: pointer;
  animation: bounce 2s infinite;
}

.scroll-indicator__text {
  font-size: 0.875rem;
  color: var(--color-muted);
  margin-bottom: 0.5rem;
}

.scroll-indicator__arrow {
  font-size: 1.5rem;
  color: var(--color-primary);
}

/* Secciones */
.details,
.timeline-section,
.gallery,
.cta-section {
  padding: 6rem 0;
}

/* Detalles del evento */
.details__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.detail-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--border-radius-lg);
  padding: 2rem;
  backdrop-filter: blur(10px);
  transition: all var(--transition-base);
  position: relative;
  overflow: hidden;
}

.detail-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--gradient-primary);
}

.detail-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-xl);
  border-color: rgba(255, 255, 255, 0.2);
}

.detail-card__icon {
  width: 60px;
  height: 60px;
  background: var(--gradient-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  font-size: 1.5rem;
  color: white;
}

.detail-card__title {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.detail-card__value {
  font-size: 1.125rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.detail-card__value strong {
  font-weight: 800;
  color: var(--color-light);
  font-size: 1.125rem;
}

.detail-card__subtitle {
  color: var(--color-muted);
  margin-bottom: 1rem;
}

.detail-card__subtitle strong {
  font-weight: 800;
  color: var(--color-light);
  font-size: 1.125rem;
}

.detail-card__link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--color-primary);
  text-decoration: none;
  font-weight: 500;
  transition: color var(--transition-fast);
}

.detail-card__link:hover {
  color: var(--color-light);
}

/* Timeline */
.timeline {
  position: relative;
  max-width: 800px;
  margin: 0 auto;
}

.timeline::before {
  content: '';
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 2px;
  background: var(--gradient-primary);
  transform: translateX(-50%);
}

.timeline__item {
  display: flex;
  align-items: center;
  margin-bottom: 3rem;
  cursor: pointer;
  transition: all var(--transition-base);
}

.timeline__item:nth-child(odd) {
  flex-direction: row;
}

.timeline__item:nth-child(even) {
  flex-direction: row-reverse;
}

.timeline__item:nth-child(odd) .timeline__content {
  margin-right: 2rem;
  text-align: right;
}

.timeline__item:nth-child(even) .timeline__content {
  margin-left: 2rem;
  text-align: left;
}

.timeline__marker {
  width: 60px;
  height: 60px;
  background: var(--gradient-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  color: white;
  position: relative;
  z-index: 2;
  box-shadow: 0 0 0 4px var(--color-dark), 0 0 0 8px rgba(102, 126, 234, 0.3);
  transition: all var(--transition-base);
}

.timeline__item--active .timeline__marker,
.timeline__item:hover .timeline__marker {
  transform: scale(1.1);
  box-shadow: 0 0 0 4px var(--color-dark), 0 0 0 12px rgba(102, 126, 234, 0.5);
}

.timeline__content {
  flex: 1;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--border-radius-lg);
  padding: 1.5rem;
  backdrop-filter: blur(10px);
  transition: all var(--transition-base);
}

.timeline__item--active .timeline__content,
.timeline__item:hover .timeline__content {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.2);
  transform: scale(1.02);
}

.timeline__time {
  font-family: var(--font-heading);
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--color-primary);
  margin-bottom: 0.5rem;
}

.timeline__title {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.timeline__description {
  color: var(--color-muted);
  line-height: 1.6;
}

.timeline__character {
  width: 80px;
  height: auto;
  opacity: 0.8;
  transition: all var(--transition-base);
}

.timeline__item:hover .timeline__character {
  opacity: 1;
  transform: scale(1.1);
}

/* Galería */
.gallery__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
}

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

.gallery__item:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-xl);
}

.gallery__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

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

.gallery__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity var(--transition-base);
}

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

.gallery__overlay i {
  font-size: 2rem;
  color: white;
}

/* Lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.9);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  backdrop-filter: blur(10px);
}

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

.lightbox__content img {
  max-width: 100%;
  max-height: 100%;
  border-radius: var(--border-radius-lg);
}

.lightbox__close {
  position: absolute;
  top: -50px;
  right: 0;
  background: none;
  border: none;
  color: white;
  font-size: 2rem;
  cursor: pointer;
  transition: color var(--transition-fast);
}

.lightbox__close:hover {
  color: var(--color-primary);
}

.lightbox__nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  justify-content: space-between;
  width: calc(100% + 100px);
  left: -50px;
}

.lightbox__nav-btn {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: white;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all var(--transition-base);
  backdrop-filter: blur(10px);
}

.lightbox__nav-btn:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: scale(1.1);
}

/* CTA Section */
.cta__content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 3rem;
  align-items: center;
}

.cta__character {
  width: 100%;
  max-width: 400px;
  height: auto;
  animation: ctaFloat 6s ease-in-out infinite;
}

.cta__title {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  margin-bottom: 1rem;
  background: var(--gradient-secondary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.cta__description {
  font-size: 1.125rem;
  color: var(--color-muted);
  margin-bottom: 2rem;
  line-height: 1.7;
}

.cta__actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

/* Footer */
.footer {
  padding: 3rem 0;
  background: rgba(0, 0, 0, 0.3);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer__content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  align-items: center;
}

.footer__text {
  text-align: center;
}

.footer__text h3 {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  margin: 1rem 0;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.footer__quote {
  font-style: italic;
  color: var(--color-muted);
  margin-top: 1rem;
}

.footer__character {
  text-align: center;
}

.footer__character img {
  width: 100%;
  max-width: 300px;
  height: auto;
  opacity: 0.8;
}

.hero__eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.35em;
  font-size: 0.75rem;
  color: var(--color-muted);
  margin-bottom: 16px;
}

.hero h1 {
  font-family: var(--font-heading);
  font-size: clamp(2.75rem, 5vw, 3.8rem);
  margin: 0 0 20px;
  line-height: 1.1;
  text-shadow: 0 10px 30px rgba(10, 10, 20, 0.4);
}

.hero h1 span {
  display: block;
  font-size: clamp(1.1rem, 2.5vw, 1.4rem);
  font-weight: 400;
  color: rgba(255, 255, 255, 0.8);
}

.hero__description {
  color: rgba(255, 255, 255, 0.75);
  font-size: 1.05rem;
  line-height: 1.7;
  margin-bottom: 32px;
}

.hero__cta {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 26px;
  border-radius: 999px;
  font-weight: 600;
  letter-spacing: 0.02em;
  text-decoration: none;
  transition: transform var(--transition-base), box-shadow var(--transition-base),
    background var(--transition-base);
}

.button--primary {
  background: linear-gradient(135deg, #2a7fef, #22d3ee);
  color: #ffffff;
  box-shadow: 0 12px 30px rgba(34, 211, 238, 0.3);
}

.button--secondary {
  background: rgba(255, 255, 255, 0.12);
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.18);
}

.button--ghost {
  border: 1px solid rgba(255, 255, 255, 0.4);
  color: #ffffff;
  background: transparent;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-3px);
  box-shadow: 0 18px 35px rgba(34, 211, 238, 0.25);
}

.details {
  padding: 40px clamp(24px, 5vw, 72px) 60px;
  background: rgba(8, 13, 23, 0.65);
}

.details h2,
.agenda h2,
.cta-final h2 {
  font-family: var(--font-heading);
  font-size: clamp(1.8rem, 3.2vw, 2.4rem);
  margin: 0 0 26px;
}

.details__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 24px;
}

.detail-card {
  padding: 28px;
  border-radius: 20px;
  background: rgba(17, 24, 39, 0.9);
  border: 1px solid rgba(255, 255, 255, 0.06);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.04);
  position: relative;
  overflow: hidden;
}

.detail-card::before {
  content: "";
  position: absolute;
  inset: -20% 20% 60% -30%;
  background: linear-gradient(135deg, rgba(42, 127, 239, 0.25), rgba(22, 147, 207, 0.05));
  filter: blur(20px);
  transform: rotate(8deg);
}

.detail-card__label {
  font-size: 0.85rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.5);
  margin: 0 0 12px;
}

.detail-card__value {
  font-size: 1.35rem;
  margin: 6px 0;
  font-weight: 600;
}

.detail-card__subtitle {
  margin: 8px 0 0;
  color: rgba(255, 255, 255, 0.7);
}

.detail-card__link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 16px;
  color: var(--color-accent);
  font-weight: 500;
  text-decoration: none;
  transition: color var(--transition-base);
}

.detail-card__link::after {
  content: "\2197";
  font-size: 1.1rem;
}

.detail-card__link:hover,
.detail-card__link:focus-visible {
  color: #ffffff;
}

.agenda {
  padding: 60px clamp(24px, 5vw, 72px) 80px;
}

.agenda__header {
  display: grid;
  gap: 14px;
  max-width: 680px;
  color: rgba(255, 255, 255, 0.78);
}

.timeline {
  position: relative;
  margin-top: 40px;
  display: grid;
  gap: 28px;
}

.timeline::before {
  content: "";
  position: absolute;
  top: 8px;
  bottom: 8px;
  width: 2px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.6), transparent);
  left: 108px;
  opacity: 0.5;
}

.timeline__item {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 32px;
  position: relative;
  align-items: start;
}

.timeline__time {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  color: rgba(255, 255, 255, 0.8);
}

.timeline__content {
  background: rgba(17, 24, 39, 0.85);
  padding: 22px 26px;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 18px 30px rgba(11, 19, 33, 0.35);
  transform: translateX(-12px);
  transition: transform var(--transition-base), box-shadow var(--transition-base);
}

.timeline__content:hover {
  transform: translateX(0);
  box-shadow: 0 20px 40px rgba(11, 19, 33, 0.45);
}

.timeline__content h3 {
  margin: 0 0 8px;
  font-size: 1.25rem;
  color: #ffffff;
}

.timeline__content p {
  margin: 0;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.6;
}

.gallery {
  padding: 80px clamp(24px, 5vw, 72px) 60px;
  display: grid;
  gap: 28px;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.gallery__item {
  border-radius: 22px;
  overflow: hidden;
  position: relative;
  isolation: isolate;
  transform: scale(0.94);
  opacity: 0;
  animation: gallery-pop 1s var(--transition-base) forwards;
  animation-delay: 0.6s;
}

.gallery__item--primary {
  grid-row: span 2;
  animation-delay: 0.4s;
}

.gallery__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: saturate(1.05);
  transition: transform 10s ease, filter var(--transition-base);
}

.gallery__item::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(15, 23, 42, 0.02), rgba(15, 23, 42, 0.55));
  mix-blend-mode: multiply;
}

.gallery__item:hover img {
  transform: scale(1.07);
  filter: saturate(1.2);
}

/* Responsive Design */
@media (max-width: 768px) {
  .container {
    padding: 0 1rem;
  }
  
  .navbar__menu {
    display: none;
  }
  
  .navbar__toggle {
    display: block;
  }
  
  .navbar__content {
    padding: 0 1rem;
  }
  
  .hero {
    min-height: 100vh;
    padding-top: 80px;
  }
  
  .hero__content {
    padding: 0 1rem;
    text-align: center;
  }
  
  .hero__character--main {
    width: clamp(180px, 35vw, 280px);
    top: 15%;
    right: 5%;
  }
  
  .hero__character--secondary {
    width: clamp(140px, 30vw, 220px);
    bottom: 15%;
    left: 2%;
  }
  
  .hero__stats {
    gap: 0.75rem;
    justify-content: center;
    flex-wrap: wrap;
  }
  
  .stat {
    min-width: 70px;
    padding: 0.75rem 0.5rem;
  }
  
  .stat__number {
    font-size: 2rem;
  }
  
  .stat__label {
    font-size: 0.75rem;
  }
  
  .hero__actions {
    flex-direction: column;
    align-items: stretch;
    gap: 0.75rem;
  }
  
  .btn {
    padding: 0.875rem 1.5rem;
    font-size: 0.9rem;
    justify-content: center;
  }
  
  .section-header {
    margin-bottom: 2.5rem;
  }
  
  .section-title {
    font-size: clamp(1.75rem, 6vw, 2.5rem);
  }
  
  .section-subtitle {
    font-size: 1rem;
  }
  
  .timeline::before {
    left: 30px;
  }
  
  .timeline__item {
    flex-direction: column !important;
    align-items: flex-start;
    padding-left: 60px;
    margin-bottom: 2rem;
  }
  
  .timeline__item:nth-child(odd) .timeline__content,
  .timeline__item:nth-child(even) .timeline__content {
    margin: 0;
    text-align: left;
  }
  
  .timeline__marker {
    position: absolute;
    left: -30px;
    top: 0;
    width: 50px;
    height: 50px;
    font-size: 1rem;
  }
  
  .timeline__content {
    padding: 1rem 1.25rem;
  }
  
  .timeline__time {
    font-size: 1rem;
  }
  
  .timeline__title {
    font-size: 1.125rem;
  }
  
  .timeline__character {
    width: 60px;
    margin-top: 0.5rem;
  }
  
  .details__grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  .detail-card {
    padding: 1.5rem;
  }
  
  .detail-card__icon {
    width: 50px;
    height: 50px;
    font-size: 1.25rem;
    margin-bottom: 1rem;
  }
  
  .gallery__grid {
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 1rem;
  }
  
  .cta__content {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 2rem;
  }
  
  .cta__character {
    max-width: 250px;
    margin: 0 auto;
  }
  
  .footer__content {
    grid-template-columns: 1fr;
    text-align: center;
  }
  
  .footer__character img {
    max-width: 200px;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 0.75rem;
  }
  
  .hero {
    padding-top: 90px;
  }
  
  .hero__content {
    padding: 0 1rem;
    width: 100%;
    text-align: center;
  }
  
  .hero__character--main {
    width: clamp(140px, 38vw, 220px);
    top: 12%;
    right: 3%;
  }
  
  .hero__character--secondary {
    width: clamp(110px, 32vw, 180px);
    bottom: 12%;
    left: 1%;
  }
  
  .hero__badge {
    padding: 0.375rem 0.75rem;
    font-size: 0.8rem;
    margin-bottom: 1.5rem;
  }
  
  .hero__name {
    font-size: clamp(2rem, 9vw, 3.5rem);
    line-height: 1.1;
    margin-bottom: 0.75rem;
    padding: 0.5rem 0;
  }
  
  .hero__subtitle {
    font-size: clamp(1rem, 4vw, 1.5rem);
  }
  
  .hero__description {
    font-size: 1rem;
    margin-bottom: 1.5rem;
  }
  
  .hero__stats {
    gap: 0.5rem;
    margin-bottom: 1.5rem;
  }
  
  .stat {
    min-width: 65px;
    padding: 0.625rem 0.375rem;
  }
  
  .stat__number {
    font-size: 1.75rem;
  }
  
  .stat__label {
    font-size: 0.7rem;
  }
  
  .btn {
    padding: 0.75rem 1.25rem;
    font-size: 0.875rem;
  }
  
  .details,
  .timeline-section,
  .gallery,
  .cta-section {
    padding: 3rem 0;
  }
  
  .section-header {
    margin-bottom: 2rem;
  }
  
  .section-title {
    font-size: clamp(1.5rem, 7vw, 2.25rem);
  }
  
  .section-subtitle {
    font-size: 0.9rem;
  }
  
  .detail-card {
    padding: 1.25rem;
  }
  
  .detail-card__icon {
    width: 45px;
    height: 45px;
    font-size: 1.125rem;
  }
  
  .detail-card__title {
    font-size: 1.125rem;
  }
  
  .detail-card__value {
    font-size: 1rem;
  }
  
  .detail-card__value strong,
  .detail-card__subtitle strong {
    font-size: 1rem;
  }
  
  .timeline__marker {
    width: 45px;
    height: 45px;
    font-size: 0.9rem;
  }
  
  .timeline__content {
    padding: 0.875rem 1rem;
  }
  
  .timeline__time {
    font-size: 0.9rem;
  }
  
  .timeline__title {
    font-size: 1rem;
  }
  
  .timeline__description {
    font-size: 0.875rem;
  }
  
  .timeline__character {
    width: 50px;
  }
  
  .gallery__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.75rem;
  }
  
  .cta__title {
    font-size: clamp(1.5rem, 6vw, 2.25rem);
  }
  
  .cta__description {
    font-size: 1rem;
  }
  
  .cta__character {
    max-width: 200px;
  }
  
  .footer {
    padding: 2rem 0;
  }
  
  .footer__text h3 {
    font-size: 1.25rem;
  }
  
  .footer__character img {
    max-width: 150px;
  }
  
  .scroll-indicator {
    bottom: 1rem;
  }
  
  .scroll-indicator__text {
    font-size: 0.8rem;
  }
}

/* Animaciones */
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes bounce {
  0%, 20%, 53%, 80%, 100% {
    transform: translate3d(0, 0, 0);
  }
  40%, 43% {
    transform: translate3d(0, -8px, 0);
  }
  70% {
    transform: translate3d(0, -4px, 0);
  }
  90% {
    transform: translate3d(0, -2px, 0);
  }
}

@keyframes shapeFloat {
  0%, 100% {
    transform: translate3d(0, 0, 0) rotate(0deg);
  }
  33% {
    transform: translate3d(30px, -30px, 0) rotate(120deg);
  }
  66% {
    transform: translate3d(-20px, 20px, 0) rotate(240deg);
  }
}

@keyframes floatAround {
  0% {
    transform: translate3d(0, 0, 0) rotate(0deg);
  }
  25% {
    transform: translate3d(20px, -20px, 0) rotate(90deg);
  }
  50% {
    transform: translate3d(0, -40px, 0) rotate(180deg);
  }
  75% {
    transform: translate3d(-20px, -20px, 0) rotate(270deg);
  }
  100% {
    transform: translate3d(0, 0, 0) rotate(360deg);
  }
}

@keyframes textureFloat {
  0% {
    transform: translate3d(0, 0, 0) scale(1);
  }
  50% {
    transform: translate3d(-2%, -1%, 0) scale(1.02);
  }
  100% {
    transform: translate3d(0, 0, 0) scale(1);
  }
}

@keyframes heroFloat {
  0%, 100% {
    transform: translate3d(0, 0, 0) rotate(0deg);
  }
  50% {
    transform: translate3d(0, -20px, 0) rotate(2deg);
  }
}

@keyframes ctaFloat {
  0%, 100% {
    transform: translate3d(0, 0, 0);
  }
  50% {
    transform: translate3d(0, -15px, 0);
  }
}

/* Efectos de hover mejorados */
.btn,
.detail-card,
.timeline__item,
.gallery__item {
  will-change: transform;
}

/* Optimizaciones de rendimiento */
.floating-element,
.hero__character,
.shape {
  will-change: transform;
  backface-visibility: hidden;
}

/* Efectos de glassmorphism */
.navbar,
.detail-card,
.timeline__content,
.lightbox__nav-btn {
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
}

/* Scrollbar personalizado */
::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: var(--color-dark);
}

::-webkit-scrollbar-thumb {
  background: var(--gradient-primary);
  border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--gradient-secondary);
}

/* Estados de focus para accesibilidad */
.btn:focus-visible,
.navbar__link:focus-visible,
.timeline__item:focus-visible {
  outline: 2px solid var(--color-primary);
  outline-offset: 2px;
}

/* Modal de Confirmación */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(10px);
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
}

.modal-content {
  background: linear-gradient(135deg, rgba(44, 24, 16, 0.95), rgba(61, 35, 23, 0.95));
  border-radius: var(--border-radius-xl);
  border: 1px solid rgba(255, 107, 53, 0.3);
  max-width: 500px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  position: relative;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.5);
}

.modal-header {
  text-align: center;
  padding: 2rem 2rem 1rem;
  position: relative;
}

.modal-character {
  width: 80px;
  height: auto;
  margin-bottom: 1rem;
  animation: bounce 2s infinite;
}

.modal-title {
  font-family: var(--font-heading);
  font-size: 1.75rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.modal-subtitle {
  color: var(--color-muted);
  font-size: 1rem;
  margin-bottom: 0;
}

.modal-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: var(--color-light);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all var(--transition-base);
}

.modal-close:hover {
  background: rgba(255, 107, 53, 0.2);
  color: var(--color-primary);
}

.modal-form {
  padding: 0 2rem 2rem;
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-label {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: var(--color-light);
  font-size: 0.9rem;
}

.form-label i {
  color: var(--color-primary);
}

.form-input,
.form-select {
  width: 100%;
  padding: 0.875rem 1rem;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--border-radius-md);
  color: var(--color-light);
  font-size: 1rem;
  transition: all var(--transition-base);
}

.form-select {
  cursor: pointer;
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 20 20'%3e%3cpath stroke='%23ffffff' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.5' d='M6 8l4 4 4-4'/%3e%3c/svg%3e");
  background-position: right 0.75rem center;
  background-repeat: no-repeat;
  background-size: 1.5em 1.5em;
  padding-right: 2.5rem;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
}

.form-select option {
  background: #2c1810;
  background-color: #2c1810;
  color: #ffffff;
  padding: 0.5rem;
  border: none;
}

.form-select option:hover,
.form-select option:focus {
  background: var(--color-primary);
  color: var(--color-light);
}

.form-select option:checked {
  background: var(--color-primary);
  color: var(--color-light);
}

/* Estilos específicos para diferentes navegadores */
.form-select::-ms-expand {
  display: none;
}

/* Firefox */
@-moz-document url-prefix() {
  .form-select {
    background-image: none;
    padding-right: 1rem;
  }
}

.form-input:focus,
.form-select:focus {
  outline: none;
  border-color: var(--color-primary);
  background: rgba(255, 255, 255, 0.15);
  box-shadow: 0 0 0 3px rgba(255, 107, 53, 0.2);
}

.form-input::placeholder {
  color: var(--color-muted-dark);
}

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

.form-actions {
  display: flex;
  gap: 1rem;
  justify-content: flex-end;
  margin-top: 2rem;
}

.submission-status {
  margin: 1rem 2rem 2rem;
  padding: 1rem;
  border-radius: var(--border-radius-md);
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.submission-status.success {
  background: rgba(72, 187, 120, 0.2);
  border: 1px solid rgba(72, 187, 120, 0.3);
  color: #68d391;
}

.submission-status.error {
  background: rgba(245, 101, 101, 0.2);
  border: 1px solid rgba(245, 101, 101, 0.3);
  color: #fc8181;
}

.submission-status i {
  font-size: 1.25rem;
}

.submission-status p {
  margin: 0;
  font-size: 0.9rem;
}

/* Responsive para modal */
@media (max-width: 768px) {
  .modal-content {
    margin: 1rem;
    max-width: none;
  }
  
  .modal-header {
    padding: 1.5rem 1.5rem 1rem;
  }
  
  .modal-form {
    padding: 0 1.5rem 1.5rem;
  }
  
  .form-row {
    grid-template-columns: 1fr;
  }
  
  .form-actions {
    flex-direction: column;
  }
  
  .submission-status {
    margin: 1rem 1.5rem 1.5rem;
  }
  
  .form-select {
    font-size: 16px; /* Previene zoom en iOS */
  }
  
  .form-select option {
    background: #1a1a1a;
    color: #ffffff;
  }
}

/* Transiciones suaves para el tema */
* {
  transition: background-color var(--transition-base), 
              border-color var(--transition-base),
              color var(--transition-base);
}

/* Optimizaciones para móviles */
@media (max-width: 768px) {
  /* Mejores áreas de toque */
  .btn,
  .navbar__link,
  .timeline__item,
  .gallery__item,
  .detail-card {
    min-height: 44px;
    touch-action: manipulation;
  }
  
  /* Reducir animaciones en móviles para mejor rendimiento */
  .floating-element,
  .shape {
    animation-duration: 30s;
  }
  
  /* Mejor legibilidad en pantallas pequeñas */
  body {
    -webkit-text-size-adjust: 100%;
    text-size-adjust: 100%;
  }
  
  /* Scroll suave en iOS */
  html {
    -webkit-overflow-scrolling: touch;
  }
  
  /* Mejor contraste para móviles */
  .hero__description,
  .section-subtitle,
  .timeline__description {
    color: rgba(255, 255, 255, 0.85);
  }
  
  /* Espaciado mejorado para dedos */
  .hero__stats {
    gap: 1rem;
  }
  
  .hero__actions {
    gap: 1rem;
  }
  
  /* Lightbox optimizado para móvil */
  .lightbox__content {
    max-width: 95vw;
    max-height: 85vh;
  }
  
  .lightbox__nav {
    width: calc(100% + 60px);
    left: -30px;
  }
  
  .lightbox__nav-btn {
    width: 44px;
    height: 44px;
  }
  
  /* Navbar móvil mejorado */
  .navbar {
    padding: 0.75rem 0;
  }
  
  .navbar__brand {
    font-size: 1.125rem;
  }
  
  .navbar__logo {
    width: 35px;
  }
  
  /* Timeline móvil optimizado */
  .timeline__item {
    padding-left: 70px;
  }
  
  .timeline__marker {
    left: -35px;
  }
  
  /* Preloader móvil */
  .preloader__character {
    width: 100px;
  }
  
  .preloader__text h2 {
    font-size: 1.25rem;
  }
  
  .loading-bar {
    width: 150px;
  }
}

/* Orientación landscape en móviles */
@media (max-width: 768px) and (orientation: landscape) {
  .hero {
    min-height: 100vh;
    padding-top: 60px;
  }
  
  .hero__character--main {
    width: clamp(120px, 25vw, 200px);
    top: 10%;
  }
  
  .hero__character--secondary {
    width: clamp(100px, 20vw, 160px);
    bottom: 10%;
  }
  
  .hero__stats {
    flex-direction: row;
    justify-content: center;
  }
  
  .details,
  .timeline-section,
  .gallery,
  .cta-section {
    padding: 2rem 0;
  }
}

/* Dispositivos con notch */
@supports (padding-top: env(safe-area-inset-top)) {
  .navbar {
    padding-top: calc(0.75rem + env(safe-area-inset-top));
  }
  
  .hero {
    padding-top: calc(80px + env(safe-area-inset-top));
  }
}

/* Hover states solo en dispositivos que los soportan */
@media (hover: hover) and (pointer: fine) {
  .btn:hover,
  .detail-card:hover,
  .timeline__item:hover,
  .gallery__item:hover {
    transform: translateY(-4px);
  }
}

/* Estados de focus mejorados para móvil */
@media (max-width: 768px) {
  .btn:focus,
  .navbar__link:focus,
  .timeline__item:focus {
    outline: 3px solid var(--color-primary);
    outline-offset: 2px;
  }
}

.cta-final__content {
  max-width: 620px;
  display: grid;
  gap: 20px;
  color: rgba(255, 255, 255, 0.78);
}

.cta-final__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.footer {
  padding: 28px;
  text-align: center;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.55);
  background: rgba(4, 7, 12, 0.75);
  backdrop-filter: blur(18px);
}

.footer p {
  margin: 0;
  line-height: 1.6;
}

@media (max-width: 768px) {
  body {
    padding: 28px 12px;
  }

  .hero {
    padding-top: 60px;
  }

  .timeline::before {
    left: 24px;
  }

  .timeline__item {
    grid-template-columns: 1fr;
    padding-left: 52px;
  }

  .timeline__time {
    position: relative;
  }

  .timeline__time::before {
    content: "";
    position: absolute;
    left: -37px;
    top: 50%;
    transform: translateY(-50%);
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: linear-gradient(135deg, #fbbf24, #f97316);
    box-shadow: 0 0 0 6px rgba(251, 191, 36, 0.15);
  }

  .timeline__content {
    transform: translateX(0);
  }

  .gallery__item--primary {
    grid-row: auto;
  }
}

@media (max-width: 480px) {
  .hero {
    padding: 48px 22px;
  }

  .details,
  .agenda,
  .gallery,
  .cta-final {
    padding-inline: 22px;
  }

  .hero__cta {
    flex-direction: column;
    align-items: stretch;
  }

  .timeline::before {
    left: 14px;
  }

  .timeline__item {
    padding-left: 38px;
  }
}

@keyframes fade-slide-up {
  0% {
    opacity: 0;
    transform: translateY(40px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes gallery-pop {
  0% {
    opacity: 0;
    transform: scale(0.92);
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes float {
  0%,
  100% {
    transform: translate3d(0, 0, 0) scale(1);
  }
  33% {
    transform: translate3d(20px, -40px, 0) scale(1.05);
  }
  66% {
    transform: translate3d(-30px, 30px, 0) scale(0.98);
  }
}

@keyframes texture-pan {
  0% {
    transform: translate3d(0, 0, 0) scale(1.05);
  }
  50% {
    transform: translate3d(-8%, -6%, 0) scale(1.1);
  }
  100% {
    transform: translate3d(0, 0, 0) scale(1.05);
  }
}
