/* La Molina — Alquiler bicicletas La Graciosa (landing) */
:root {
  --green: #a3c639;
  --green-dark: #8fb032;
  --reviews-brand: #c5e063;
  --reviews-card: #f5f5f5;
  --reviews-star: #f5b800;
  --green-soft: rgba(163, 198, 57, 0.12);
  --text: #1a1a1a;
  --text-muted: #5c5c5c;
  --text-soft: #767676;
  --border: #e6e6e6;
  --badge-bg: #fff8e1;
  --white: #ffffff;
  --shadow: 0 18px 50px rgba(26, 26, 26, 0.08);
  --radius: 14px;
  --radius-lg: 20px;
  --font: "Plus Jakarta Sans", system-ui, sans-serif;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font);
  color: var(--text);
  background: var(--white);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

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

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

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
}

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

/* —— Top bar —— */
.top-bar {
  background: linear-gradient(180deg, #b8d94a 0%, var(--green) 100%);
  color: var(--text);
  font-size: 0.8125rem;
  font-weight: 600;
  border-bottom: 1px solid rgba(26, 26, 26, 0.06);
}

.top-bar__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0.5rem 0.75rem;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 0.45rem;
}

.top-bar__loc {
  margin: 0;
  display: flex;
  align-items: center;
  gap: 0.4rem;
  min-width: 0;
  padding: 0.35rem 0.5rem;
  background: rgba(255, 255, 255, 0.45);
  border-radius: 10px;
  border: 1px solid rgba(26, 26, 26, 0.06);
  line-height: 1.25;
}

.top-bar__loc-text {
  min-width: 0;
  font-size: 0.75rem;
}

@media (min-width: 380px) {
  .top-bar__loc-text {
    font-size: 0.8125rem;
  }
}

.top-bar__meta {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.35rem;
  align-items: stretch;
}

.top-bar__meta > li {
  min-width: 0;
  display: flex;
}

.top-bar__chip {
  flex: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.3rem;
  min-width: 0;
  padding: 0.4rem 0.35rem;
  background: rgba(255, 255, 255, 0.5);
  border-radius: 10px;
  border: 1px solid rgba(26, 26, 26, 0.07);
  font-size: 0.6875rem;
  line-height: 1.2;
  text-align: center;
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.6) inset;
}

@media (min-width: 400px) {
  .top-bar__chip {
    font-size: 0.75rem;
    padding: 0.45rem 0.5rem;
    gap: 0.35rem;
  }
}

.top-bar__chip--link {
  transition: background 0.15s ease, transform 0.15s ease, box-shadow 0.15s ease;
}

.top-bar__chip--link:hover {
  background: rgba(255, 255, 255, 0.85);
  text-decoration: none;
  box-shadow: 0 2px 8px rgba(26, 26, 26, 0.08);
}

.top-bar__chip--link:active {
  transform: scale(0.98);
}

.top-bar__chip-text {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.05rem;
  min-width: 0;
}

.top-bar__rating {
  font-weight: 800;
  letter-spacing: -0.02em;
}

.top-bar__reviews {
  font-size: 0.85em;
  font-weight: 700;
  opacity: 0.92;
}

@media (min-width: 480px) {
  .top-bar__chip-text {
    flex-direction: row;
    align-items: baseline;
    gap: 0.2rem;
  }

  .top-bar__reviews::before {
    content: "· ";
    font-weight: 600;
    opacity: 0.7;
  }
}

.top-bar__hours {
  font-variant-numeric: tabular-nums;
  white-space: nowrap;
}

.top-bar__phone-short {
  font-weight: 700;
  white-space: nowrap;
}

.top-bar__phone-long {
  display: none;
  font-weight: 600;
  white-space: nowrap;
}

@media (min-width: 720px) {
  .top-bar__inner {
    flex-direction: row;
    flex-wrap: nowrap;
    align-items: center;
    justify-content: space-between;
    gap: 0.75rem 1.25rem;
    padding: 0.5rem 1.25rem;
  }

  .top-bar__loc {
    flex: 1 1 auto;
    max-width: 22rem;
    padding: 0.4rem 0.75rem;
  }

  .top-bar__meta {
    display: flex;
    flex-wrap: nowrap;
    gap: 0.5rem;
    width: auto;
    flex: 0 0 auto;
  }

  .top-bar__meta > li {
    flex: 0 0 auto;
  }

  .top-bar__chip {
    padding: 0.4rem 0.75rem;
    border-radius: 999px;
    font-size: 0.8125rem;
  }

  .top-bar__chip-text {
    flex-direction: row;
    align-items: center;
    gap: 0.25rem;
  }

  .top-bar__reviews::before {
    content: "· ";
  }

  .top-bar__phone-short {
    display: none;
  }

  .top-bar__phone-long {
    display: inline;
  }
}

.top-bar__ico {
  flex-shrink: 0;
  opacity: 0.95;
  color: var(--text);
}

.top-bar__ico--star {
  color: #c47f00;
}

/* —— Header —— */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
}

.header__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0.85rem 1.25rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  min-width: 0;
}

.logo__img {
  flex-shrink: 0;
  display: block;
  height: 44px;
  width: auto;
  max-width: min(200px, 42vw);
  object-fit: contain;
  object-position: left center;
}

@media (min-width: 960px) {
  .logo__img {
    height: 48px;
    max-width: 240px;
  }
}

.nav-desktop {
  display: none;
  align-items: center;
  gap: 1.75rem;
}

.nav-desktop a {
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--text);
}

.nav-desktop a:hover,
.nav-desktop a[aria-current="page"] {
  color: var(--green-dark);
}

.header__actions {
  display: none;
  align-items: center;
  gap: 0.65rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  padding: 0.65rem 1.1rem;
  font-size: 0.875rem;
  font-weight: 700;
  border-radius: 10px;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
}

.btn:active {
  transform: scale(0.98);
}

.btn--outline {
  background: var(--white);
  color: var(--text);
  border: 1px solid var(--border);
}

.btn--outline:hover {
  border-color: #ccc;
}

.btn--primary {
  background: var(--green);
  color: var(--white);
  box-shadow: 0 4px 14px rgba(163, 198, 57, 0.45);
}

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

.btn--lg {
  padding: 0.9rem 1.35rem;
  font-size: 0.9375rem;
  border-radius: 12px;
}

.btn--primary .icon-wa {
  flex-shrink: 0;
  color: currentColor;
}

.menu-toggle {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  padding: 10px;
  border-radius: 10px;
}

.menu-toggle:hover {
  background: var(--green-soft);
}

.menu-toggle span {
  display: block;
  height: 2px;
  background: var(--text);
  border-radius: 1px;
}

.menu-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.menu-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.menu-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.menu-toggle span {
  transition: transform 0.2s ease, opacity 0.2s ease;
}

/* Mobile nav drawer */
.nav-mobile {
  display: none;
  position: fixed;
  inset: 0;
  top: 0;
  z-index: 200;
  pointer-events: none;
}

.nav-mobile.is-open {
  display: block;
  pointer-events: auto;
}

.nav-mobile__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.35);
  opacity: 0;
  transition: opacity 0.25s ease;
}

.nav-mobile.is-open .nav-mobile__backdrop {
  opacity: 1;
}

.nav-mobile__panel {
  position: absolute;
  top: 0;
  right: 0;
  width: min(320px, 88vw);
  height: 100%;
  background: var(--white);
  box-shadow: -8px 0 40px rgba(0, 0, 0, 0.12);
  padding: 5rem 1.5rem 1.5rem;
  transform: translateX(100%);
  transition: transform 0.28s ease;
}

.nav-mobile.is-open .nav-mobile__panel {
  transform: translateX(0);
}

.nav-mobile__links {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.nav-mobile__links a {
  display: block;
  padding: 0.85rem 0;
  font-weight: 700;
  font-size: 1.05rem;
  border-bottom: 1px solid var(--border);
}

.nav-mobile__cta {
  margin-top: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.nav-mobile__close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  width: 44px;
  height: 44px;
  border-radius: 10px;
  font-size: 1.5rem;
  line-height: 1;
  color: var(--text-muted);
}

.nav-mobile__close:hover {
  background: var(--green-soft);
}

@media (min-width: 960px) {
  .nav-desktop,
  .header__actions {
    display: flex;
  }

  .menu-toggle {
    display: none;
  }
}

/* —— Main / views —— */
main {
  min-height: 60vh;
}

.view {
  display: none;
}

.view.is-active {
  display: block;
}

/* —— Hero —— */
.hero {
  padding: 2.5rem 1.25rem 3.5rem;
  max-width: 1200px;
  margin: 0 auto;
}

.hero__grid {
  display: grid;
  gap: 2.5rem;
  align-items: center;
}

@media (min-width: 960px) {
  .hero__grid {
    grid-template-columns: 1fr 1fr;
    gap: 2rem 3rem;
    padding-top: 0.5rem;
  }
}

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.45rem 0.85rem;
  background: var(--badge-bg);
  border-radius: 999px;
  font-size: 0.8125rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 1rem;
  text-decoration: none;
  transition: box-shadow 0.2s ease, transform 0.2s ease;
}

.hero__badge:hover {
  box-shadow: 0 4px 16px rgba(245, 166, 35, 0.25);
  transform: translateY(-1px);
}

.hero__stars {
  color: #f5a623;
  letter-spacing: 1px;
}

.hero__title {
  margin: 0 0 1rem;
  font-size: clamp(1.85rem, 4vw, 2.65rem);
  font-weight: 800;
  line-height: 1.12;
  letter-spacing: -0.02em;
}

.hero__title .accent {
  color: var(--green);
}

.hero__lead {
  margin: 0 0 1.75rem;
  font-size: 1.0625rem;
  color: var(--text-muted);
  max-width: 34rem;
}

.hero__ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 2rem;
}

.hero__list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.hero__list li {
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
  font-weight: 600;
  font-size: 0.9375rem;
  color: var(--text);
}

.hero__check {
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--green);
  display: grid;
  place-items: center;
  margin-top: 2px;
}

.hero__check svg {
  width: 12px;
  height: 12px;
}

/* Hero media */
.hero-media {
  position: relative;
}

.hero-media__main-wrap {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 1;
  background: linear-gradient(145deg, #e8f0c8 0%, #d4e8f5 100%);
  box-shadow: var(--shadow);
}

.hero-media__main-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-media__card {
  position: absolute;
  z-index: 2;
  background: var(--white);
  padding: 0.65rem 0.9rem;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  font-size: 0.8125rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  max-width: 200px;
}

.hero-media__card strong {
  font-weight: 800;
}

.hero-media__card--tl {
  top: 12%;
  left: 6%;
}

.hero-media__card--br {
  bottom: 12%;
  right: 6%;
}

.hero-media__card-icon {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  display: grid;
  place-items: center;
  flex-shrink: 0;
}

.hero-media__card-icon--bike {
  background: #e3f2fd;
  color: #1565c0;
}

.hero-media__card-icon--star {
  background: var(--green);
  color: var(--white);
}

.hero-media__row {
  display: flex;
  gap: 0.75rem;
  margin-top: 1rem;
  align-items: stretch;
}

@media (min-width: 960px) {
  .hero-media__row {
    margin-top: 0;
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%) translateX(calc(100% + 0.75rem));
    flex-direction: column;
    width: 88px;
    margin-top: 0;
  }

  .hero-media {
    padding-right: 100px;
  }
}

.hero-thumb {
  flex: 1;
  border-radius: 12px;
  overflow: hidden;
  aspect-ratio: 1;
  border: 3px solid transparent;
  padding: 0;
  cursor: pointer;
  transition: border-color 0.2s ease, transform 0.2s ease;
  background: #eee;
}

.hero-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

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

.hero-thumb.is-selected {
  border-color: #f5a623;
}

@media (min-width: 960px) {
  .hero-thumb {
    flex: none;
    width: 100%;
    height: auto;
  }
}

/* —— Bicis (tipos / flota) —— */
.bikes {
  background: var(--white);
  padding: 3rem 1.25rem 3.5rem;
  scroll-margin-top: 5.5rem;
}

.bikes__container {
  max-width: 1180px;
  margin: 0 auto;
}

.bikes__intro {
  text-align: center;
  max-width: 44rem;
  margin: 0 auto 2.25rem;
}

.bikes__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.35rem 0.85rem;
  margin-bottom: 1rem;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--green-dark);
  background: var(--green-soft);
  border-radius: 999px;
}

.bikes__eyebrow iconify-icon {
  color: var(--green-dark);
}

.bikes__title {
  margin: 0 0 0.85rem;
  font-size: clamp(1.5rem, 4vw, 2.25rem);
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: var(--text);
}

.bikes__title-accent {
  color: var(--reviews-brand);
}

.bikes__lead {
  margin: 0;
  font-size: 0.9375rem;
  color: var(--text-muted);
  line-height: 1.55;
}

.bikes__grid {
  display: grid;
  gap: 1.25rem;
  grid-template-columns: 1fr;
}

@media (min-width: 600px) {
  .bikes__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 960px) {
  .bikes__grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
  }
}

.bike-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  box-shadow: 0 6px 24px rgba(26, 26, 26, 0.05);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.bike-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 40px rgba(26, 26, 26, 0.09);
}

.bike-card__media {
  position: relative;
  aspect-ratio: 4 / 3;
  background: linear-gradient(145deg, #e8f0c8 0%, #d4e8f5 100%);
  overflow: hidden;
}

.bike-card__media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.bike-card__tag {
  position: absolute;
  top: 0.85rem;
  right: 0.85rem;
  z-index: 2;
  padding: 0.3rem 0.7rem;
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--white);
  border-radius: 999px;
  background: rgba(26, 26, 26, 0.55);
  backdrop-filter: blur(6px);
}

.bike-card__tag--popular {
  background: #ef476f;
}

.bike-card__tag--mtb {
  background: #2a9d8f;
}

.bike-card__tag--kid {
  background: #f4a261;
}

.bike-card__tag--ebike {
  background: #6c63ff;
}

.bike-card__body {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  padding: 1.1rem 1.15rem 1.25rem;
  flex: 1;
}

.bike-card__title {
  margin: 0;
  font-size: 1.125rem;
  font-weight: 800;
  letter-spacing: -0.01em;
  color: var(--text);
}

.bike-card__features {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  font-size: 0.8125rem;
  color: var(--text-muted);
  line-height: 1.4;
}

.bike-card__features li {
  display: flex;
  align-items: flex-start;
  gap: 0.45rem;
}

.bike-card__features iconify-icon {
  flex-shrink: 0;
  color: var(--green-dark);
  margin-top: 0.15rem;
}

.bike-card__cta {
  margin-top: auto;
  width: 100%;
  justify-content: center;
  padding: 0.75rem 1rem;
  font-size: 0.875rem;
}

/* —— Sobre el alquiler —— */
.about {
  background: var(--white);
  padding: 3rem 1.25rem 3.5rem;
  scroll-margin-top: 5.5rem;
}

.about__container {
  max-width: 1180px;
  margin: 0 auto;
  display: grid;
  gap: 2.5rem;
  align-items: center;
}

@media (min-width: 960px) {
  .about__container {
    grid-template-columns: 1.05fr 1fr;
    gap: 3.5rem;
  }
}

.about__content {
  min-width: 0;
}

.about__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  margin-bottom: 1.1rem;
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--green-dark);
}

.about__eyebrow-bar {
  width: 28px;
  height: 2px;
  background: var(--green-dark);
  border-radius: 2px;
}

.about__title {
  margin: 0 0 1.2rem;
  font-size: clamp(1.6rem, 4.2vw, 2.5rem);
  font-weight: 800;
  line-height: 1.18;
  letter-spacing: -0.02em;
  color: var(--text);
}

.about__title-accent {
  color: var(--reviews-brand);
}

.about__text {
  margin: 0 0 1rem;
  font-size: 0.9375rem;
  line-height: 1.65;
  color: var(--text-muted);
  max-width: 36rem;
}

.about__text strong {
  color: var(--text);
  font-weight: 700;
}

.about__list {
  list-style: none;
  margin: 1.25rem 0 1.75rem;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.about__list li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--text);
}

.about__check {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--green);
  color: var(--white);
  display: grid;
  place-items: center;
}

.about__cta {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.95rem 1.4rem;
  background: var(--text);
  color: var(--white);
  font-weight: 700;
  font-size: 0.9375rem;
  border-radius: 12px;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
  box-shadow: 0 8px 22px rgba(26, 26, 26, 0.18);
}

.about__cta:hover {
  background: #000;
  transform: translateY(-1px);
  box-shadow: 0 12px 28px rgba(26, 26, 26, 0.25);
}

.about__cta:active {
  transform: translateY(0);
}

.about__media {
  position: relative;
  display: flex;
  justify-content: center;
}

.about__photo {
  position: relative;
  width: min(100%, 440px);
  aspect-ratio: 3 / 4;
  border-radius: 22px;
  overflow: hidden;
  background: linear-gradient(145deg, #e8f0c8 0%, #d4e8f5 100%);
  box-shadow: 0 22px 50px rgba(26, 26, 26, 0.18);
  transform: rotate(-2deg);
}

@media (min-width: 960px) {
  .about__photo {
    transform: rotate(-3deg);
  }
}

.about__photo img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about__badge {
  position: absolute;
  left: 50%;
  bottom: 1.25rem;
  transform: translateX(-55%);
  display: flex;
  align-items: center;
  gap: 0.7rem;
  padding: 0.7rem 1rem;
  background: var(--white);
  border-radius: 14px;
  box-shadow: 0 14px 30px rgba(26, 26, 26, 0.15);
  z-index: 2;
  max-width: 80%;
}

@media (min-width: 600px) {
  .about__badge {
    left: auto;
    right: -0.5rem;
    bottom: 1.5rem;
    transform: none;
    max-width: none;
  }
}

.about__badge-icon {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: var(--green);
  color: var(--white);
  display: grid;
  place-items: center;
}

.about__badge-text {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}

.about__badge-text strong {
  font-weight: 800;
  font-size: 0.95rem;
  color: var(--text);
}

.about__badge-text span {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--text-soft);
}

/* —— Reserva fácil (3 pasos + mapa) —— */
.booking {
  background: #f3f4f6;
  padding: 3.5rem 1.25rem 4rem;
  scroll-margin-top: 5.5rem;
}

.booking__container {
  max-width: 1180px;
  margin: 0 auto;
}

.booking__intro {
  text-align: center;
  max-width: 44rem;
  margin: 0 auto 2.25rem;
}

.booking__eyebrow {
  display: inline-block;
  margin-bottom: 0.85rem;
  padding: 0.35rem 0.9rem;
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--green-dark);
  background: var(--green-soft);
  border-radius: 999px;
}

.booking__title {
  margin: 0;
  font-size: clamp(1.5rem, 4vw, 2.25rem);
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: var(--text);
}

.booking__title-accent {
  color: var(--reviews-brand);
}

.booking__grid {
  display: grid;
  gap: 1.5rem;
}

@media (min-width: 960px) {
  .booking__grid {
    grid-template-columns: 1.35fr 1fr;
    gap: 2rem;
    align-items: start;
  }
}

.booking__steps {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.booking-step {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.1rem 1.2rem;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 14px;
  box-shadow: 0 6px 18px rgba(26, 26, 26, 0.04);
}

.booking-step__num {
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: var(--green);
  color: var(--white);
  display: grid;
  place-items: center;
  font-weight: 800;
  font-size: 0.95rem;
  box-shadow: 0 6px 14px rgba(163, 198, 57, 0.45);
}

.booking-step__body {
  min-width: 0;
}

.booking-step__title {
  margin: 0 0 0.25rem;
  font-size: 1rem;
  font-weight: 800;
  letter-spacing: -0.01em;
  color: var(--text);
}

.booking-step__text {
  margin: 0;
  font-size: 0.875rem;
  line-height: 1.5;
  color: var(--text-muted);
}

.booking-includes {
  position: relative;
  padding: 1rem 1.2rem 1.1rem 1.35rem;
  background: var(--white);
  border-radius: 14px;
  border: 1px solid var(--border);
  box-shadow: 0 6px 18px rgba(26, 26, 26, 0.04);
}

.booking-includes::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.85rem;
  bottom: 0.85rem;
  width: 3px;
  border-radius: 3px;
  background: var(--green);
}

.booking-includes__title {
  display: block;
  margin-bottom: 0.6rem;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-soft);
}

.booking-includes__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem 0.5rem;
}

.booking-includes__list li {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  padding: 0.35rem 0.7rem;
  background: var(--green-soft);
  border-radius: 999px;
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--text);
}

.booking-includes__list iconify-icon {
  color: var(--green-dark);
  flex-shrink: 0;
}

.booking-map {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 6px 18px rgba(26, 26, 26, 0.04);
  display: flex;
  flex-direction: column;
}

.booking-map__head {
  display: flex;
  justify-content: flex-end;
  padding: 0.6rem 0.85rem;
  border-bottom: 1px solid var(--border);
  background: #fafafa;
}

.booking-map__open {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--text);
  text-decoration: none;
  padding: 0.3rem 0.6rem;
  border-radius: 8px;
  transition: background 0.15s ease;
}

.booking-map__open:hover {
  background: var(--green-soft);
  color: var(--green-dark);
}

.booking-map__frame {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 11;
  background: #e8eaed;
}

.booking-map__frame iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.booking-map__info {
  padding: 1.1rem 1.2rem 1.25rem;
}

.booking-map__title {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.9375rem;
  font-weight: 800;
  letter-spacing: -0.01em;
  color: var(--text);
  margin-bottom: 0.5rem;
}

.booking-map__title iconify-icon {
  color: #ef476f;
}

.booking-map__address {
  margin: 0 0 0.65rem;
  font-size: 0.875rem;
  line-height: 1.55;
  color: var(--text-muted);
}

.booking-map__address strong {
  color: var(--text);
  font-weight: 700;
}

.booking-map__note {
  margin: 0 0 0.85rem;
  font-size: 0.8125rem;
  line-height: 1.45;
  color: var(--text-soft);
}

.booking-map__cta {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.65rem 1rem;
  background: var(--text);
  color: var(--white);
  font-size: 0.875rem;
  font-weight: 700;
  border-radius: 10px;
  text-decoration: none;
  transition: background 0.15s ease, transform 0.15s ease;
}

.booking-map__cta:hover {
  background: #000;
  transform: translateY(-1px);
}

/* —— Reseñas Google (widget Trustindex) —— */
.google-reviews {
  background: var(--white);
  padding: 2.5rem 1.25rem 3.5rem;
  border-top: 1px solid var(--border);
  scroll-margin-top: 5.5rem;
}

.google-reviews__container {
  max-width: 1100px;
  margin: 0 auto;
}

.google-reviews__intro {
  text-align: center;
  max-width: 44rem;
  margin: 0 auto 2rem;
}

.google-reviews__title {
  margin: 0 0 0.85rem;
  font-size: clamp(1.35rem, 3.5vw, 1.85rem);
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: var(--text);
}

.google-reviews__brand {
  color: var(--reviews-brand);
  text-shadow: 0 0 0.5px rgba(26, 26, 26, 0.15);
}

.google-reviews__subtitle {
  margin: 0;
  font-size: 0.9375rem;
  color: var(--text-muted);
  line-height: 1.55;
}

.google-reviews__embed {
  min-height: 220px;
}

/* —— Instagram —— */
.instagram {
  padding: 0 1.25rem 3.5rem;
  scroll-margin-top: 5.5rem;
}

.instagram__card {
  display: flex;
  align-items: center;
  gap: 1.1rem;
  max-width: 720px;
  margin: 0 auto;
  padding: 1.1rem 1.25rem;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 18px;
  box-shadow: 0 10px 30px rgba(26, 26, 26, 0.06);
  text-decoration: none;
  color: inherit;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.instagram__card:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 40px rgba(26, 26, 26, 0.1);
  border-color: #ddd;
}

.instagram__avatar-wrap {
  flex-shrink: 0;
}

.instagram__avatar-ring {
  display: grid;
  place-items: center;
  width: 72px;
  height: 72px;
  border-radius: 50%;
  padding: 3px;
  background: conic-gradient(
    from 220deg,
    #f58529 0%,
    #dd2a7b 35%,
    #8134af 65%,
    #515bd4 100%
  );
}

.instagram__avatar {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid var(--white);
  background: var(--white);
}

@media (min-width: 600px) {
  .instagram__avatar-ring {
    width: 84px;
    height: 84px;
  }
}

.instagram__content {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.instagram__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #c13584;
}

.instagram__title {
  margin: 0;
  font-size: clamp(1.1rem, 2.6vw, 1.35rem);
  font-weight: 800;
  letter-spacing: -0.01em;
  color: var(--text);
  line-height: 1.2;
}

.instagram__text {
  margin: 0.15rem 0 0;
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.45;
}

.instagram__cta {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, #f58529 0%, #dd2a7b 50%, #8134af 100%);
  color: var(--white);
  display: grid;
  place-items: center;
  box-shadow: 0 8px 18px rgba(221, 42, 123, 0.35);
  transition: transform 0.2s ease;
}

.instagram__card:hover .instagram__cta {
  transform: rotate(-8deg) scale(1.05);
}

/* —— FAQs (acordeón) —— */
.faqs {
  background: var(--white);
  padding: 3rem 1.25rem 3.5rem;
  scroll-margin-top: 5.5rem;
}

.faqs__container {
  max-width: 880px;
  margin: 0 auto;
}

.faqs__intro {
  text-align: center;
  margin-bottom: 2rem;
}

.faqs__eyebrow {
  display: inline-block;
  margin-bottom: 0.85rem;
  padding: 0.35rem 0.9rem;
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--green-dark);
  background: var(--green-soft);
  border-radius: 999px;
}

.faqs__title {
  margin: 0;
  font-size: clamp(1.5rem, 4vw, 2.25rem);
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: var(--text);
}

.faqs__title-accent {
  color: var(--reviews-brand);
}

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

.faq {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 14px;
  box-shadow: 0 4px 14px rgba(26, 26, 26, 0.04);
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.faq[open] {
  border-color: var(--green);
  box-shadow: 0 10px 24px rgba(163, 198, 57, 0.18);
}

.faq__q {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 0.85rem;
  padding: 1rem 1.1rem;
  cursor: pointer;
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--text);
  user-select: none;
}

.faq__q::-webkit-details-marker {
  display: none;
}

.faq__icon {
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  border-radius: 9px;
  background: var(--green-soft);
  color: var(--green-dark);
  display: grid;
  place-items: center;
  transition: background 0.2s ease, color 0.2s ease;
}

.faq[open] .faq__icon {
  background: var(--green);
  color: var(--white);
}

.faq__q-text {
  flex: 1;
  min-width: 0;
  line-height: 1.35;
}

.faq__chev {
  flex-shrink: 0;
  color: var(--text-soft);
  transition: transform 0.25s ease, color 0.2s ease;
}

.faq[open] .faq__chev {
  transform: rotate(180deg);
  color: var(--green-dark);
}

.faq__a {
  padding: 0 1.1rem 1.1rem 4rem;
  font-size: 0.9rem;
  line-height: 1.6;
  color: var(--text-muted);
}

.faq__a p {
  margin: 0 0 0.6rem;
}

.faq__a p:last-child {
  margin-bottom: 0;
}

.faq__a strong {
  color: var(--text);
  font-weight: 700;
}

/* —— Franja CTA final —— */
.cta-strip {
  background: #f3f4f6;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 2rem 1.25rem;
}

.cta-strip__inner {
  max-width: 1180px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  align-items: flex-start;
}

@media (min-width: 780px) {
  .cta-strip__inner {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
  }
}

.cta-strip__title {
  margin: 0 0 0.25rem;
  font-size: clamp(1.15rem, 2.6vw, 1.4rem);
  font-weight: 800;
  letter-spacing: -0.01em;
  color: var(--text);
}

.cta-strip__lead {
  margin: 0;
  font-size: 0.9rem;
  color: var(--text-muted);
}

.cta-strip__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
}

/* —— Footer —— */
.site-footer {
  background: var(--white);
  padding: 3rem 1.25rem 0;
  color: var(--text);
}

.site-footer__inner {
  max-width: 1180px;
  margin: 0 auto;
  display: grid;
  gap: 2rem;
  grid-template-columns: 1fr;
}

@media (min-width: 600px) {
  .site-footer__inner {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 960px) {
  .site-footer__inner {
    grid-template-columns: 1.5fr 1fr 1fr 1.3fr;
    gap: 2.5rem;
  }
}

.site-footer__col--brand {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.site-footer__logo {
  width: 180px;
  height: auto;
  margin-bottom: 0.25rem;
}

.site-footer__about {
  margin: 0;
  font-size: 0.875rem;
  line-height: 1.55;
  color: var(--text-muted);
  max-width: 22rem;
}

.site-footer__rating {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  margin: 0;
  font-size: 0.85rem;
  color: var(--text);
}

.site-footer__rating iconify-icon {
  color: var(--reviews-star);
}

.site-footer__socials {
  display: flex;
  gap: 0.5rem;
  margin-top: 0.25rem;
}

.site-footer__socials a {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--green-soft);
  color: var(--green-dark);
  transition: background 0.2s ease, color 0.2s ease, transform 0.15s ease;
}

.site-footer__socials a:hover {
  background: var(--green);
  color: var(--white);
  transform: translateY(-2px);
}

.site-footer__heading {
  margin: 0 0 0.85rem;
  font-size: 0.95rem;
  font-weight: 800;
  letter-spacing: -0.01em;
  color: var(--text);
}

.site-footer__links,
.site-footer__contact {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
}

.site-footer__links a {
  font-size: 0.875rem;
  color: var(--text-muted);
  text-decoration: none;
  transition: color 0.15s ease;
}

.site-footer__links a:hover {
  color: var(--green-dark);
}

.site-footer__contact li {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  font-size: 0.875rem;
  color: var(--text-muted);
}

.site-footer__contact iconify-icon {
  flex-shrink: 0;
  color: var(--green-dark);
}

.site-footer__contact a {
  color: var(--text-muted);
  text-decoration: none;
  transition: color 0.15s ease;
}

.site-footer__contact a:hover {
  color: var(--green-dark);
}

.site-footer__maps {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  margin-top: 0.85rem;
  font-size: 0.8125rem;
  font-weight: 700;
  color: var(--text);
  text-decoration: none;
  align-self: flex-start;
}

.site-footer__maps:hover {
  color: var(--green-dark);
}

.site-footer__maps-icon {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--green);
  color: var(--white);
  display: grid;
  place-items: center;
}

.site-footer__bottom {
  max-width: 1180px;
  margin: 2.5rem auto 0;
  padding: 1.25rem 0;
  border-top: 1px solid var(--border);
  text-align: center;
}

.site-footer__bottom small {
  font-size: 0.8rem;
  color: var(--text-soft);
}
