/* The Transporter — landing minimal (tus imágenes, sin gráficos decorativos de plantilla) */
:root {
  --bg: #ffbd59;
  --text: #1a1a1a;
  --accent-orange: #f5a623;
  --accent-blue: #5eb8d9;
  --btn: #2a2a2a;
  --white: #ffffff;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Montserrat", system-ui, sans-serif;
  background: var(--bg);
  color: var(--text);
  min-height: 100vh;
}

a {
  color: inherit;
}

.landing-page {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

/* Dos columnas: solo contenido real (tus PNG/JPG) */
.landing-hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: start;
  width: 100%;
  flex: 0 0 auto;
  background: var(--bg);
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.landing-hero__col {
  position: relative;
  display: flex;
  flex-direction: column;
  min-width: 0;
  background: var(--bg);
}

.landing-hero__col--right {
  border-left: 1px solid rgba(0, 0, 0, 0.08);
}

.landing-hero__figure {
  margin: 0;
  padding: 0;
  width: 100%;
  line-height: 0;
  background: var(--bg);
}

/* Contenedor imagen + Tarifs superpuesto (columna 1) */
.landing-hero__media-wrap {
  position: relative;
  width: 100%;
  align-self: stretch;
}

/* Columna 1: imagen alineada a la derecha (hacia el centro). Columna 2: a la izquierda. */
.landing-hero__col--left .landing-hero__figure,
.landing-hero__media-wrap .landing-hero__figure {
  display: flex;
  justify-content: flex-end;
}

.landing-hero__col--right .landing-hero__figure {
  display: flex;
  justify-content: flex-start;
}

/* Tus diseños: se muestran completos sin recortes raros */
.landing-hero__img {
  display: block;
  width: auto;
  max-width: 100%;
  height: auto;
  max-height: min(75vh, 900px);
  object-fit: contain;
  object-position: center top;
}

.landing-hero__col--left .landing-hero__img {
  object-position: right top;
}

.landing-hero__col--right .landing-hero__img {
  object-position: left top;
}

.landing-hero__sr-title {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.landing-hero__brand {
  padding: clamp(1.5rem, 4vw, 2.5rem) clamp(1.25rem, 4vw, 2rem) 0.5rem;
}

.landing-hero__icon {
  width: clamp(72px, 12vw, 100px);
  margin-bottom: 1rem;
}

.landing-hero__icon svg {
  display: block;
  width: 100%;
  height: auto;
}

.landing-hero__title {
  margin: 0;
  line-height: 1.05;
}

.landing-hero__the {
  display: block;
  font-size: clamp(0.85rem, 2vw, 1rem);
  font-weight: 600;
  color: var(--accent-orange);
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.landing-hero__main {
  display: block;
  font-size: clamp(1.75rem, 5vw, 3.25rem);
  font-weight: 800;
  letter-spacing: -0.02em;
}

.landing-hero__sub {
  display: block;
  margin-top: 0.35rem;
  font-size: clamp(0.9rem, 2vw, 1.1rem);
  font-weight: 600;
}

.landing-hero__sub .tours {
  color: var(--accent-blue);
}

/* Tarifs debajo del bloque marca (sin imagen hero) */
.landing-hero__cta {
  display: flex;
  justify-content: flex-start;
  padding: 1rem clamp(1.25rem, 4vw, 2rem) 1.25rem;
}

/* Tarifs encima de la imagen columna 1 (esquina inferior derecha, hacia el centro) */
.landing-hero__cta--overlay {
  position: absolute;
  bottom: clamp(0.65rem, 2vw, 1.1rem);
  right: clamp(0.65rem, 3vw, 1.75rem);
  left: auto;
  padding: 0;
  margin: 0;
  z-index: 2;
  display: flex;
  justify-content: flex-end;
  pointer-events: none;
}

.landing-hero__cta--overlay .btn-tarifs {
  pointer-events: auto;
}

.btn-tarifs--on-image {
  box-shadow: 0 2px 14px rgba(0, 0, 0, 0.35), 0 0 0 1px rgba(255, 255, 255, 0.2);
}

.btn-tarifs {
  display: inline-block;
  padding: 0.8rem 2rem;
  background: var(--btn);
  color: var(--white);
  text-decoration: none;
  font-weight: 600;
  font-size: 1rem;
  border-radius: 999px;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.btn-tarifs:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.18);
}

/* Galería flota: solo si subiste archivos fleet-*.jpg */
.landing-fleet {
  flex: 0 0 auto;
  padding: clamp(1.25rem, 3vw, 2rem);
  background: var(--bg);
}

.landing-fleet__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.25rem;
  max-width: 1000px;
  margin: 0 auto;
}

.landing-fleet__item {
  margin: 0;
  text-align: center;
}

.landing-fleet__label {
  font-size: 0.95rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.landing-fleet__img {
  width: 100%;
  max-width: 280px;
  height: auto;
  border-radius: 50%;
  object-fit: cover;
  aspect-ratio: 4 / 3;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

/* Franja inferior */
.landing-bottom {
  position: relative;
  flex: 1 1 auto;
  width: 100%;
  margin-top: 0;
  background: linear-gradient(165deg, #e88840 0%, #d56a22 55%, #c45e1a 100%);
  -webkit-clip-path: url(#landing-bottom-shape);
  clip-path: url(#landing-bottom-shape);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12);
}

.landing-bottom__clip-def {
  position: absolute;
  width: 0;
  height: 0;
  overflow: hidden;
}

.landing-bottom__inner {
  max-width: 900px;
  margin: 0 auto;
  padding: clamp(2rem, 5vw, 3rem) clamp(1.5rem, 4vw, 2.5rem) clamp(2.25rem, 4vw, 3rem);
}

.section-tarifs {
  padding: 0;
  margin: 0;
}

.section-tarifs h2 {
  font-size: clamp(1.5rem, 3vw, 2rem);
  margin: 0 0 1rem;
  color: #fff;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.15);
}

.section-tarifs p {
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.95);
  margin: 0 0 1rem;
}

.section-tarifs strong {
  color: #fff;
}

.site-footer {
  text-align: center;
  padding: 1.25rem 0 0;
  margin-top: 0.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.25);
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.85);
}

@media (max-width: 900px) {
  .landing-hero {
    grid-template-columns: 1fr;
  }

  .landing-hero__col--right {
    border-left: none;
    border-top: 1px solid rgba(0, 0, 0, 0.08);
  }

  .landing-hero__figure {
    justify-content: center;
  }

  .landing-hero__col--left .landing-hero__cta {
    justify-content: center;
  }

  .landing-hero__cta--overlay {
    left: 50%;
    right: auto;
    transform: translateX(-50%);
    justify-content: center;
  }

  .landing-hero__img {
    width: 100%;
    max-width: 100%;
    max-height: min(55vh, 640px);
    object-position: center top;
  }
}

@media (prefers-reduced-motion: reduce) {
  .btn-tarifs:hover {
    transform: none;
  }
}
