/* Propuesta «Sol y lago» — navy en toda la página, ámbar como luz, mint para actuar. */

.landing-sol-y-lago {
  --bg: #010f35;
  --surface: #07122f;
  --surface-2: #02091f;
  --ink-1: #ffffff;
  --ink-2: rgba(234, 240, 255, 0.82);
  --ink-3: rgba(174, 185, 220, 0.86);
  --line: rgba(158, 174, 219, 0.18);
  --line-strong: rgba(158, 174, 219, 0.3);
  --mint-ink: #2fe0b0;
}

.landing-sol-y-lago .site-header {
  background: color-mix(in srgb, #010f35 82%, transparent);
  border-bottom-color: rgba(158, 174, 219, 0.16);
}

.landing-sol-y-lago .site-nav a {
  color: rgba(234, 240, 255, 0.78);
}

.landing-sol-y-lago .site-nav a:hover {
  color: #fff;
}

.landing-sol-y-lago .store-btn {
  background: var(--mint);
  color: var(--navy);
}

.landing-sol-y-lago .store-btn:hover {
  background: var(--mint-hover);
}

.landing-sol-y-lago .store-btn[aria-disabled="true"] {
  background: transparent;
  color: rgba(234, 240, 255, 0.72);
  border-color: rgba(255, 255, 255, 0.26);
}

.hero-sol {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(58% 88% at 86% 6%, rgba(245, 165, 36, 0.5) 0%, rgba(245, 165, 36, 0) 62%),
    linear-gradient(168deg, #011a5a 0%, #010f35 100%);
  padding: clamp(3rem, 8vw, 6.5rem) var(--gutter) clamp(4rem, 9vw, 7rem);
}

.sol {
  position: absolute;
  top: -12%;
  right: 5%;
  width: clamp(8rem, 26vw, 22rem);
  aspect-ratio: 1;
  border-radius: 999px;
  background: radial-gradient(circle, #ffd27a 0%, #f5a524 56%, rgba(245, 165, 36, 0) 72%);
  filter: blur(2px);
}

.lago {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 18%;
  background: linear-gradient(180deg, rgba(0, 216, 170, 0) 0%, rgba(0, 216, 170, 0.16) 100%);
  pointer-events: none;
}

.hero-sol .hero-copy {
  position: relative;
  max-width: var(--shell);
  margin: 0 auto;
  display: grid;
  gap: 1.35rem;
  justify-items: start;
}

.hero-sol .kicker {
  font-family: var(--mono);
  font-size: 0.68rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--mint);
}

.hero-sol h1 {
  color: #fff;
  font-size: clamp(2.6rem, 8.6vw, 5.6rem);
  font-weight: 900;
  line-height: 0.9;
  letter-spacing: -0.055em;
  text-transform: uppercase;
  max-width: 13ch;
}

.hero-sol h1 span {
  color: var(--amber);
}

.hero-sol .hero-lede {
  font-size: var(--step-lede);
  color: rgba(234, 240, 255, 0.78);
  max-width: 36ch;
}

.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.65rem;
}

.ghost-btn {
  display: inline-flex;
  align-items: center;
  min-height: 48px;
  padding: 0.5rem 1.4rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.34);
  color: #fff;
  text-decoration: none;
  font-weight: 500;
  font-size: 0.92rem;
}

.ghost-btn:hover {
  border-color: #fff;
}

.hero-moto {
  position: absolute;
  right: 3%;
  bottom: 6%;
  width: clamp(7rem, 18vw, 15rem);
  pointer-events: none;
}

@media (max-width: 62rem) {
  .hero-moto {
    display: none;
  }
}

/* El sol se mueve de sección en sección hasta que se hace de noche. */
/* `clip` y no `hidden`: recorta el halo sin romper el sticky de la cabecera. */
.landing-sol-y-lago .section {
  position: relative;
  overflow: clip;
}

.landing-sol-y-lago .section-services::before,
.landing-sol-y-lago .section-fare::before,
.landing-sol-y-lago .section-safety::before {
  content: "";
  position: absolute;
  top: 0;
  width: min(28rem, 70vw);
  aspect-ratio: 1;
  border-radius: 999px;
  pointer-events: none;
  z-index: -1;
}

.landing-sol-y-lago .section-services::before {
  right: -6rem;
  background: radial-gradient(circle, rgba(245, 165, 36, 0.16) 0%, rgba(245, 165, 36, 0) 68%);
}

.landing-sol-y-lago .section-fare::before {
  right: 30%;
  background: radial-gradient(circle, rgba(245, 165, 36, 0.1) 0%, rgba(245, 165, 36, 0) 68%);
}

.landing-sol-y-lago .section-safety::before {
  left: -6rem;
  background: radial-gradient(circle, rgba(0, 216, 170, 0.12) 0%, rgba(0, 216, 170, 0) 68%);
}

.landing-sol-y-lago .service-card,
.landing-sol-y-lago .safety-grid li,
.landing-sol-y-lago .driver-steps li,
.landing-sol-y-lago .fare-card {
  background: rgba(255, 255, 255, 0.035);
}

/* La rejilla de pagos se dibuja con separadores, no con gaps translúcidos:
   sobre navy, un gap con el token de línea se lee como un bloque lila. */
.landing-sol-y-lago .payment-grid {
  background: transparent;
  gap: 0;
}

.landing-sol-y-lago .payment-grid li {
  background: rgba(255, 255, 255, 0.035);
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.landing-sol-y-lago .phone-screen {
  background: #07122f;
}

.landing-sol-y-lago .pm-cta {
  background: var(--mint);
  color: var(--navy);
}

.landing-sol-y-lago .pm-avatar {
  background: rgba(200, 225, 255, 0.28);
}

.landing-sol-y-lago .pm-map {
  background: rgba(255, 255, 255, 0.05);
}

.landing-sol-y-lago .download-inner {
  background: linear-gradient(150deg, #011a5a 0%, #02091f 100%);
  border: 1px solid rgba(158, 174, 219, 0.2);
}

.landing-sol-y-lago .step-num {
  background: var(--mint);
  color: var(--navy);
}

.landing-sol-y-lago .upcoming img {
  opacity: 0.4;
}
