/* Design tokens (from the original Tailwind theme) */
:root {
  --background: 0 0% 6%;
  --foreground: 40 30% 96%;
  --card: 0 0% 9%;
  --primary: 42 55% 55%;
  --primary-foreground: 0 0% 6%;
  --secondary: 0 0% 12%;
  --muted-foreground: 40 8% 65%;
  --border: 0 0% 16%;
  --whatsapp: #25d366;

  --gradient-gold: linear-gradient(135deg, hsl(42 55% 55%) 0%, hsl(38 65% 48%) 50%, hsl(42 70% 65%) 100%);
  --gradient-dark: linear-gradient(180deg, hsl(0 0% 4%) 0%, hsl(0 0% 8%) 100%);
  --gradient-hero: linear-gradient(180deg, hsl(0 0% 4% / 0.4) 0%, hsl(0 0% 4% / 0.85) 70%, hsl(0 0% 6%) 100%);
  --shadow-gold: 0 10px 40px -10px hsl(42 55% 55% / 0.35);
  --shadow-elegant: 0 20px 60px -20px hsl(0 0% 0% / 0.6);
  --transition-smooth: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);

  --font-display: "Playfair Display", serif;
  --font-sans: Inter, system-ui, sans-serif;
}

/* Reset: the parts of Tailwind's preflight the page relies on */
*, ::before, ::after { box-sizing: border-box; border: 0 solid hsl(var(--border)); }
html { line-height: 1.5; -webkit-text-size-adjust: 100%; font-family: var(--font-sans); scroll-behavior: smooth; }
body {
  margin: 0;
  line-height: inherit;
  background: hsl(var(--background));
  color: hsl(var(--foreground));
  font-family: var(--font-sans);
  font-feature-settings: "ss01", "cv11";
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
h1, h2, h3, h4, p { margin: 0; font-size: inherit; font-weight: inherit; }
h1, h2, h3, h4 { font-family: var(--font-display); letter-spacing: -0.025em; }
ul { list-style: none; margin: 0; padding: 0; }
a { color: inherit; text-decoration: inherit; }
img, svg { display: block; vertical-align: middle; }
img { max-width: 100%; height: auto; }
summary { list-style: none; cursor: pointer; }
summary::-webkit-details-marker { display: none; }

/* Utilities */
.container { max-width: 80rem; margin-inline: auto; padding-inline: 1.5rem; }
@media (min-width: 1024px) { .container { padding-inline: 3rem; } }
.gold-text {
  background: var(--gradient-gold);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
em.gold-text { font-style: normal; }
.gold-divider { display: inline-block; width: 3rem; height: 1px; background: hsl(var(--primary)); }
.bg-dark { background-image: var(--gradient-dark); }
@media (max-width: 639.98px) { .hide-xs { display: none !important; } }

.icon { width: 1.5rem; height: 1.5rem; flex-shrink: 0; }
.icon-3_5 { width: 0.875rem; height: 0.875rem; }
.icon-4 { width: 1rem; height: 1rem; }
.icon-5 { width: 1.25rem; height: 1.25rem; }
.icon-7 { width: 1.75rem; height: 1.75rem; }
.icon-10 { width: 2.5rem; height: 2.5rem; }

.fade-up { animation: fadeUp 0.9s cubic-bezier(0.22, 1, 0.36, 1) both; }
.shimmer { animation: shimmer 2.4s ease-in-out infinite; }
@keyframes fadeUp { from { opacity: 0; transform: translateY(24px); } to { opacity: 1; transform: translateY(0); } }
@keyframes shimmer { 0%, 100% { opacity: 0.4; } 50% { opacity: 1; } }

/* Header */
.header { position: fixed; top: 0; left: 0; right: 0; z-index: 50; transition: var(--transition-smooth); }
.header.is-scrolled {
  background: hsl(var(--background) / 0.85);
  -webkit-backdrop-filter: blur(24px);
  backdrop-filter: blur(24px);
  border-bottom: 1px solid hsl(var(--border));
}
.header__bar { display: flex; align-items: center; justify-content: space-between; height: 7rem; }
.header__logo { display: flex; align-items: center; gap: 0.5rem; }
.header__logo img { height: 5rem; width: auto; }
.header__nav { display: none; align-items: center; gap: 2.25rem; }
.header__link {
  font-size: 0.875rem; line-height: 1.25rem; letter-spacing: 0.025em;
  color: hsl(var(--muted-foreground)); transition: var(--transition-smooth);
}
.header__link:hover { color: hsl(var(--primary)); }
.header__actions { display: flex; align-items: center; gap: 0.75rem; }
.btn-book {
  display: none; align-items: center; gap: 0.5rem;
  background-image: var(--gradient-gold); color: hsl(var(--primary-foreground));
  padding: 0.625rem 1.25rem; font-size: 0.875rem; line-height: 1.25rem; font-weight: 500; letter-spacing: 0.025em;
  transition: var(--transition-smooth);
}
.btn-book:hover { box-shadow: var(--shadow-gold); }
.header__call { padding: 0.5rem; color: hsl(var(--primary)); }
.header__menu-btn { padding: 0.5rem; color: hsl(var(--foreground)); }
.menu-close-btn { display: none; }
.header.menu-open .menu-open-btn, .header:has(#menu:target) .menu-open-btn { display: none; }
.header.menu-open .menu-close-btn, .header:has(#menu:target) .menu-close-btn { display: block; }
.mobile-menu {
  display: none;
  background: hsl(var(--background) / 0.95);
  -webkit-backdrop-filter: blur(24px);
  backdrop-filter: blur(24px);
  border-top: 1px solid hsl(var(--border));
}
.header.menu-open .mobile-menu, .mobile-menu:target { display: block; }
.mobile-menu__nav { display: flex; flex-direction: column; gap: 1rem; padding-block: 1.5rem; }
.mobile-menu__link { color: hsl(var(--foreground) / 0.8); padding-block: 0.5rem; }
.mobile-menu__link:hover { color: hsl(var(--primary)); }
@media (min-width: 768px) {
  .header__bar { height: 9rem; }
  .header__logo img { height: 7rem; }
  .btn-book { display: inline-flex; }
  .header__call { display: none; }
}
@media (min-width: 1024px) {
  .header__nav { display: flex; }
  .header__menu-btn, .mobile-menu { display: none !important; }
}

/* Language switcher */
.lang { position: relative; }
.lang__btn {
  display: inline-flex; align-items: center; gap: 0.375rem; padding: 0.5rem 0.75rem;
  font-size: 0.75rem; line-height: 1rem; letter-spacing: 0.1em; text-transform: uppercase;
  color: hsl(var(--foreground) / 0.8); border: 1px solid hsl(var(--border));
  transition: var(--transition-smooth);
}
.lang__btn:hover { color: hsl(var(--primary)); border-color: hsl(var(--primary)); }
.lang__menu {
  position: absolute; right: 0; top: 100%; margin-top: 0.5rem; min-width: 80px; z-index: 50;
  background: hsl(var(--background)); border: 1px solid hsl(var(--border));
}
.lang__item {
  display: block; width: 100%; text-align: left; padding: 0.5rem 1rem;
  font-size: 0.75rem; line-height: 1rem; letter-spacing: 0.1em; text-transform: uppercase;
  color: hsl(var(--foreground) / 0.8); transition: var(--transition-smooth);
}
.lang__item:hover { background: hsl(var(--secondary)); }
.lang__item.is-current { color: hsl(var(--primary)); }

/* Buttons */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 0.75rem; padding: 1rem 2rem;
  font-size: 0.875rem; line-height: 1.25rem; letter-spacing: 0.05em; text-transform: uppercase;
  transition: var(--transition-smooth);
}
.btn--gold { background-image: var(--gradient-gold); color: hsl(var(--primary-foreground)); }
.btn--gold:hover { box-shadow: var(--shadow-gold); }
.btn--hero { font-weight: 500; }
.btn--hero:hover { transform: scale(1.02); }
.btn--outline { border: 1px solid hsl(var(--primary) / 0.6); color: hsl(var(--foreground)); font-weight: 500; }
.btn--outline:hover { background: hsl(var(--primary) / 0.1); border-color: hsl(var(--primary)); }
.btn--cta { justify-content: flex-start; gap: 0.5rem; margin-top: 3rem; }

/* Hero */
.hero { position: relative; min-height: 100vh; display: flex; align-items: center; overflow: hidden; }
.hero__img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.hero__overlay { position: absolute; inset: 0; background-image: var(--gradient-hero); }
.hero__shade { position: absolute; inset: 0; background: hsl(var(--background) / 0.4); }
.hero__content { position: relative; z-index: 10; padding-block: 8rem; }
.hero__inner { max-width: 48rem; }
.eyebrow { display: flex; align-items: center; gap: 0.75rem; margin-bottom: 1.5rem; }
.eyebrow--hero { margin-bottom: 2rem; }
.eyebrow__text {
  color: hsl(var(--primary)); font-size: 0.75rem; line-height: 1rem; letter-spacing: 0.3em; text-transform: uppercase;
}
.hero__title { font-size: 3rem; line-height: 1.05; margin-bottom: 2rem; }
.hero__hl { font-style: italic; }
.hero__desc {
  font-size: 1.125rem; line-height: 1.625; color: hsl(var(--muted-foreground)); max-width: 42rem; margin-bottom: 3rem;
}
.hero__ctas { display: flex; flex-direction: column; gap: 1rem; margin-top: 2rem; }
.hero__stats { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 2rem; margin-top: 4rem; max-width: 36rem; }
.hero__stat-v { font-family: var(--font-display); font-size: 1.875rem; line-height: 2.25rem; }
.hero__stat-l {
  font-size: 0.75rem; line-height: 1rem; letter-spacing: 0.1em; text-transform: uppercase;
  color: hsl(var(--muted-foreground)); margin-top: 0.25rem;
}
@media (min-width: 640px) { .hero__ctas { flex-direction: row; margin-top: 0; } }
@media (min-width: 768px) {
  .hero__title { font-size: 4.5rem; line-height: 1; }
  .hero__desc { font-size: 1.25rem; line-height: 1.75rem; }
}
@media (min-width: 1024px) { .hero__title { font-size: 6rem; } }

/* Sections */
.section { padding-block: 7rem; }
@media (min-width: 1024px) { .section { padding-block: 9rem; } }
.section-header--center { text-align: center; max-width: 48rem; margin-inline: auto; }
.section-header--center .eyebrow { justify-content: center; }
.section-header--left { max-width: 42rem; }
.section-title { font-size: 2.25rem; line-height: 1.1; }
@media (min-width: 768px) { .section-title { font-size: 3rem; line-height: 1; } }
@media (min-width: 1024px) { .section-title { font-size: 3.75rem; } }

/* Services */
.services-grid {
  display: grid; gap: 1px; margin-top: 4rem;
  background: hsl(var(--border)); border: 1px solid hsl(var(--border));
}
.service-card { background: hsl(var(--card)); padding: 1.5rem; transition: var(--transition-smooth); }
.service-card:hover { background: hsl(var(--secondary)); }
.service-card__icon { color: hsl(var(--primary)); margin-bottom: 1rem; transform-origin: left; transition: var(--transition-smooth); }
.service-card:hover .service-card__icon { transform: scale(1.1); }
.service-card__title { font-size: 1rem; line-height: 1.5rem; margin-bottom: 0.5rem; transition: var(--transition-smooth); }
.service-card:hover .service-card__title { color: hsl(var(--primary)); }
.service-card__desc { color: hsl(var(--muted-foreground)); font-size: 0.875rem; line-height: 1.625; }
@media (min-width: 640px) {
  .service-card { padding: 2.5rem; }
  .service-card__icon { margin-bottom: 1.5rem; }
  .service-card__title { font-size: 1.25rem; line-height: 1.75rem; margin-bottom: 0.75rem; }
}
@media (min-width: 768px) { .services-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (min-width: 1024px) { .services-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); } }

/* Airport / School split sections */
.split { position: relative; overflow: hidden; }
.split__grid { display: grid; gap: 4rem; align-items: center; }
.split__desc { color: hsl(var(--muted-foreground)); line-height: 1.625; margin-top: 2rem; margin-bottom: 2.5rem; }
.features { display: grid; gap: 0.75rem; margin-top: 2rem; }
.features__item { display: flex; align-items: center; gap: 0.75rem; font-size: 0.875rem; line-height: 1.25rem; }
.features__item .icon { color: hsl(var(--primary)); }
.media { position: relative; }
.media--first { order: 9999; }
.media__glow { position: absolute; inset: -1rem; background-image: var(--gradient-gold); opacity: 0.2; filter: blur(64px); }
.media__frame {
  position: relative; aspect-ratio: 4 / 5; overflow: hidden;
  background: hsl(var(--secondary)); border: 1px solid hsl(var(--border));
}
.media__img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: center; }
.media__shade {
  position: absolute; inset: 0;
  background-image: linear-gradient(to top, hsl(var(--background)), hsl(var(--background) / 0.3), transparent);
}
.media__caption { position: absolute; bottom: 0; left: 0; right: 0; padding: 2.5rem; }
.media__icon { color: hsl(var(--primary)); margin-bottom: 1rem; }
.media__title { font-family: var(--font-display); font-size: 1.5rem; line-height: 2rem; }
.media__sub { font-size: 0.875rem; line-height: 1.25rem; color: hsl(var(--muted-foreground)); margin-top: 0.5rem; }
@media (min-width: 640px) {
  .features { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 1rem; margin-top: 0; }
}
@media (min-width: 1024px) {
  .split__grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .media--first { order: -9999; }
}

/* Advantages */
.adv-grid { display: grid; gap: 1rem; margin-top: 3rem; }
.adv-card { border: 1px solid hsl(var(--border)); padding: 1.25rem; transition: var(--transition-smooth); }
.adv-card:hover { border-color: hsl(var(--primary)); }
.adv-card__icon { color: hsl(var(--primary)); margin-bottom: 0.75rem; transition: var(--transition-smooth); }
.adv-card:hover .adv-card__icon { transform: translateY(-0.25rem); }
.adv-card__title { font-size: 1rem; line-height: 1.5rem; margin-bottom: 0.25rem; }
.adv-card__desc { color: hsl(var(--muted-foreground)); font-size: 0.875rem; line-height: 1.625; }
@media (min-width: 640px) {
  .adv-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 1.5rem; margin-top: 4rem; }
  .adv-card { padding: 2rem; }
  .adv-card__icon { margin-bottom: 1.25rem; }
  .adv-card__title { font-size: 1.125rem; line-height: 1.75rem; margin-bottom: 0.5rem; }
}
@media (min-width: 1024px) { .adv-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); } }

/* Pricing */
.price-grid { display: grid; gap: 1rem; margin-top: 3rem; }
.price-card {
  border: 1px solid hsl(var(--border)); padding: 1.25rem; background: hsl(var(--card));
  transition: var(--transition-smooth);
}
.price-card:hover { border-color: hsl(var(--primary)); box-shadow: var(--shadow-gold); }
.price-card__name { font-size: 1rem; line-height: 1.5rem; margin-bottom: 0.5rem; }
.price-card__from { font-family: var(--font-display); font-size: 1.5rem; line-height: 2rem; margin-bottom: 0.5rem; }
.price-card__desc { color: hsl(var(--muted-foreground)); font-size: 0.875rem; line-height: 1.625; }
.price-note { text-align: center; color: hsl(var(--muted-foreground)); margin: 3rem auto 0; max-width: 42rem; }
.price-note a { color: hsl(var(--primary)); border-bottom: 1px solid hsl(var(--primary)); }
@media (min-width: 640px) {
  .price-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 1.5rem; margin-top: 4rem; }
  .price-card { padding: 2rem; }
  .price-card__name { font-size: 1.125rem; line-height: 1.75rem; }
  .price-card__from { font-size: 1.875rem; line-height: 2.25rem; margin-bottom: 1rem; }
}
@media (min-width: 1024px) { .price-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); } }

/* Footer */
.footer { background-image: var(--gradient-dark); border-top: 1px solid hsl(var(--border)); padding: 5rem 0 2.5rem; }
.footer__grid { display: grid; gap: 2.5rem; padding-bottom: 3rem; }
.footer__name { font-family: var(--font-display); font-size: 1.5rem; line-height: 2rem; margin-bottom: 1rem; }
.footer__name .gold-text { font-weight: 600; }
.footer__desc { color: hsl(var(--muted-foreground)); max-width: 28rem; font-size: 0.875rem; line-height: 1.625; }
.footer__services { display: none; }
.footer__heading {
  font-size: 0.75rem; line-height: 1rem; letter-spacing: 0.1em; text-transform: uppercase;
  color: hsl(var(--primary)); margin-bottom: 1.25rem;
}
.footer__list { font-size: 0.875rem; line-height: 1.25rem; }
.footer__list > li + li { margin-top: 0.75rem; }
.footer__list--muted { color: hsl(var(--muted-foreground)); }
.footer__list--muted a, .footer__contact { transition: var(--transition-smooth); }
.footer__list--muted a:hover, .footer__contact:hover { color: hsl(var(--primary)); }
.footer__contact { color: hsl(var(--foreground)); }
.footer__muted { color: hsl(var(--muted-foreground)); }
.footer__bottom {
  border-top: 1px solid hsl(var(--border)); padding-top: 2rem;
  display: flex; flex-direction: column; justify-content: space-between; align-items: center; gap: 1rem;
  font-size: 0.75rem; line-height: 1rem; color: hsl(var(--muted-foreground));
}
@media (min-width: 640px) { .footer__bottom { flex-direction: row; } }
@media (min-width: 768px) {
  .footer__grid { grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 3rem; padding-bottom: 4rem; }
  .footer__brand { grid-column: span 2 / span 2; }
  .footer__services { display: block; }
}

/* Floating buttons */
.fab { position: fixed; bottom: 1.5rem; z-index: 40; padding: 1rem; border-radius: 9999px; transition: var(--transition-smooth); }
.fab--wa { right: 1.5rem; background: var(--whatsapp); color: #fff; box-shadow: var(--shadow-elegant); }
.fab--wa:hover { transform: scale(1.1); }
.fab--call { left: 1.5rem; background-image: var(--gradient-gold); color: hsl(var(--primary-foreground)); box-shadow: var(--shadow-gold); }
@media (min-width: 768px) { .fab--call { display: none; } }

/* 404 */
.not-found { padding: 12rem 0 7rem; text-align: center; }
.not-found__code { font-size: 3.75rem; line-height: 1; margin-bottom: 1.5rem; }
.not-found__text { color: hsl(var(--muted-foreground)); margin-bottom: 2.5rem; }
.not-found__langs {
  display: flex; justify-content: center; gap: 1.5rem; margin-top: 2.5rem;
  font-size: 0.75rem; letter-spacing: 0.1em; color: hsl(var(--muted-foreground));
}
.not-found__lang:hover { color: hsl(var(--primary)); }
