/* Luxentia Travel — paleta del logo */
:root {
  --lux-cyan: #00aeef;
  --lux-cyan-hover: #0096d1;
  --lux-cyan-glow: rgba(0, 174, 239, 0.45);
  --lux-gray: #555555;
  --lux-dark: #0a0a0a;
  --lux-white: #ffffff;
  --lux-text: #1a1a1a;
  --lux-text-muted: #5c5c5c;
  --lux-surface: #f7f9fb;
  --lux-card-gray: #eef1f4;
  --lux-card-lavender: #e8f4fc;
  --lux-card-blue: #d9effa;
  --lux-overlay: linear-gradient(
    180deg,
    rgba(0, 0, 0, 0.5) 0%,
    rgba(0, 0, 0, 0.3) 40%,
    rgba(0, 0, 0, 0.55) 100%
  );
  --font: "Outfit", system-ui, sans-serif;
  --nav-height: 5rem;
  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font);
  color: var(--lux-white);
  background: var(--lux-dark);
  overflow-x: hidden;
}

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

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

ul {
  list-style: none;
}

/* ——— Header / Nav ——— */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  height: var(--nav-height);
  overflow: visible;
  transition:
    background 0.4s var(--ease-out),
    box-shadow 0.4s var(--ease-out),
    backdrop-filter 0.4s var(--ease-out);
}

.header.is-scrolled {
  background: rgba(10, 10, 10, 0.92);
  backdrop-filter: blur(12px);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.35);
}

.header.is-menu-open {
  transform: none;
  background: transparent;
  box-shadow: none;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  max-width: 1280px;
  height: 100%;
  margin: 0 auto;
  padding: 0 clamp(1.25rem, 4vw, 2.5rem);
  overflow: visible;
}

.nav__brand {
  flex-shrink: 0;
  z-index: 2;
  display: flex;
  align-items: center;
  height: 100%;
}

.nav__logo-wrap,
.nav__brand {
  display: flex;
  align-items: center;
}

.nav__logo {
  height: 4rem;
  width: auto;
  max-width: 11rem;
  object-fit: contain;
  object-position: left center;
  filter: brightness(0) invert(1) drop-shadow(0 2px 12px rgba(0, 0, 0, 0.45));
  transition: transform 0.3s var(--ease-out);
}

.nav__brand:hover .nav__logo {
  transform: scale(1.03);
}

.nav__menu {
  display: flex;
  align-items: center;
  gap: 2.5rem;
}

.nav__links {
  display: flex;
  align-items: center;
  gap: clamp(1.25rem, 2.5vw, 2rem);
}

.nav__links a {
  font-size: 0.9375rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  color: rgba(255, 255, 255, 0.92);
  position: relative;
  transition: color 0.25s ease;
}

.nav__links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 0;
  height: 2px;
  background: var(--lux-cyan);
  transition: width 0.3s var(--ease-out);
}

.nav__links a:hover {
  color: var(--lux-white);
}

.nav__links a:hover::after {
  width: 100%;
}

.nav__cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.65rem 1.6rem;
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--lux-white);
  background: var(--lux-cyan);
  border-radius: 999px;
  white-space: nowrap;
  box-shadow: 0 4px 20px var(--lux-cyan-glow);
  transition:
    background 0.25s ease,
    transform 0.25s var(--ease-out),
    box-shadow 0.25s ease;
}

.nav__cta:hover {
  background: var(--lux-cyan-hover);
  transform: translateY(-1px);
  box-shadow: 0 6px 28px var(--lux-cyan-glow);
}

.nav__toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 2.5rem;
  height: 2.5rem;
  background: transparent;
  border: none;
  cursor: pointer;
  z-index: 2;
}

.nav__toggle span {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--lux-white);
  border-radius: 2px;
  transition:
    transform 0.3s var(--ease-out),
    opacity 0.3s ease;
}

.nav__toggle.is-open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

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

.nav__toggle.is-open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* ——— Hero ——— */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: calc(var(--nav-height) + 2rem) 1.5rem 6rem;
  text-align: center;
  overflow: hidden;
}

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

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

.hero__overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      180deg,
      rgba(4, 12, 20, 0.72) 0%,
      rgba(4, 12, 20, 0.38) 38%,
      rgba(4, 12, 20, 0.32) 62%,
      rgba(4, 12, 20, 0.78) 100%
    ),
    radial-gradient(
      ellipse at 50% 100%,
      rgba(0, 174, 239, 0.16),
      transparent 60%
    );
  pointer-events: none;
}

.hero__glow {
  position: absolute;
  left: 50%;
  bottom: -22%;
  width: 70vw;
  height: 45vh;
  transform: translateX(-50%);
  background: radial-gradient(
    ellipse,
    rgba(0, 174, 239, 0.22),
    transparent 65%
  );
  filter: blur(30px);
  pointer-events: none;
  animation: hero-glow-pulse 7s ease-in-out infinite;
}

@keyframes hero-glow-pulse {
  0%,
  100% {
    opacity: 0.6;
  }
  50% {
    opacity: 1;
  }
}

.hero__content {
  position: relative;
  z-index: 1;
  max-width: 56rem;
  padding: 0 0.5rem;
}

.hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.25rem;
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--lux-cyan);
}

.hero__eyebrow-line {
  display: block;
  width: 2.75rem;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--lux-cyan));
}

.hero__eyebrow-line:last-child {
  background: linear-gradient(90deg, var(--lux-cyan), transparent);
}

.hero__title {
  font-size: clamp(2.5rem, 7.5vw, 4.75rem);
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: -0.02em;
  text-shadow: 0 4px 40px rgba(0, 0, 0, 0.45);
}

.hero__title-accent {
  background: linear-gradient(100deg, #00aeef 0%, #8be0ff 55%, #00aeef 100%);
  background-size: 200% auto;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: var(--lux-cyan);
  animation: hero-accent-shine 5s linear infinite;
}

@keyframes hero-accent-shine {
  to {
    background-position: 200% center;
  }
}

.hero__subtitle {
  margin-top: 1.25rem;
  font-size: clamp(1.05rem, 2.5vw, 1.35rem);
  font-weight: 400;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.88);
  max-width: 36rem;
  margin-left: auto;
  margin-right: auto;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
  margin-top: 2.25rem;
}

.hero__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  padding: 0.9rem 1.9rem;
  font-size: 0.9375rem;
  font-weight: 600;
  border-radius: 999px;
  transition:
    background 0.25s ease,
    color 0.25s ease,
    border-color 0.25s ease,
    transform 0.25s var(--ease-out);
}

.hero__btn svg {
  width: 1.1rem;
  height: 1.1rem;
}

.hero__btn--primary {
  background: var(--lux-cyan);
  color: var(--lux-white);
  box-shadow: 0 4px 24px var(--lux-cyan-glow);
}

.hero__btn--primary:hover {
  background: var(--lux-cyan-hover);
  transform: translateY(-2px);
}

.hero__btn--outline {
  border: 1.5px solid rgba(255, 255, 255, 0.55);
  color: var(--lux-white);
  background: rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(8px);
}

.hero__btn--outline:hover {
  border-color: var(--lux-cyan);
  color: var(--lux-cyan);
  transform: translateY(-2px);
}

/* Barra de destinos populares */
.hero__strip {
  position: relative;
  z-index: 1;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  margin-top: auto;
  padding: 0.55rem 0.75rem;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  background: rgba(8, 16, 26, 0.45);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3);
}

.hero__strip-label {
  padding: 0 0.5rem 0 0.85rem;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.55);
}

.hero__strip-item {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.5rem 1rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.92);
  border-radius: 999px;
  transition:
    background 0.25s ease,
    color 0.25s ease,
    transform 0.25s var(--ease-out);
}

.hero__strip-item:hover {
  background: rgba(0, 174, 239, 0.18);
  color: var(--lux-white);
  transform: translateY(-2px);
}

.hero__strip-item--all {
  background: var(--lux-cyan);
  font-weight: 600;
  box-shadow: 0 4px 18px var(--lux-cyan-glow);
}

.hero__strip-item--all:hover {
  background: var(--lux-cyan-hover);
}

.hero__strip-item svg {
  width: 0.9rem;
  height: 0.9rem;
}

.hero__scroll-hint {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
}

.hero__scroll-line {
  display: block;
  width: 1px;
  height: 3rem;
  background: linear-gradient(
    180deg,
    transparent,
    rgba(255, 255, 255, 0.5),
    transparent
  );
  animation: scroll-pulse 2s ease-in-out infinite;
}

@keyframes scroll-pulse {
  0%,
  100% {
    opacity: 0.4;
    transform: scaleY(0.85);
  }
  50% {
    opacity: 1;
    transform: scaleY(1);
  }
}

/* ——— Animaciones de entrada ——— */
.anim-fade-up {
  opacity: 0;
  transform: translateY(28px);
  animation: fade-up 0.9s var(--ease-out) forwards;
  animation-delay: var(--delay, 0s);
}

@keyframes fade-up {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.header {
  opacity: 0;
  transform: translateY(-12px);
  animation: nav-in 0.7s var(--ease-out) 0.15s forwards;
}

@keyframes nav-in {
  to {
    opacity: 1;
    transform: none;
  }
}

/* ——— Sobre nosotros ——— */
.about {
  position: relative;
  padding: clamp(4rem, 10vw, 7rem) clamp(1.25rem, 4vw, 2.5rem);
  background: var(--lux-white);
  color: var(--lux-text);
  overflow: hidden;
}

.about__bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(
      circle at 18% 48%,
      transparent 0,
      transparent 14%,
      rgba(0, 174, 239, 0.14) 14.2%,
      transparent 14.5%
    ),
    radial-gradient(
      circle at 18% 48%,
      transparent 0,
      transparent 24%,
      rgba(0, 174, 239, 0.11) 24.2%,
      transparent 24.5%
    ),
    radial-gradient(
      circle at 18% 48%,
      transparent 0,
      transparent 34%,
      rgba(0, 174, 239, 0.09) 34.2%,
      transparent 34.5%
    ),
    radial-gradient(
      circle at 18% 48%,
      transparent 0,
      transparent 44%,
      rgba(0, 174, 239, 0.07) 44.2%,
      transparent 44.5%
    ),
    radial-gradient(
      circle at 18% 48%,
      transparent 0,
      transparent 54%,
      rgba(0, 174, 239, 0.05) 54.2%,
      transparent 54.5%
    ),
    radial-gradient(
      circle at 18% 48%,
      transparent 0,
      transparent 64%,
      rgba(0, 174, 239, 0.04) 64.2%,
      transparent 64.5%
    ),
    radial-gradient(
      circle at 18% 48%,
      transparent 0,
      transparent 74%,
      rgba(0, 174, 239, 0.03) 74.2%,
      transparent 74.5%
    );
}

/* Luz celeste que se desplaza sobre los anillos */
.about__bg::before {
  content: "";
  position: absolute;
  left: 18%;
  top: 48%;
  width: 60vmin;
  height: 60vmin;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(0, 174, 239, 0.22) 0%,
    rgba(0, 174, 239, 0.1) 35%,
    transparent 65%
  );
  filter: blur(14px);
  transform: translate(-50%, -50%);
  animation: about-glow-drift 14s ease-in-out infinite;
}

@keyframes about-glow-drift {
  0%,
  100% {
    transform: translate(-50%, -50%) scale(1);
    opacity: 0.65;
  }
  25% {
    transform: translate(-15%, -70%) scale(1.2);
    opacity: 1;
  }
  50% {
    transform: translate(-70%, -35%) scale(0.9);
    opacity: 0.8;
  }
  75% {
    transform: translate(-40%, -15%) scale(1.1);
    opacity: 0.95;
  }
}

/* Ondas expansivas tipo sonar */
.about__ripple {
  position: absolute;
  left: 18%;
  top: 48%;
  width: 14vmin;
  height: 14vmin;
  border: 1.5px solid rgba(0, 174, 239, 0.45);
  border-radius: 50%;
  opacity: 0;
  animation: ripple-expand 7.5s linear infinite;
}

.about__ripple--2 {
  animation-delay: 2.5s;
}

.about__ripple--3 {
  animation-delay: 5s;
}

@keyframes ripple-expand {
  0% {
    transform: translate(-50%, -50%) scale(0.2);
    opacity: 0;
  }
  12% {
    opacity: 0.75;
  }
  100% {
    transform: translate(-50%, -50%) scale(7);
    opacity: 0;
  }
}

/* Partículas celestes flotantes */
.about__particles {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.about__particles span {
  position: absolute;
  bottom: -12px;
  width: var(--size, 6px);
  height: var(--size, 6px);
  background: radial-gradient(
    circle,
    rgba(0, 174, 239, 0.85) 0%,
    rgba(0, 174, 239, 0) 70%
  );
  border-radius: 50%;
  opacity: 0;
  animation: particle-rise var(--duration, 12s) linear var(--delay, 0s)
    infinite;
}

@keyframes particle-rise {
  0% {
    transform: translate(0, 0);
    opacity: 0;
  }
  10% {
    opacity: 0.9;
  }
  85% {
    opacity: 0.5;
  }
  100% {
    transform: translate(var(--drift, 0px), -90vh);
    opacity: 0;
  }
}

/* Avión que cruza la sección */
.about__plane {
  position: absolute;
  width: 1.85rem;
  height: 1.85rem;
  color: rgba(0, 174, 239, 0.5);
  filter: drop-shadow(0 0 10px rgba(0, 174, 239, 0.4));
  offset-path: path(
    "M -60 430 C 300 260, 700 420, 1200 180 S 1900 60, 2300 220"
  );
  offset-rotate: auto;
  animation: plane-fly 18s linear infinite;
}

@keyframes plane-fly {
  0% {
    offset-distance: 0%;
    opacity: 0;
  }
  8% {
    opacity: 1;
  }
  85% {
    opacity: 1;
  }
  100% {
    offset-distance: 100%;
    opacity: 0;
  }
}

/* Barrido de luz rotatorio sobre los anillos */
.about__bg::after {
  content: "";
  position: absolute;
  left: 18%;
  top: 48%;
  width: 140vmin;
  height: 140vmin;
  border-radius: 50%;
  background: conic-gradient(
    from 0deg,
    transparent 0deg,
    rgba(0, 174, 239, 0.12) 25deg,
    rgba(0, 174, 239, 0.05) 50deg,
    transparent 80deg
  );
  -webkit-mask-image: radial-gradient(circle, black 0%, transparent 68%);
  mask-image: radial-gradient(circle, black 0%, transparent 68%);
  animation: about-sweep 18s linear infinite;
}

@keyframes about-sweep {
  from {
    transform: translate(-50%, -50%) rotate(0deg);
  }
  to {
    transform: translate(-50%, -50%) rotate(360deg);
  }
}

.about__stage {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 1fr);
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
  max-width: 1180px;
  margin: 0 auto;
}

.about__stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(1rem, 2.5vw, 1.5rem);
  align-items: stretch;
}

.about__stat-col {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.about__stat-col:nth-child(2) {
  margin-top: 2rem;
}

.about__stat-col:nth-child(3) {
  margin-top: 1rem;
}

.about__content {
  position: relative;
  z-index: 2;
  max-width: 34rem;
  text-align: left;
}

.about__logo-badge {
  width: auto;
  height: auto;
  margin: 0 0 1.25rem;
  display: flex;
  align-items: center;
  justify-content: flex-start;
}

.about__logo-badge img {
  height: 5.5rem;
  width: auto;
  object-fit: contain;
}

.about__title {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 700;
  line-height: 1.2;
  color: var(--lux-text);
  letter-spacing: -0.02em;
}

.about__title-accent {
  color: var(--lux-cyan);
}

.about__subtitle {
  margin-top: 0.75rem;
  font-size: clamp(1rem, 2vw, 1.2rem);
  font-weight: 500;
  color: var(--lux-text);
}

.about__text {
  margin-top: 1.25rem;
  font-size: 0.9375rem;
  line-height: 1.7;
  color: var(--lux-text-muted);
}

.about__cta-wrap {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 1.5rem;
  margin-top: 2rem;
}

.about__cta {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  padding: 0.85rem 2rem 0.85rem 0.85rem;
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--lux-white);
  background: var(--lux-cyan);
  border-radius: 999px;
  box-shadow: 0 6px 24px var(--lux-cyan-glow);
  transition:
    background 0.25s ease,
    transform 0.25s var(--ease-out),
    box-shadow 0.25s ease;
}

.about__cta:hover {
  background: var(--lux-cyan-hover);
  transform: translateY(-2px);
  box-shadow: 0 8px 32px var(--lux-cyan-glow);
}

.about__cta-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2rem;
  height: 2rem;
  background: rgba(255, 255, 255, 0.25);
  border-radius: 50%;
}

.about__cta-icon svg {
  width: 1rem;
  height: 1rem;
}

.about__stat-card {
  position: relative;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 1.35rem 1.15rem;
  border-radius: 1.1rem;
  box-shadow: 0 10px 32px rgba(0, 0, 0, 0.08);
  text-align: left;
  min-height: 8rem;
}

.about__stat-card--gray {
  background: var(--lux-card-gray);
}

.about__stat-card--lavender {
  background: var(--lux-card-lavender);
}

.about__stat-card--blue {
  background: var(--lux-card-blue);
}

.about__stat-num {
  display: block;
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.1;
  color: var(--lux-text);
}

.about__stat-label {
  display: block;
  margin-top: 0.35rem;
  font-size: 0.75rem;
  font-weight: 500;
  line-height: 1.35;
  color: var(--lux-text-muted);
}

.about__pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  align-self: stretch;
  padding: 0.6rem 0.85rem;
  font-size: 0.75rem;
  font-weight: 600;
  text-align: center;
  color: var(--lux-text);
  background: var(--lux-white);
  border: 1px solid rgba(0, 0, 0, 0.05);
  border-radius: 999px;
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.08);
  transition:
    transform 0.25s var(--ease-out),
    box-shadow 0.25s ease;
}

.about__pill:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 22px rgba(0, 174, 239, 0.15);
  color: var(--lux-cyan);
}

.about__pill-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 1.35rem;
  height: 1.35rem;
  font-size: 0.7rem;
  font-weight: 700;
  color: var(--lux-white);
  background: var(--lux-gray);
  border-radius: 50%;
}

.about__photo-card {
  position: relative;
  z-index: 3;
  border-radius: 0.85rem;
  overflow: hidden;
  box-shadow: 0 12px 36px rgba(0, 0, 0, 0.15);
}

.about__photo-card img {
  display: block;
  width: 11.5rem;
  height: 7.5rem;
  object-fit: cover;
}

.about__photo-badge {
  position: absolute;
  left: 0.5rem;
  right: 0.5rem;
  bottom: 0.5rem;
  display: flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.45rem 0.7rem;
  font-size: 0.6875rem;
  font-weight: 500;
  color: var(--lux-text);
  background: var(--lux-white);
  border-radius: 0.5rem;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
  white-space: nowrap;
}

.about__photo-badge svg {
  width: 0.9rem;
  height: 0.9rem;
  color: var(--lux-cyan);
  flex-shrink: 0;
}

.about__photo-badge strong {
  font-weight: 700;
  color: var(--lux-cyan);
}

/* Reveal al scroll */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition:
    opacity 0.7s var(--ease-out),
    transform 0.7s var(--ease-out);
}

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

.about__stat-col:nth-child(1).reveal.is-visible {
  transition-delay: 0.1s;
}

/* Flotación suave de las tarjetas una vez visibles */
.about__stat-col.is-visible {
  animation: stat-float 7s ease-in-out 1.2s infinite;
}

.about__stat-col:nth-child(2).is-visible {
  animation-delay: 2.4s;
}

.about__stat-col:nth-child(3).is-visible {
  animation-delay: 4.1s;
}

@keyframes stat-float {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-9px);
  }
}

.about__stat-col:nth-child(2).reveal.is-visible {
  transition-delay: 0.2s;
}

.about__stat-col:nth-child(3).reveal.is-visible {
  transition-delay: 0.3s;
}

.about__content.reveal.is-visible {
  transition-delay: 0.05s;
}

/* ——— Banner CTA WhatsApp ——— */
.cta-banner {
  position: relative;
  padding: clamp(3.5rem, 7vw, 5.5rem) clamp(1.25rem, 4vw, 2.5rem);
  background: linear-gradient(120deg, #0096d1 0%, #00aeef 55%, #33c1f5 100%);
  color: var(--lux-white);
  text-align: center;
  overflow: hidden;
}

/* Formas geométricas diagonales de fondo */
.cta-banner__bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(
      115deg,
      transparent 38%,
      rgba(255, 255, 255, 0.06) 38%,
      rgba(255, 255, 255, 0.06) 52%,
      transparent 52%
    ),
    linear-gradient(
      115deg,
      transparent 60%,
      rgba(255, 255, 255, 0.05) 60%,
      rgba(255, 255, 255, 0.05) 78%,
      transparent 78%
    ),
    linear-gradient(
      295deg,
      transparent 70%,
      rgba(0, 0, 0, 0.05) 70%,
      rgba(0, 0, 0, 0.05) 88%,
      transparent 88%
    );
}

/* Brillo que recorre el banner */
.cta-banner__bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    115deg,
    transparent 30%,
    rgba(255, 255, 255, 0.14) 50%,
    transparent 70%
  );
  transform: translateX(-110%);
  animation: banner-sheen 6s ease-in-out infinite;
}

@keyframes banner-sheen {
  0%,
  55% {
    transform: translateX(-110%);
  }
  85%,
  100% {
    transform: translateX(110%);
  }
}

.cta-banner__inner {
  position: relative;
  z-index: 1;
  max-width: 46rem;
  margin: 0 auto;
}

.cta-banner__title {
  font-size: clamp(1.5rem, 3.5vw, 2.25rem);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: 0.01em;
  text-transform: uppercase;
  text-shadow: 0 2px 20px rgba(0, 0, 0, 0.15);
}

.cta-banner__text {
  margin: 1rem auto 0;
  max-width: 32rem;
  font-size: 0.9375rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.92);
}

.cta-banner__btn {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  margin-top: 1.75rem;
  padding: 0.85rem 1.9rem;
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--lux-white);
  background: #25d366;
  border-radius: 999px;
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.25);
  transition:
    background 0.25s ease,
    transform 0.25s var(--ease-out),
    box-shadow 0.25s ease;
}

.cta-banner__btn:hover {
  background: #1fb858;
  transform: translateY(-2px);
  box-shadow: 0 12px 36px rgba(0, 0, 0, 0.3);
}

.cta-banner__btn svg {
  width: 1.25rem;
  height: 1.25rem;
}

/* ——— Tips de viaje ——— */
.tips {
  position: relative;
  padding: clamp(5rem, 10vw, 7rem) clamp(1.25rem, 4vw, 2.5rem);
  color: var(--lux-white);
  overflow: hidden;
}

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

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

.tips__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(0, 20, 35, 0.75) 0%,
    rgba(0, 30, 50, 0.82) 50%,
    rgba(0, 15, 28, 0.88) 100%
  );
}

.tips__inner {
  position: relative;
  z-index: 1;
  max-width: 1280px;
  margin: 0 auto;
}

.tips__header {
  text-align: center;
  max-width: 40rem;
  margin: 0 auto 3.5rem;
}

.tips__title {
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.02em;
}

.tips__subtitle {
  margin-top: 0.85rem;
  font-size: clamp(1rem, 2vw, 1.2rem);
  font-weight: 400;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.5;
}

.tips__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
  align-items: start;
}

.tips__card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 18rem;
  padding: 1.5rem 1.35rem 1.35rem;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 1.25rem;
  backdrop-filter: blur(18px) saturate(1.4);
  -webkit-backdrop-filter: blur(18px) saturate(1.4);
  box-shadow:
    0 12px 40px rgba(0, 0, 0, 0.25),
    inset 0 1px 0 rgba(255, 255, 255, 0.12);
  transition:
    background 0.35s ease,
    border-color 0.35s ease,
    box-shadow 0.35s ease;
}

.tips__card:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(0, 174, 239, 0.5);
  box-shadow:
    0 20px 50px rgba(0, 0, 0, 0.3),
    0 0 30px rgba(0, 174, 239, 0.12),
    inset 0 1px 0 rgba(255, 255, 255, 0.18);
}

/* Escalonado vertical: alta — baja — alta — más baja */
.tips__card--stagger-1 {
  margin-top: 0;
}

.tips__card--stagger-2 {
  margin-top: 3.5rem;
}

.tips__card--stagger-3 {
  margin-top: 1rem;
}

.tips__card--stagger-4 {
  margin-top: 5rem;
}

.tips__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.25rem;
  height: 2.25rem;
  margin-bottom: 1rem;
  color: var(--lux-white);
}

.tips__icon svg {
  width: 1.75rem;
  height: 1.75rem;
}

.tips__card-title {
  font-size: 1.125rem;
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 0.65rem;
}

.tips__card-text {
  flex: 1;
  font-size: 0.875rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.78);
  margin-bottom: 1.25rem;
}

.tips__card-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  align-self: flex-start;
  padding: 0.5rem 1rem 0.5rem 0.5rem;
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--lux-white);
  background: var(--lux-cyan);
  border-radius: 999px;
  margin-top: auto;
  transition:
    background 0.25s ease,
    transform 0.25s var(--ease-out),
    box-shadow 0.25s ease;
}

.tips__card-btn:hover {
  background: var(--lux-cyan-hover);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px var(--lux-cyan-glow);
}

.tips__card-btn-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 1.5rem;
  height: 1.5rem;
  background: rgba(255, 255, 255, 0.25);
  border-radius: 50%;
}

.tips__card-btn-icon svg {
  width: 0.75rem;
  height: 0.75rem;
}

.tips__card--stagger-1.reveal.is-visible {
  transition-delay: 0.1s;
}

.tips__card--stagger-2.reveal.is-visible {
  transition-delay: 0.2s;
}

.tips__card--stagger-3.reveal.is-visible {
  transition-delay: 0.3s;
}

.tips__card--stagger-4.reveal.is-visible {
  transition-delay: 0.4s;
}

.tips__header.reveal.is-visible {
  transition-delay: 0s;
}

/* ——— Responsive ——— */
@media (max-width: 900px) {
  .header {
    z-index: 9999;
  }

  .nav__logo {
    height: 3rem;
    max-width: 8.5rem;
  }

  .nav__toggle {
    display: flex;
    position: relative;
    z-index: 10002;
  }

  .nav__brand {
    z-index: 10002;
  }

  .nav__menu {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100vw;
    height: 100vh;
    height: 100dvh;
    z-index: 10000;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 0;
    background: #060a10;
    padding: calc(var(--nav-height) + 2rem) 2rem 2rem;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition:
      opacity 0.35s ease,
      visibility 0.35s ease;
  }

  .nav__menu.is-open {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }

  .nav__links {
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    width: 100%;
    max-width: 20rem;
  }

  .nav__links li {
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  }

  .nav__links a {
    display: block;
    padding: 1.1rem 0;
    font-size: 1.35rem;
    font-weight: 600;
    text-align: center;
  }

  .nav__links a::after {
    display: none;
  }

  .nav__cta {
    margin-top: 2rem;
    width: 100%;
    max-width: 20rem;
    padding: 0.95rem 1.5rem;
    font-size: 1rem;
    text-align: center;
  }

  .hero {
    padding: calc(var(--nav-height) + 1.5rem) 1rem 4rem;
  }

  .hero__title {
    font-size: clamp(2rem, 9vw, 2.75rem);
  }

  .hero__subtitle {
    font-size: 1rem;
  }

  .hero__actions {
    flex-direction: column;
    width: 100%;
    max-width: 20rem;
    margin-left: auto;
    margin-right: auto;
  }

  .hero__btn {
    width: 100%;
  }

  .hero__strip {
    margin-top: 2.5rem;
    border-radius: 1.25rem;
    flex-direction: column;
    align-items: stretch;
    width: calc(100% - 1rem);
    max-width: 20rem;
    padding: 0.75rem;
  }

  .hero__strip-label {
    width: 100%;
    text-align: center;
    padding: 0.25rem 0 0.5rem;
  }

  .hero__strip-item {
    justify-content: center;
    padding: 0.65rem 1rem;
  }

  .about__stage {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .about__content {
    order: 1;
    max-width: 100%;
  }

  .about__stats {
    order: 2;
    grid-template-columns: 1fr;
    max-width: 18rem;
    margin: 0 auto;
  }

  .about__stat-col:nth-child(2),
  .about__stat-col:nth-child(3) {
    margin-top: 0;
  }

  .about__photo-card {
    width: 100%;
  }

  .about__photo-card img {
    width: 100%;
    height: 10rem;
  }

  .tips__grid {
    grid-template-columns: 1fr;
    gap: 1rem;
    max-width: 22rem;
    margin: 0 auto;
  }

  .tips__card--stagger-1,
  .tips__card--stagger-2,
  .tips__card--stagger-3,
  .tips__card--stagger-4 {
    margin-top: 0;
    min-height: auto;
  }

  .tips__header {
    margin-bottom: 2.5rem;
  }
}

@media (max-width: 1100px) and (min-width: 901px) {
  .tips__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }

  .tips__card--stagger-1,
  .tips__card--stagger-3 {
    margin-top: 0;
  }

  .tips__card--stagger-2,
  .tips__card--stagger-4 {
    margin-top: 2rem;
  }
}

/* ——— 3D Tilt Cards (FreeFrontend-style) ——— */
.tilt-card {
  --tilt-x: 0deg;
  --tilt-y: 0deg;
  --glow-x: 50%;
  --glow-y: 50%;
  transform-style: preserve-3d;
  transform: perspective(900px) rotateX(var(--tilt-x)) rotateY(var(--tilt-y));
  transition: transform 0.15s ease-out, box-shadow 0.35s var(--ease-out);
  will-change: transform;
}

.tilt-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: radial-gradient(
    500px circle at var(--glow-x) var(--glow-y),
    rgba(0, 174, 239, 0.18),
    transparent 45%
  );
  opacity: 0;
  transition: opacity 0.35s ease;
  pointer-events: none;
  z-index: 1;
}

.tilt-card:hover::before,
.tilt-card.is-tilting::before {
  opacity: 1;
}

.tips__card.tilt-card,
.about__stat-card.tilt-card {
  position: relative;
}

/* ——— Magnetic buttons ——— */
.magnetic-btn {
  position: relative;
  overflow: hidden;
}

.magnetic-btn::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    120deg,
    transparent 30%,
    rgba(255, 255, 255, 0.25) 50%,
    transparent 70%
  );
  transform: translateX(-120%);
  transition: transform 0.6s var(--ease-out);
}

.magnetic-btn:hover::after {
  transform: translateX(120%);
}

/* ——— Categorías / Destinos ——— */
.categories {
  padding: clamp(5rem, 10vw, 7.5rem) clamp(1.25rem, 4vw, 2.5rem);
  background: var(--lux-white);
  color: var(--lux-text);
}

.categories__inner {
  max-width: 1280px;
  margin: 0 auto;
}

.categories__header {
  text-align: center;
  max-width: 40rem;
  margin: 0 auto 3.5rem;
}

.categories__title {
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: var(--lux-text);
}

.categories__title-accent {
  color: var(--lux-cyan);
}

.categories__subtitle {
  margin-top: 0.85rem;
  font-size: clamp(1rem, 2vw, 1.125rem);
  color: var(--lux-text-muted);
  line-height: 1.55;
}

/* Acordeón horizontal de categorías */
.categories__accordion {
  display: flex;
  gap: 0.75rem;
  height: 32rem;
}

.cat-item {
  position: relative;
  flex: 1;
  min-width: 0;
  border-radius: 1.25rem;
  overflow: hidden;
  cursor: pointer;
  background-size: cover;
  background-position: center;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
  transition:
    flex-grow 0.7s var(--ease-out),
    box-shadow 0.4s ease;
}

.cat-item::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(0, 0, 0, 0.25) 0%,
    rgba(0, 0, 0, 0.05) 40%,
    rgba(0, 0, 0, 0.72) 100%
  );
  transition: background 0.4s ease;
}

.cat-item:hover:not(.is-active) {
  flex-grow: 1.6;
  box-shadow: 0 14px 40px rgba(0, 174, 239, 0.18);
}

.cat-item.is-active {
  flex-grow: 7;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
}

.cat-item__btn {
  position: absolute;
  inset: 0;
  z-index: 2;
  width: 100%;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
}

.cat-item__num {
  position: absolute;
  top: 1.15rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  font-family: var(--font);
  font-size: 0.8125rem;
  font-weight: 700;
  color: var(--lux-white);
  background: rgba(0, 174, 239, 0.85);
  padding: 0.3rem 0.6rem;
  border-radius: 999px;
  pointer-events: none;
  transition:
    left 0.5s var(--ease-out),
    transform 0.5s var(--ease-out);
}

.cat-item.is-active .cat-item__num {
  left: 1.5rem;
  transform: translateX(0);
}

/* Nombre vertical cuando está colapsada */
.cat-item__name {
  position: absolute;
  bottom: 1.25rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  writing-mode: vertical-rl;
  rotate: 180deg;
  font-family: var(--font);
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  color: var(--lux-white);
  text-shadow: 0 2px 14px rgba(0, 0, 0, 0.6);
  white-space: nowrap;
  pointer-events: none;
  opacity: 1;
  transition: opacity 0.3s ease;
}

.cat-item.is-active .cat-item__name {
  opacity: 0;
}

/* Contenido expandido */
.cat-item__body {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 2;
  padding: clamp(1.25rem, 3vw, 2rem);
  text-align: left;
  opacity: 0;
  transform: translateY(18px);
  pointer-events: none;
  transition:
    opacity 0.35s ease,
    transform 0.45s var(--ease-out);
}

.cat-item.is-active .cat-item__body {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
  transition-delay: 0.25s;
}

.cat-item__label {
  display: block;
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--lux-cyan);
  margin-bottom: 0.3rem;
}

.cat-item__title {
  font-size: clamp(1.6rem, 3.5vw, 2.5rem);
  font-weight: 700;
  color: var(--lux-white);
  line-height: 1.1;
}

.cat-item__desc {
  margin-top: 0.6rem;
  max-width: 30rem;
  font-size: 0.875rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.88);
}

.cat-item__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  margin-top: 1rem;
}

.cat-item__tag {
  padding: 0.35rem 0.8rem;
  font-size: 0.71875rem;
  font-weight: 500;
  color: var(--lux-white);
  background: rgba(0, 0, 0, 0.35);
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 999px;
  backdrop-filter: blur(6px);
}

.cat-item__tags-hint {
  display: block;
  width: 100%;
  margin-top: 0.35rem;
  font-size: 0.6875rem;
  font-weight: 500;
  font-style: italic;
  color: rgba(255, 255, 255, 0.65);
  letter-spacing: 0.02em;
}

.cat-item__cta {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 1.15rem;
  padding: 0.55rem 1.25rem;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--lux-white);
  background: var(--lux-cyan);
  border-radius: 999px;
  box-shadow: 0 4px 18px var(--lux-cyan-glow);
  transition:
    background 0.25s ease,
    gap 0.25s ease,
    transform 0.25s var(--ease-out);
}

.cat-item__cta:hover {
  background: var(--lux-cyan-hover);
  gap: 0.8rem;
  transform: translateY(-2px);
}

/* ——— Contacto ——— */
.contact {
  position: relative;
  padding: clamp(5rem, 10vw, 7.5rem) clamp(1.25rem, 4vw, 2.5rem);
  background: #060a10;
  color: var(--lux-white);
  overflow: hidden;
}

.contact__glow {
  position: absolute;
  top: 50%;
  right: 15%;
  width: 50vw;
  height: 50vw;
  max-width: 600px;
  max-height: 600px;
  transform: translateY(-50%);
  background: radial-gradient(circle, rgba(0, 174, 239, 0.15), transparent 65%);
  pointer-events: none;
  animation: glow-pulse 8s ease-in-out infinite;
}

@keyframes glow-pulse {
  0%,
  100% {
    opacity: 0.6;
    transform: translateY(-50%) scale(1);
  }
  50% {
    opacity: 1;
    transform: translateY(-50%) scale(1.08);
  }
}

/* Cielo nocturno animado */
.contact__bg {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
}

.contact__aurora {
  position: absolute;
  width: 55vw;
  height: 55vw;
  max-width: 750px;
  max-height: 750px;
  border-radius: 50%;
  filter: blur(60px);
}

.contact__aurora--1 {
  top: -22%;
  left: -12%;
  background: radial-gradient(circle, rgba(0, 174, 239, 0.22), transparent 60%);
  animation: aurora-drift-1 22s ease-in-out infinite;
}

.contact__aurora--2 {
  bottom: -28%;
  right: -10%;
  background: radial-gradient(circle, rgba(64, 120, 255, 0.16), transparent 60%);
  animation: aurora-drift-2 27s ease-in-out infinite;
}

@keyframes aurora-drift-1 {
  0%,
  100% {
    transform: translate(0, 0) scale(1);
  }
  33% {
    transform: translate(9vw, 7vh) scale(1.18);
  }
  66% {
    transform: translate(3vw, 14vh) scale(0.92);
  }
}

@keyframes aurora-drift-2 {
  0%,
  100% {
    transform: translate(0, 0) scale(1);
  }
  40% {
    transform: translate(-10vw, -9vh) scale(1.12);
  }
  70% {
    transform: translate(-4vw, -16vh) scale(0.95);
  }
}

.contact__stars span {
  position: absolute;
  width: var(--star-size, 2px);
  height: var(--star-size, 2px);
  background: #cdeffc;
  border-radius: 50%;
  box-shadow: 0 0 6px rgba(0, 174, 239, 0.6);
  animation: star-twinkle var(--twinkle-duration, 3s) ease-in-out
    var(--twinkle-delay, 0s) infinite;
}

@keyframes star-twinkle {
  0%,
  100% {
    opacity: 0.12;
    transform: scale(0.8);
  }
  50% {
    opacity: 0.9;
    transform: scale(1);
  }
}

.contact__shooting-star {
  position: absolute;
  width: 130px;
  height: 2px;
  background: linear-gradient(
    90deg,
    rgba(139, 224, 255, 0.95),
    rgba(0, 174, 239, 0.4),
    transparent
  );
  border-radius: 999px;
  opacity: 0;
  filter: drop-shadow(0 0 6px rgba(0, 174, 239, 0.8));
}

.contact__shooting-star--1 {
  top: 12%;
  left: 78%;
  animation: shooting-star 9s linear 1s infinite;
}

.contact__shooting-star--2 {
  top: 6%;
  left: 45%;
  animation: shooting-star 11s linear 5s infinite;
}

.contact__shooting-star--3 {
  top: 30%;
  left: 92%;
  animation: shooting-star 13s linear 8.5s infinite;
}

@keyframes shooting-star {
  0%,
  62% {
    transform: translate(0, 0) rotate(-32deg);
    opacity: 0;
  }
  64% {
    opacity: 1;
  }
  71% {
    opacity: 1;
  }
  74%,
  100% {
    transform: translate(-560px, 350px) rotate(-32deg);
    opacity: 0;
  }
}

.contact__inner {
  position: relative;
  z-index: 1;
  max-width: 1280px;
  margin: 0 auto;
}

.contact__header {
  text-align: center;
  max-width: 42rem;
  margin: 0 auto 3.5rem;
}

.contact__eyebrow {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--lux-cyan);
  margin-bottom: 0.75rem;
}

.contact__title {
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.02em;
}

.contact__title-accent {
  color: var(--lux-cyan);
}

.contact__subtitle {
  margin-top: 0.85rem;
  font-size: clamp(1rem, 2vw, 1.125rem);
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.55;
}

.contact__grid {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: start;
}

.contact__info-title {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 0.85rem;
}

.contact__info-text {
  font-size: 0.9375rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.75);
  margin-bottom: 2rem;
}

.contact__details {
  display: flex;
  flex-direction: column;
  gap: 1.35rem;
}

.contact__details li {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.contact__detail-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 2.75rem;
  height: 2.75rem;
  background: rgba(0, 174, 239, 0.12);
  border: 1px solid rgba(0, 174, 239, 0.25);
  border-radius: 0.65rem;
  color: var(--lux-cyan);
}

.contact__detail-icon svg {
  width: 1.25rem;
  height: 1.25rem;
}

.contact__detail-label {
  display: block;
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--lux-cyan);
  margin-bottom: 0.2rem;
}

.contact__details a {
  transition: color 0.25s ease;
}

.contact__details a:hover {
  color: var(--lux-cyan);
}

.contact__social {
  margin-top: 2.5rem;
}

.contact__social-label {
  display: block;
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.45);
  margin-bottom: 0.85rem;
}

.contact__social-links {
  display: flex;
  gap: 0.65rem;
}

.contact__social-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  font-size: 0.75rem;
  font-weight: 700;
  border: 1.5px solid rgba(255, 255, 255, 0.35);
  border-radius: 50%;
  transition:
    border-color 0.25s ease,
    background 0.25s ease,
    transform 0.25s var(--ease-out);
}

.contact__social-btn:hover {
  border-color: var(--lux-cyan);
  background: rgba(0, 174, 239, 0.15);
  transform: translateY(-3px);
}

@property --form-angle {
  syntax: "<angle>";
  inherits: false;
  initial-value: 0deg;
}

.contact__form {
  position: relative;
  padding: clamp(1.75rem, 3vw, 2.25rem);
  background: var(--lux-white);
  color: var(--lux-text);
  border-radius: 1.25rem;
  box-shadow:
    0 24px 60px rgba(0, 0, 0, 0.35),
    0 0 0 1px rgba(255, 255, 255, 0.05);
  animation: form-halo 5s ease-in-out infinite;
}

/* Borde de luz celeste giratoria */
.contact__form::after {
  content: "";
  position: absolute;
  inset: -3px;
  border-radius: 1.4rem;
  padding: 3px;
  background: conic-gradient(
    from var(--form-angle),
    transparent 0deg,
    rgba(0, 174, 239, 0.2) 50deg,
    rgba(0, 174, 239, 0.9) 95deg,
    rgba(139, 224, 255, 1) 120deg,
    rgba(0, 174, 239, 0.9) 145deg,
    rgba(0, 174, 239, 0.2) 190deg,
    transparent 240deg
  );
  -webkit-mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  mask-composite: exclude;
  pointer-events: none;
  animation: form-ring-spin 5s linear infinite;
}

@keyframes form-ring-spin {
  to {
    --form-angle: 360deg;
  }
}

@keyframes form-halo {
  0%,
  100% {
    box-shadow:
      0 24px 60px rgba(0, 0, 0, 0.35),
      0 0 35px rgba(0, 174, 239, 0.12);
  }
  50% {
    box-shadow:
      0 24px 60px rgba(0, 0, 0, 0.35),
      0 0 65px rgba(0, 174, 239, 0.32);
  }
}

.contact__form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-bottom: 1rem;
}

.contact__field {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.contact__field--full {
  margin-bottom: 1.25rem;
}

.contact__field-label {
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--lux-text);
}

.contact__field input,
.contact__field select,
.contact__field textarea {
  width: 100%;
  padding: 0.8rem 1rem;
  font-family: var(--font);
  font-size: 0.9375rem;
  color: var(--lux-text);
  background: #f5f7f9;
  border: 1.5px solid transparent;
  border-radius: 0.65rem;
  outline: none;
  transition:
    border-color 0.25s ease,
    background 0.25s ease,
    box-shadow 0.25s ease;
}

.contact__field input:focus,
.contact__field select:focus,
.contact__field textarea:focus {
  background: var(--lux-white);
  border-color: var(--lux-cyan);
  box-shadow: 0 0 0 4px rgba(0, 174, 239, 0.15);
}

.contact__field textarea {
  resize: vertical;
  min-height: 6rem;
}

.contact__submit {
  width: 100%;
  padding: 0.95rem 1.5rem;
  font-family: var(--font);
  font-size: 1rem;
  font-weight: 600;
  color: var(--lux-white);
  background: var(--lux-cyan);
  border: none;
  border-radius: 0.75rem;
  cursor: pointer;
  box-shadow: 0 6px 24px var(--lux-cyan-glow);
  transition:
    background 0.25s ease,
    transform 0.25s var(--ease-out),
    box-shadow 0.25s ease;
}

.contact__submit:hover {
  background: var(--lux-cyan-hover);
  transform: translateY(-2px);
  box-shadow: 0 10px 32px var(--lux-cyan-glow);
}

.contact__form-status {
  margin-top: 0.85rem;
  font-size: 0.875rem;
  text-align: center;
  min-height: 1.25rem;
}

.contact__form-status.is-success {
  color: #16a34a;
}

.contact__form-status.is-error {
  color: #dc2626;
}

/* ——— Footer ——— */
.footer {
  background: #000;
  color: rgba(255, 255, 255, 0.75);
  padding: clamp(3.5rem, 8vw, 5rem) clamp(1.25rem, 4vw, 2.5rem) 2rem;
}

.footer__inner {
  max-width: 1280px;
  margin: 0 auto;
}

.footer__grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: clamp(2rem, 4vw, 3rem);
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer__logo {
  height: 5rem;
  width: auto;
  max-width: 12rem;
  margin-bottom: 1rem;
  object-fit: contain;
  filter: brightness(0) invert(1);
}

.footer__tagline {
  font-size: 0.875rem;
  line-height: 1.65;
  max-width: 18rem;
  margin-bottom: 1.5rem;
}

.footer__col-title {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--lux-cyan);
  margin-bottom: 1.25rem;
}

.footer__col ul {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.footer__col a {
  font-size: 0.875rem;
  position: relative;
  display: inline-block;
  transition: color 0.25s ease;
}

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

.footer__col a:hover {
  color: var(--lux-white);
}

.footer__col a:hover::after {
  width: 100%;
}

.footer__contact-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
  font-size: 0.875rem;
  line-height: 1.5;
}

.footer__contact-list svg {
  width: 1rem;
  height: 1rem;
  flex-shrink: 0;
  margin-top: 0.15rem;
  color: var(--lux-cyan);
}

.footer__cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 1.5rem;
  padding: 0.7rem 1.5rem;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--lux-white);
  background: var(--lux-cyan);
  border-radius: 999px;
  box-shadow: 0 4px 20px var(--lux-cyan-glow);
  transition:
    background 0.25s ease,
    transform 0.25s var(--ease-out);
}

.footer__cta:hover {
  background: var(--lux-cyan-hover);
  transform: translateY(-2px);
}

.footer__bottom {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding-top: 1.75rem;
  font-size: 0.8125rem;
  color: rgba(255, 255, 255, 0.45);
}

.footer__legal {
  display: flex;
  align-items: center;
  gap: 0.65rem;
}

.footer__legal a {
  transition: color 0.25s ease;
}

.footer__legal a:hover {
  color: var(--lux-cyan);
}

.footer__credit {
  font-size: 0.8125rem;
  color: rgba(255, 255, 255, 0.45);
}

.footer__credit-link {
  font-weight: 600;
  color: rgba(255, 255, 255, 0.7);
  transition: color 0.25s ease;
}

.footer__credit-link:hover {
  color: var(--lux-cyan);
}

/* ——— WhatsApp FAB ——— */
.whatsapp-fab {
  position: fixed;
  right: 1.5rem;
  bottom: 1.5rem;
  z-index: 90;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 3.5rem;
  height: 3.5rem;
  background: #25d366;
  color: var(--lux-white);
  border-radius: 50%;
  box-shadow: 0 6px 24px rgba(37, 211, 102, 0.45);
  transition:
    transform 0.3s var(--ease-out),
    box-shadow 0.3s ease;
  animation: fab-pulse 3s ease-in-out infinite;
}

.whatsapp-fab svg {
  width: 1.65rem;
  height: 1.65rem;
}

.whatsapp-fab:hover {
  transform: scale(1.1) translateY(-3px);
  box-shadow: 0 10px 32px rgba(37, 211, 102, 0.55);
  animation: none;
}

@keyframes fab-pulse {
  0%,
  100% {
    box-shadow: 0 6px 24px rgba(37, 211, 102, 0.45);
  }
  50% {
    box-shadow: 0 6px 32px rgba(37, 211, 102, 0.65), 0 0 0 8px rgba(37, 211, 102, 0.12);
  }
}

/* ——— Responsive extra ——— */
@media (max-width: 1024px) {
  /* Acordeón vertical en pantallas chicas */
  .categories__accordion {
    flex-direction: column;
    height: auto;
    gap: 0.6rem;
  }

  .cat-item {
    flex: none;
    height: 4.25rem;
    transition:
      height 0.6s var(--ease-out),
      box-shadow 0.4s ease;
  }

  .cat-item:hover:not(.is-active) {
    flex-grow: 0;
  }

  .cat-item.is-active {
    flex-grow: 0;
    height: 24rem;
  }

  .cat-item__num {
    top: 50%;
    left: 1.15rem;
    transform: translate(0, -50%);
    transition: top 0.5s var(--ease-out);
  }

  .cat-item.is-active .cat-item__num {
    top: 1.5rem;
    left: 1.25rem;
    transform: translate(0, 0);
  }

  .cat-item__name {
    writing-mode: horizontal-tb;
    rotate: 0deg;
    bottom: auto;
    top: 50%;
    left: 3.6rem;
    transform: translateY(-50%);
  }

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

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

@media (max-width: 640px) {
  :root {
    --nav-height: 4.25rem;
  }

  .contact {
    padding: clamp(3rem, 8vw, 5rem) 1rem;
  }

  .contact__grid {
    gap: 2rem;
  }

  .contact__form {
    padding: 1.25rem;
  }

  .contact__form-row {
    grid-template-columns: 1fr;
  }

  .cta-banner__title {
    font-size: 1.25rem;
  }

  .cta-banner__btn {
    width: 100%;
    justify-content: center;
  }

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

  .about__cta {
    justify-content: center;
  }

  .about__photo-card {
    width: 100%;
  }

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

  .footer__bottom {
    flex-direction: column;
    text-align: center;
    gap: 0.75rem;
  }

  .footer__legal {
    flex-wrap: wrap;
    justify-content: center;
  }

  .whatsapp-fab {
    right: 1rem;
    bottom: 1rem;
    width: 3.25rem;
    height: 3.25rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  .anim-fade-up,
  .header {
    animation: none;
    opacity: 1;
    transform: none;
  }

  .hero__scroll-line {
    animation: none;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }

  .about__bg::before,
  .about__bg::after,
  .about__ripple,
  .about__particles span,
  .about__plane,
  .about__stat-col.is-visible {
    animation: none;
  }

  .about__ripple,
  .about__particles span,
  .about__plane {
    display: none;
  }

  .hero__glow,
  .hero__title-accent,
  .cta-banner__bg::after,
  .contact__aurora,
  .contact__stars span,
  .contact__shooting-star {
    animation: none;
  }

  .contact__shooting-star {
    display: none;
  }

  .contact__form,
  .contact__form::after {
    animation: none;
  }

  .tilt-card {
    transform: none;
  }

  .tilt-card::before {
    display: none;
  }

  .whatsapp-fab {
    animation: none;
  }

  .contact__glow {
    animation: none;
  }
}
