/* Ábordo Turismo — landing */

:root {
  --sea-ink: #062a33;
  --sea-deep: #0a4552;
  --sea: #147a8a;
  --sea-bright: #1fa3b5;
  --foam: #f2f8f9;
  --sand: #c9b896;
  --sun: #d4a017;
  --white: #ffffff;
  --ink: #0c1f24;
  --muted: rgba(12, 31, 36, 0.68);
  --wa: #1fad4e;
  --wa-dark: #17943f;
  --header-h: 4.25rem;
  --float-h: 4.5rem;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --font-display: "Syne", sans-serif;
  --font-body: "Figtree", sans-serif;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 1.0625rem;
  line-height: 1.6;
  color: var(--ink);
  background:
    radial-gradient(1200px 600px at 10% -10%, rgba(31, 163, 181, 0.12), transparent 60%),
    radial-gradient(900px 500px at 100% 20%, rgba(212, 160, 23, 0.08), transparent 55%),
    linear-gradient(180deg, #eef6f7 0%, var(--foam) 35%, #e8f2f4 100%);
  padding-bottom: calc(var(--float-h) + 1.5rem);
  -webkit-font-smoothing: antialiased;
}

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

a {
  color: inherit;
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  background: var(--sea-ink);
  color: var(--white);
  padding: 0.75rem 1rem;
  z-index: 100;
}

.skip-link:focus {
  left: 1rem;
  top: 1rem;
}

/* Header */
.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 40;
  height: var(--header-h);
  background: linear-gradient(180deg, rgba(6, 42, 51, 0.55), transparent);
  transition: background 0.35s var(--ease), backdrop-filter 0.35s var(--ease);
}

.site-header.is-scrolled {
  background: rgba(6, 42, 51, 0.92);
  backdrop-filter: blur(12px);
}

.header-inner {
  max-width: 1120px;
  margin: 0 auto;
  height: 100%;
  padding: 0 1.25rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  text-decoration: none;
  color: var(--white);
}

.logo-mark {
  width: 2.1rem;
  height: 2.1rem;
  border-radius: 0.35rem;
  display: grid;
  place-items: center;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.15rem;
  background: linear-gradient(145deg, var(--sea-bright), var(--sea-deep));
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.2);
}

.logo-text {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.2rem;
  letter-spacing: 0.02em;
}

.header-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2.5rem;
  padding: 0 1rem;
  border-radius: 0.4rem;
  background: var(--wa);
  color: var(--white);
  font-weight: 700;
  font-size: 0.9rem;
  text-decoration: none;
  transition: background 0.2s ease, transform 0.2s ease;
}

.header-cta:hover {
  background: var(--wa-dark);
  transform: translateY(-1px);
}

@media (max-width: 520px) {
  .header-cta {
    font-size: 0.8rem;
    padding: 0 0.75rem;
  }
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  min-height: 3.1rem;
  padding: 0.85rem 1.4rem;
  border-radius: 0.45rem;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 1rem;
  text-decoration: none;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform 0.25s var(--ease), background 0.2s ease, border-color 0.2s ease, box-shadow 0.25s ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  background: var(--wa);
  color: var(--white);
  box-shadow: 0 10px 28px rgba(31, 173, 78, 0.28);
}

.btn-primary:hover {
  background: var(--wa-dark);
}

.btn-ghost {
  background: rgba(255, 255, 255, 0.12);
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.35);
  backdrop-filter: blur(6px);
}

.btn-ghost:hover {
  background: rgba(255, 255, 255, 0.22);
}

.btn-lg {
  min-height: 3.4rem;
  padding-inline: 1.75rem;
  font-size: 1.05rem;
}

/* Hero */
.hero {
  position: relative;
  min-height: 100svh;
  display: grid;
  align-items: end;
  color: var(--white);
  overflow: hidden;
}

.hero-media {
  position: absolute;
  inset: 0;
}

.hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.06);
  animation: hero- ken 18s var(--ease) forwards;
}

@keyframes hero-ken {
  to {
    transform: scale(1);
  }
}

.hero-veil {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(6, 42, 51, 0.35) 0%, rgba(6, 42, 51, 0.15) 35%, rgba(6, 42, 51, 0.72) 72%, rgba(6, 42, 51, 0.92) 100%),
    linear-gradient(90deg, rgba(6, 42, 51, 0.45), transparent 55%);
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 1120px;
  width: 100%;
  margin: 0 auto;
  padding: calc(var(--header-h) + 2rem) 1.25rem 4.5rem;
  animation: rise 0.9s var(--ease) both;
}

@keyframes rise {
  from {
    opacity: 0;
    transform: translateY(28px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.brand-lockup {
  margin: 0 0 0.75rem;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(2.4rem, 7vw, 4.5rem);
  line-height: 0.95;
  letter-spacing: -0.03em;
  text-shadow: 0 8px 40px rgba(0, 0, 0, 0.35);
}

.hero h1 {
  margin: 0 0 1rem;
  max-width: 14ch;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(1.55rem, 3.6vw, 2.35rem);
  line-height: 1.15;
  letter-spacing: -0.02em;
}

.hero-lead {
  margin: 0 0 1.75rem;
  max-width: 38ch;
  font-size: 1.08rem;
  color: rgba(255, 255, 255, 0.9);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}

.hero-trust {
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.55rem;
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.88);
}

.stars {
  color: var(--sun);
  letter-spacing: 0.08em;
}

/* Proof strip */
.proof {
  background: var(--sea-ink);
  color: var(--white);
  padding: 1.35rem 0;
  overflow: hidden;
}

.proof-track {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 1.25rem;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
}

.proof-item {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
}

.proof-item strong {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 700;
}

.proof-item span {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.7);
}

@media (max-width: 800px) {
  .proof-track {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Sections shared */
.section-intro {
  max-width: 40rem;
  margin: 0 auto 2.5rem;
  padding: 0 1.25rem;
  text-align: center;
}

.section-intro h2,
.experience-copy h3,
.route-body h3,
.final-cta h2 {
  font-family: var(--font-display);
  font-weight: 700;
  letter-spacing: -0.025em;
  line-height: 1.15;
}

.section-intro h2 {
  margin: 0 0 0.85rem;
  font-size: clamp(1.7rem, 3.5vw, 2.4rem);
  color: var(--sea-ink);
}

.section-intro p {
  margin: 0;
  color: var(--muted);
}

.section-cta {
  display: flex;
  justify-content: center;
  margin-top: 2.25rem;
  padding: 0 1.25rem;
}

/* Experience */
.experience {
  padding: 5rem 0 2rem;
}

.experience-stage {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 1.25rem;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 1.75rem;
  align-items: center;
}

.experience-video {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  border-radius: 0.35rem;
  background: var(--sea-deep);
}

.experience-copy h3 {
  margin: 0 0 0.85rem;
  font-size: clamp(1.4rem, 2.5vw, 1.85rem);
  color: var(--sea-ink);
}

.experience-copy p {
  margin: 0 0 1.5rem;
  color: var(--muted);
}

@media (max-width: 860px) {
  .experience-stage {
    grid-template-columns: 1fr;
  }
}

/* Routes — full-bleed image rows, not card UI */
.routes {
  padding: 4rem 0 2rem;
}

.routes-grid {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 1.25rem;
  display: grid;
  gap: 1.25rem;
}

.route {
  position: relative;
  min-height: 18rem;
  overflow: hidden;
  border-radius: 0.35rem;
  color: var(--white);
}

.route img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s var(--ease);
}

.route:hover img {
  transform: scale(1.05);
}

.route::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 25%, rgba(6, 42, 51, 0.85) 100%);
}

.route-body {
  position: relative;
  z-index: 1;
  height: 100%;
  min-height: 18rem;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1.5rem;
}

.route-body h3 {
  margin: 0 0 0.4rem;
  font-size: 1.55rem;
}

.route-body p {
  margin: 0;
  max-width: 36ch;
  color: rgba(255, 255, 255, 0.88);
}

@media (min-width: 800px) {
  .routes-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .route {
    min-height: 24rem;
  }

  .route-body {
    min-height: 24rem;
  }
}

/* Gallery */
.gallery {
  padding: 4rem 0 1rem;
}

.gallery-mosaic {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 1.25rem;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  grid-template-rows: 14rem 14rem;
  gap: 0.75rem;
}

.gallery-mosaic img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 0.3rem;
}

.gallery-mosaic img:first-child {
  grid-row: 1 / 3;
}

@media (max-width: 700px) {
  .gallery-mosaic {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 11rem 11rem 11rem;
  }

  .gallery-mosaic img:first-child {
    grid-column: 1 / -1;
    grid-row: auto;
  }
}

/* Reviews */
.reviews {
  padding: 4.5rem 0 2rem;
}

.reviews-grid {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 1.25rem;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

.review {
  margin: 0;
  padding: 0;
  border: 0;
  background: transparent;
}

.review .stars {
  margin-bottom: 0.65rem;
  font-size: 1.05rem;
}

.review p {
  margin: 0 0 1rem;
  font-size: 1.05rem;
  color: var(--sea-ink);
}

.review-tag {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--sea);
}

@media (max-width: 800px) {
  .reviews-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}

/* Final CTA */
.final-cta {
  position: relative;
  margin-top: 3.5rem;
  min-height: 70svh;
  display: grid;
  align-items: center;
  color: var(--white);
  overflow: hidden;
}

.final-cta-bg {
  position: absolute;
  inset: 0;
}

.final-cta-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.final-veil {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(6, 42, 51, 0.55), rgba(6, 42, 51, 0.88));
}

.final-cta-content {
  position: relative;
  z-index: 1;
  max-width: 40rem;
  margin: 0 auto;
  padding: 4.5rem 1.25rem;
  text-align: center;
}

.final-cta .brand-lockup {
  font-size: clamp(2rem, 5vw, 3.2rem);
}

.final-cta h2 {
  margin: 0 0 0.9rem;
  font-size: clamp(1.55rem, 3.2vw, 2.2rem);
}

.final-cta p {
  margin: 0 0 1.5rem;
  color: rgba(255, 255, 255, 0.88);
}

.final-meta {
  margin-top: 1.25rem !important;
  font-size: 0.95rem;
}

.final-meta a {
  color: var(--white);
  font-weight: 600;
}

/* Footer */
.site-footer {
  padding: 2rem 1.25rem 1.5rem;
  text-align: center;
  color: var(--muted);
  font-size: 0.9rem;
}

.site-footer p {
  margin: 0.2rem 0;
}

.footer-note {
  font-size: 0.8rem;
  opacity: 0.8;
}

/* Floating WhatsApp — bottom center */
.whatsapp-float {
  position: fixed;
  left: 50%;
  bottom: 1.1rem;
  transform: translateX(-50%);
  z-index: 50;
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  min-height: 3.4rem;
  padding: 0.7rem 1.25rem 0.7rem 0.85rem;
  border-radius: 999px;
  background: var(--wa);
  color: var(--white);
  text-decoration: none;
  font-weight: 700;
  font-size: 0.98rem;
  box-shadow:
    0 12px 32px rgba(31, 173, 78, 0.4),
    0 0 0 6px rgba(31, 173, 78, 0.15);
  animation: float-pulse 2.4s ease-in-out infinite;
  transition: background 0.2s ease, transform 0.2s ease;
}

.whatsapp-float:hover {
  background: var(--wa-dark);
  transform: translateX(-50%) translateY(-2px);
  animation: none;
}

.whatsapp-float-icon {
  display: grid;
  place-items: center;
  width: 2.35rem;
  height: 2.35rem;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.18);
  flex-shrink: 0;
}

@keyframes float-pulse {
  0%,
  100% {
    box-shadow:
      0 12px 32px rgba(31, 173, 78, 0.4),
      0 0 0 6px rgba(31, 173, 78, 0.15);
  }
  50% {
    box-shadow:
      0 14px 36px rgba(31, 173, 78, 0.5),
      0 0 0 10px rgba(31, 173, 78, 0.08);
  }
}

@media (max-width: 420px) {
  .whatsapp-float-label {
    font-size: 0.88rem;
  }

  .whatsapp-float {
    padding-inline: 1rem 1.1rem;
    max-width: calc(100vw - 1.5rem);
  }
}

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

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

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .hero-img,
  .whatsapp-float,
  .reveal {
    animation: none !important;
    transition: none !important;
    opacity: 1;
    transform: none;
  }
}
