/*!
 * Río Lagartos Tours — Landing CSS
 * Encapsulado bajo .rle-root para no contaminar el tema.
 */

/* ─────────────────── BASE & TOKENS ─────────────────── */
/* NO usamos @layer porque baja la especificidad y los estilos del tema
   USE/Elementor (sin layer) ganan automáticamente. Encapsulamos con .rle-root */
  .rle-root {
    /* === COLORES PROPIOS (body en neutros, verde USE solo para acentos) === */
    --rle-ink: #0b1f17;            /* texto principal — verde casi negro neutro */
    --rle-ink-soft: #1f3a2b;       /* texto secundario */
    --rle-muted: #6b7280;          /* texto muted */
    --rle-paper: #ffffff;
    --rle-paper-2: #f8fafc;        /* superficies suaves NEUTRAS, no verde pastel */
    --rle-surface-soft: rgba(11, 31, 23, .04);
    /* Acentos verdes vibrantes (NO el verde apagado del USE) */
    --rle-primary: #15803d;        /* verde medio vivo para CTAs */
    --rle-primary-dark: #14532d;   /* verde oscuro para hover/details */
    --rle-accent: #f59e0b;         /* dorado/ámbar para contraste cálido */
    --rle-accent-cool: #0ea5e9;    /* azul cielo para acentos secundarios */
    --rle-border: rgba(11, 31, 23, .1);
    --rle-gold: #caa55d;

    /* === RADIUS: tokens del tema === */
    --rle-radius: var(--use-radius-lg, 1.25rem);
    --rle-radius-sm: var(--use-radius-md, .875rem);
    --rle-radius-lg: var(--use-radius-xl, 1.75rem);

    /* === SHADOWS === */
    --rle-shadow: 0 30px 60px -20px rgba(20, 83, 45, .22);
    --rle-shadow-sm: 0 12px 24px -8px rgba(20, 83, 45, .15);

    /* === TIPOGRAFÍA: USE theme stack real === */
    --rle-font: 'Inter', system-ui, -apple-system, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
    --rle-display: 'Space Grotesk', 'Inter', system-ui, sans-serif;
    --rle-serif: 'Lora', Georgia, 'Times New Roman', serif;

    /* === ESCALAS TIPOGRÁFICAS del USE theme === */
    --rle-fs-display: var(--use-fs-display, clamp(2.25rem, 1.5rem + 3.5vw, 4rem));
    --rle-fs-h1: var(--use-fs-h1, clamp(1.5rem, 1.05rem + 2.4vw, 3rem));
    --rle-fs-h2: var(--use-fs-h2, clamp(1.375rem, 1.15rem + 1.2vw, 2.125rem));
    --rle-fs-h3: var(--use-fs-h3, clamp(1.2rem, 1.05rem + .6vw, 1.625rem));
    --rle-fs-lead: var(--use-fs-lead, clamp(1rem, .95rem + .25vw, 1.125rem));

    --rle-ease: cubic-bezier(.2, .7, .2, 1);
    --rle-ease-elastic: cubic-bezier(.34, 1.56, .64, 1);

    font-family: var(--rle-font);
    color: var(--rle-ink);
  }

  /* Reset suave dentro del scope */
  .rle-root,
  .rle-root *,
  .rle-root *::before,
  .rle-root *::after {
    box-sizing: border-box;
  }

  /* ─── ANTI-OVERFLOW: cláusula crítica ─── */
  .rle-root {
    overflow-x: clip;
    overflow-y: visible;
    max-width: 100%;
    width: 100%;
    position: relative;
    contain: paint;
  }
  .rle-root img {
    max-width: 100%;
    height: auto;
  }
  .rle-root a {
    text-decoration: none;
  }
  /* Garantía absoluta: ninguna sección puede salirse del root */
  .rle-root > section,
  .rle-root > div {
    max-width: 100%;
    overflow-x: clip;
  }
  /* Evita que cualquier hijo herede subrayados del tema */
  .rle-root .rle-card__price-value,
  .rle-root .rle-card__title,
  .rle-root .rle-card__tagline,
  .rle-root .rle-section__title {
    text-decoration: none !important;
    border-bottom: 0 !important;
  }

  /* Tipografía heredada de USE theme vía var() con fallback (definido arriba en :root) */

  /* ─────────────────── HERO IMPACTANTE — MAX 100svh ─────────────────── */
  .rle-hero {
    position: relative;
    height: 100svh;
    max-height: 100svh;
    min-height: 560px;
    width: 100%;
    overflow: clip;
    isolation: isolate;
    color: #fff;
    background: #0b1f17;
    display: block;
  }

  .rle-hero__media {
    position: absolute;
    inset: 0;
    z-index: 0;
    overflow: clip;
  }

  .rle-hero__pic {
    position: absolute;
    inset: 0;
    display: block;
  }

  .rle-hero__pic img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 35%;
    opacity: .92;
  }

  /* Veil cinematográfico: oscuro arriba (legibilidad header) + oscuro abajo (CTAs) */
  .rle-hero__veil {
    position: absolute;
    inset: 0;
    z-index: 1;
    background:
      linear-gradient(180deg,
        rgba(8, 22, 16, .55) 0%,
        rgba(8, 22, 16, .15) 25%,
        rgba(8, 22, 16, .15) 55%,
        rgba(8, 22, 16, .80) 100%);
  }

  /* Inner: grid 3 filas con espacios proporcionales */
  .rle-hero__inner {
    position: relative;
    z-index: 2;
    height: 100%;
    width: min(1180px, calc(100% - 32px));
    margin-inline: auto;
    display: grid;
    grid-template-rows: auto 1fr auto;
    /* Reserva top equiv al header sticky USE (~65px) + breathing */
    padding: clamp(82px, 11vh, 110px) 0 clamp(24px, 4vh, 44px);
    gap: clamp(20px, 3vh, 36px);
    text-align: center;
  }

  /* Top: eyebrow */
  .rle-hero__top {
    display: flex;
    justify-content: center;
  }

  /* Center: título + sub + CTAs */
  .rle-hero__center {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: clamp(14px, 2.2vh, 26px);
    min-height: 0;
  }

  /* Bottom: badges */
  .rle-hero__bottom {
    display: flex;
    justify-content: center;
    align-items: flex-end;
  }

  /* TÍTULO: clamp suave que escala mobile-to-desktop sin desbordar */
  .rle-hero__title {
    font-family: var(--rle-display);
    font-weight: 600;
    font-size: clamp(34px, 6.5vw, 88px);
    line-height: .98;
    letter-spacing: -.025em;
    margin: 0;
    color: #fff;
    text-wrap: balance;
  }

  .rle-hero__line {
    display: block;
    line-height: .98;
  }

  .rle-hero__line--italic {
    font-style: italic;
    color: #fde68a;
    text-shadow: 0 4px 24px rgba(0, 0, 0, .35);
  }

  /* Sub */
  .rle-hero__sub {
    color: rgba(255, 255, 255, .92) !important;
    font-size: clamp(14px, 1.3vw, 17px) !important;
    line-height: 1.55;
    margin: 0;
    max-width: 540px;
    text-shadow: 0 2px 12px rgba(0, 0, 0, .35);
  }

  /* CTAs */
  .rle-hero__ctas {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
  }

  .rle-hero__ctas .rle-btn {
    padding: 13px 26px;
    font-size: 14px;
    letter-spacing: .01em;
  }

  /* Badges minimalistas en fila */
  .rle-hero__badges {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 6px 22px;
  }
  .rle-hero__badges li {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    font: 600 11px/1 var(--rle-font);
    letter-spacing: .14em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, .82);
    white-space: nowrap;
  }
  .rle-hero__badges svg { opacity: .8; }

  /* ─────────────────── MARQUEE ─────────────────── */
  .rle-marquee {
    background: var(--rle-ink);
    color: var(--rle-paper);
    overflow: hidden !important;
    padding: 18px 0;
    border-block: 1px solid rgba(255, 255, 255, .06);
    width: 100%;
    max-width: 100%;
    position: relative;
    contain: paint;
    display: block;
  }

  .rle-marquee__track {
    display: inline-flex;
    align-items: center;
    gap: 36px;
    white-space: nowrap;
    animation: rleMarquee 48s linear infinite;
    will-change: transform;
    width: max-content;
    max-width: none;
  }

  /* En mobile el marquee aporta poco y consume layout */
  @media (max-width: 640px) {
    .rle-marquee { display: none; }
  }

  .rle-marquee__track span {
    font: 600 13px/1 var(--rle-font);
    letter-spacing: .24em;
    text-transform: uppercase;
  }

  .rle-marquee__track span[aria-hidden] {
    color: var(--rle-gold);
    font-size: 10px;
  }

  @keyframes rleMarquee {
    from { transform: translate3d(0, 0, 0); }
    to   { transform: translate3d(-50%, 0, 0); }
  }

  /* ─────────────────── SECCIÓN COMÚN ─────────────────── */
  .rle-section__head {
    text-align: center;
    max-width: 760px;
    margin: 0 auto clamp(48px, 6vw, 80px);
  }

  .rle-section__head--left {
    text-align: left;
    margin-inline: 0;
  }

  .rle-section__eyebrow {
    display: inline-block;
    font: 600 11px/1 var(--rle-font);
    letter-spacing: .28em;
    text-transform: uppercase;
    color: var(--rle-primary);
    margin-bottom: 16px;
    position: relative;
    padding-left: 32px;
  }

  .rle-section__eyebrow::before {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    width: 24px;
    height: 1px;
    background: currentColor;
  }

  .rle-section__eyebrow--light {
    color: var(--rle-accent);
  }

  .rle-section__title {
    font-family: var(--rle-display);
    font-weight: 600;
    font-size: clamp(28px, 4.4vw, 48px);
    line-height: 1.1;
    letter-spacing: -.025em;
    margin: 0 0 18px;
    color: var(--rle-ink);
  }

  .rle-section__sub {
    font-size: clamp(15px, 1.4vw, 18px);
    color: var(--rle-muted);
    max-width: 580px;
    margin: 0 auto;
  }

  /* Eyebrow dentro del hero (sobre fondo oscuro) */
  .rle-hero__eyebrow {
    color: #fff !important;
    background: rgba(255, 255, 255, .12) !important;
    border: 1px solid rgba(255, 255, 255, .22) !important;
    backdrop-filter: blur(8px) !important;
  }
  .rle-hero__eyebrow .rle-hero__dot { background: var(--rle-accent) !important; box-shadow: 0 0 8px var(--rle-accent); }

  /* Texto de descripción del hero más legible */
  .rle-hero__sub {
    color: rgba(255, 255, 255, .92) !important;
    font-size: clamp(15px, 1.4vw, 18px) !important;
    text-shadow: 0 2px 8px rgba(0, 0, 0, .35) !important;
  }

  .rle-hero__badges li { color: rgba(255, 255, 255, .88) !important; }

  /* Texto de "Desliza para descubrir" más visible */
  .rle-hero__scroll { color: rgba(255, 255, 255, .85) !important; }

  /* ─────────────────── TOURS ─────────────────── */
  .rle-tours {
    padding: clamp(80px, 10vw, 140px) 0;
    background: var(--rle-paper);
    position: relative;
  }

  .rle-tours::before {
    content: "";
    position: absolute;
    top: 10%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(245, 158, 11, .12), transparent 70%);
    filter: blur(80px);
    pointer-events: none;
    z-index: 0;
  }

  .rle-filters {
    position: relative;
    display: inline-flex;
    gap: 4px;
    padding: 6px;
    margin-top: 30px;
    background: rgba(11, 32, 20, .05);
    border-radius: 999px;
    backdrop-filter: blur(8px);
  }

  .rle-filter {
    position: relative;
    z-index: 2;
    background: transparent;
    border: 0;
    cursor: pointer;
    padding: 11px 22px;
    border-radius: 999px;
    font: 600 13px/1 var(--rle-font);
    letter-spacing: .04em;
    color: rgba(11, 32, 20, .6);
    transition: color .3s var(--rle-ease);
  }

  .rle-filter:hover { color: var(--rle-ink); }

  .rle-filter.is-active { color: #fff; }

  .rle-filter__pill {
    position: absolute;
    z-index: 1;
    top: 6px;
    left: 6px;
    height: calc(100% - 12px);
    background: linear-gradient(135deg, var(--rle-primary), var(--rle-primary-dark));
    border-radius: 999px;
    transition: transform .45s var(--rle-ease), width .45s var(--rle-ease);
    box-shadow: 0 8px 20px -6px rgba(83, 89, 37, .5);
  }

  /* ─── CARRUSEL DE TOURS (horizontal, una fila) ─── */
  .rle-carousel {
    position: relative;
    width: 100%;
    max-width: 100%;
    z-index: 1;
  }

  .rle-carousel__track {
    display: flex;
    gap: 22px;
    overflow-x: auto;
    overflow-y: visible;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    scrollbar-width: none;
    -ms-overflow-style: none;
    -webkit-overflow-scrolling: touch;
    padding: 8px 4px 24px;
    /* Padding lateral para mostrar peek de la siguiente card */
    scroll-padding: 0 24px;
  }

  .rle-carousel__track::-webkit-scrollbar { display: none; }

  .rle-carousel__nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 5;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: 1px solid var(--rle-border);
    background: #fff;
    color: var(--rle-ink);
    display: grid;
    place-items: center;
    cursor: pointer;
    box-shadow: var(--rle-shadow-sm);
    transition: background .25s, color .25s, transform .25s, opacity .25s;
  }

  .rle-carousel__nav:hover {
    background: var(--rle-primary);
    color: #fff;
    border-color: var(--rle-primary);
  }

  .rle-carousel__nav:disabled {
    opacity: 0;
    pointer-events: none;
  }

  .rle-carousel__nav--prev { left: -24px; }
  .rle-carousel__nav--next { right: -24px; }

  .rle-carousel__dots {
    display: flex;
    justify-content: center;
    gap: 6px;
    margin-top: 18px;
  }

  .rle-carousel__dot {
    width: 6px;
    height: 6px;
    border-radius: 999px;
    border: 0;
    background: rgba(11, 32, 20, .2);
    cursor: pointer;
    padding: 0;
    transition: background .25s, width .25s, transform .25s;
  }

  .rle-carousel__dot.is-active {
    width: 24px;
    background: var(--rle-primary-dark);
  }

  .rle-card {
    position: relative;
    flex: 0 0 320px;
    scroll-snap-align: start;
    background: #fff;
    border-radius: var(--rle-radius);
    overflow: hidden;
    box-shadow: var(--rle-shadow-sm);
    transition: transform .5s var(--rle-ease), box-shadow .5s var(--rle-ease), opacity .5s, max-width .5s, margin .5s, padding .5s;
    will-change: transform;
    opacity: 0;
    transform: translateY(20px);
    animation: rleCardIn .7s var(--rle-ease) forwards;
    animation-delay: calc(var(--rle-card-index, 0) * .06s);
  }

  .rle-card.is-hidden {
    opacity: 0;
    transform: scale(.9);
    pointer-events: none;
    flex: 0 0 0;
    max-width: 0;
    margin: 0;
    padding: 0;
    overflow: hidden;
  }

  @keyframes rleCardIn {
    to { opacity: 1; transform: translateY(0); }
  }

  .rle-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--rle-shadow);
  }

  .rle-card__link {
    display: block;
    color: inherit;
    text-decoration: none;
  }

  .rle-card__media {
    position: relative;
    aspect-ratio: 4 / 5;
    overflow: hidden;
    background: #f1f5f9;
  }

  .rle-card__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .7s var(--rle-ease);
  }

  .rle-card:hover .rle-card__media img {
    transform: scale(1.06);
  }

  .rle-card__badge {
    position: absolute;
    top: 14px;
    left: 14px;
    padding: 6px 11px;
    background: rgba(255, 255, 255, .85);
    color: var(--rle-ink);
    font: 700 9.5px/1 var(--rle-font);
    letter-spacing: .14em;
    border-radius: 999px;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, .15);
  }

  .rle-card--pesca .rle-card__badge { background: rgba(139, 187, 217, .92); color: var(--rle-ink); }
  .rle-card--ecoturismo .rle-card__badge { background: rgba(83, 89, 37, .92); color: #fff; }

  .rle-card__body {
    padding: 22px 24px 14px;
  }

  .rle-card__meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font: 600 11px/1 var(--rle-font);
    letter-spacing: .14em;
    text-transform: uppercase;
    color: rgba(11, 32, 20, .55);
    margin-bottom: 12px;
  }

  .rle-card__duration {
    display: inline-flex;
    align-items: center;
    gap: 5px;
  }

  .rle-card__title {
    font-family: var(--rle-display);
    font-weight: 600;
    font-size: clamp(20px, 1.9vw, 26px);
    line-height: 1.15;
    margin: 0 0 8px;
    color: var(--rle-ink);
    letter-spacing: -.01em;
  }

  .rle-card__tagline {
    font-size: 13.5px;
    color: rgba(11, 32, 20, .65);
    margin: 0 0 18px;
    min-height: 2.6em;
    line-height: 1.5;
  }

  .rle-card__foot {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 16px;
    border-top: 1px solid var(--rle-border);
  }

  .rle-card__price {
    display: block;
  }

  .rle-card__price-label {
    display: block;
    font-size: 10px;
    letter-spacing: .18em;
    text-transform: uppercase;
    color: rgba(11, 32, 20, .5);
    margin-bottom: 4px;
  }

  .rle-card__price-value {
    font: 700 18px/1 var(--rle-font);
    color: var(--rle-ink);
    text-decoration: none !important;
    border-bottom: 0 !important;
    background: transparent !important;
    letter-spacing: -.01em;
  }

  .rle-card__arrow {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: var(--rle-paper-2);
    display: grid;
    place-items: center;
    transition: background .3s var(--rle-ease), transform .3s var(--rle-ease);
  }

  .rle-card:hover .rle-card__arrow {
    background: var(--rle-primary);
    color: #fff;
    transform: rotate(45deg);
  }

  .rle-card__actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1px;
    background: var(--rle-border);
    border-top: 1px solid var(--rle-border);
  }

  .rle-card__cta {
    background: #fff;
    border: 0;
    padding: 16px 12px;
    font: 700 12px/1 var(--rle-font);
    letter-spacing: .1em;
    text-transform: uppercase;
    cursor: pointer;
    transition: background .25s, color .25s;
  }

  .rle-card__cta--book {
    background: var(--rle-primary);
    color: #fff;
  }
  .rle-card__cta--book:hover {
    background: var(--rle-primary-dark);
    color: #fff;
  }

  .rle-card__cta--info {
    color: var(--rle-ink-soft);
  }
  .rle-card__cta--info:hover {
    background: var(--rle-paper-2);
    color: var(--rle-ink);
  }

  /* ─────────────────── GUÍA (sticky storytelling) ─────────────────── */
  .rle-guide {
    padding: clamp(80px, 10vw, 140px) 0;
    background: var(--rle-ink);
    color: var(--rle-paper);
    position: relative;
    overflow: clip;
  }

  .rle-guide::before {
    content: "";
    position: absolute;
    top: -20%;
    left: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(202, 165, 93, .15), transparent 70%);
    filter: blur(80px);
    pointer-events: none;
  }

  .rle-guide__container {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: clamp(40px, 5vw, 80px);
    align-items: center;
  }

  .rle-guide__media {
    position: relative;
    aspect-ratio: 4 / 5;
    border-radius: var(--rle-radius-lg);
    overflow: hidden;
    will-change: transform;
  }

  .rle-guide__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  .rle-guide__sticker {
    position: absolute;
    inset: auto auto 24px 24px;
    background: var(--rle-gold);
    color: var(--rle-ink);
    font: 700 11px/1 var(--rle-font);
    letter-spacing: .3em;
    padding: 10px 16px;
    border-radius: 999px;
    box-shadow: 0 8px 20px -6px rgba(0, 0, 0, .4);
  }

  .rle-guide__body .rle-section__eyebrow { color: var(--rle-accent); }
  .rle-guide__title { color: #fff; }
  .rle-guide__body-text {
    font-size: clamp(16px, 1.5vw, 19px);
    color: rgba(251, 248, 242, .8);
    margin: 0 0 32px;
    max-width: 540px;
    line-height: 1.7;
  }

  .rle-guide__stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin: 0 0 36px;
    padding-block: 28px;
    border-block: 1px solid rgba(251, 248, 242, .1);
  }

  .rle-guide__stats div { text-align: left; }
  .rle-guide__stats dt {
    font-family: var(--rle-display);
    font-size: clamp(32px, 4vw, 48px);
    line-height: 1;
    color: var(--rle-gold);
    margin-bottom: 6px;
  }
  .rle-guide__stats dd {
    margin: 0;
    font-size: 12px;
    letter-spacing: .14em;
    text-transform: uppercase;
    color: rgba(251, 248, 242, .6);
  }

  /* ─────────────────── RESERVA STICKY ─────────────────── */
  .rle-reserve {
    padding: clamp(60px, 8vw, 100px) 0;
    background: var(--rle-paper);
  }

  .rle-reserve__card {
    background: linear-gradient(135deg, var(--rle-primary-dark), var(--rle-ink));
    color: #fff;
    border-radius: var(--rle-radius-lg);
    padding: clamp(36px, 5vw, 70px);
    text-align: center;
    position: relative;
    overflow: hidden;
    box-shadow: var(--rle-shadow);
  }

  .rle-reserve__card::before {
    content: "";
    position: absolute;
    top: -50%;
    right: -20%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(139, 187, 217, .35), transparent 70%);
    filter: blur(60px);
    pointer-events: none;
  }

  .rle-reserve__head { position: relative; }

  .rle-reserve__title {
    font-family: var(--rle-display);
    font-weight: 500;
    font-size: clamp(28px, 4vw, 48px);
    margin: 0 0 14px;
    line-height: 1.1;
  }

  .rle-reserve__body {
    color: rgba(255, 255, 255, .8);
    max-width: 560px;
    margin: 0 auto 40px;
  }

  .rle-reserve__grid {
    position: relative;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
    margin: 40px auto;
    max-width: 760px;
  }

  .rle-reserve__step {
    background: rgba(255, 255, 255, .06);
    border: 1px solid rgba(255, 255, 255, .1);
    border-radius: var(--rle-radius);
    padding: 22px 18px;
    backdrop-filter: blur(8px);
  }

  .rle-reserve__num {
    font-family: var(--rle-display);
    font-size: 32px;
    color: var(--rle-accent);
    display: block;
    margin-bottom: 6px;
    font-style: italic;
  }

  .rle-reserve__step h3 {
    margin: 0;
    font-size: 14px;
    font-weight: 600;
    color: #fff;
  }

  .rle-reserve__cta {
    margin-top: 18px;
  }

  .rle-reserve__pays {
    position: relative;
    margin-top: 30px;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 24px;
    opacity: .85;
  }

  .rle-reserve__pays img {
    height: 22px;
    width: auto;
    filter: brightness(0) invert(1);
  }

  .rle-reserve__pays-wa {
    font-size: 12px;
    letter-spacing: .14em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, .7);
  }

  /* ─────────────────── GALERÍA BENTO ─────────────────── */
  .rle-gallery {
    padding: clamp(70px, 9vw, 120px) 0;
    background: #f8fafc !important;
  }

  .rle-bento {
    display: grid;
    gap: 16px;
    grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: 180px;
  }

  .rle-bento__cell {
    position: relative;
    overflow: hidden;
    border-radius: var(--rle-radius-sm);
    background: var(--rle-paper);
    text-decoration: none;
    color: #fff;
    isolation: isolate;
  }

  .rle-bento__cell img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .8s var(--rle-ease);
  }

  .rle-bento__cell::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(0deg, rgba(11, 32, 20, .55) 0%, transparent 50%);
  }

  .rle-bento__cell:hover img {
    transform: scale(1.08);
  }

  .rle-bento__tag {
    position: absolute;
    z-index: 2;
    inset: auto 16px 14px;
    font: 600 12px/1 var(--rle-font);
    letter-spacing: .12em;
    text-transform: uppercase;
  }

  .rle-bento__cell--lg {
    grid-column: span 2;
    grid-row: span 2;
  }

  .rle-bento__cell--wide {
    grid-column: span 2;
  }

  .rle-gallery__cta {
    display: inline-flex;
    margin-top: 36px;
    color: var(--rle-ink);
    background: #fff;
    border: 1px solid var(--rle-border);
  }

  .rle-gallery__cta:hover {
    background: var(--rle-ink);
    color: #fff;
  }

  /* ─────────────────── BLOG ─────────────────── */
  .rle-blog {
    padding: clamp(80px, 10vw, 140px) 0;
    background: var(--rle-paper);
  }

  .rle-blog__container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(40px, 5vw, 80px);
    align-items: center;
  }

  .rle-blog__copy .rle-section__title {
    margin-bottom: 18px;
  }

  .rle-blog__body {
    font-size: clamp(16px, 1.4vw, 18px);
    color: rgba(11, 32, 20, .7);
    margin: 0 0 32px;
    max-width: 520px;
    line-height: 1.7;
  }

  .rle-blog__visual {
    position: relative;
    aspect-ratio: 1;
  }

  .rle-blog__visual > img:first-child {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: var(--rle-radius-lg);
    box-shadow: var(--rle-shadow);
  }

  .rle-blog__deco {
    position: absolute;
    width: 30%;
    bottom: -8%;
    right: -6%;
    filter: drop-shadow(0 16px 30px rgba(0, 0, 0, .25));
  }

  /* ─────────────────── MAPA ─────────────────── */
  .rle-map {
    padding: clamp(60px, 8vw, 100px) 0 0;
    background: var(--rle-paper);
  }

  .rle-map__embed {
    position: relative;
    aspect-ratio: 16 / 9;
    border-radius: var(--rle-radius-lg) var(--rle-radius-lg) 0 0;
    overflow: hidden;
    box-shadow: var(--rle-shadow);
  }

  .rle-map__embed iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: 0;
    filter: grayscale(.3) contrast(1.05);
  }

  /* ─────────────────── MODAL ─────────────────── */
  .rle-modal {
    position: fixed;
    inset: 0;
    z-index: 200;
    display: grid;
    place-items: center;
    padding: 20px;
    opacity: 0;
    pointer-events: none;
    transition: opacity .4s var(--rle-ease);
  }

  .rle-modal.is-open {
    opacity: 1;
    pointer-events: auto;
  }

  .rle-modal__overlay {
    position: absolute;
    inset: 0;
    background: rgba(11, 32, 20, .7);
    backdrop-filter: blur(8px);
  }

  .rle-modal__panel {
    position: relative;
    background: var(--rle-paper);
    border-radius: var(--rle-radius-lg);
    box-shadow: var(--rle-shadow);
    width: min(640px, 100%);
    max-height: 92vh;
    overflow-y: auto;
    padding: clamp(28px, 4vw, 48px);
    transform: translateY(40px) scale(.95);
    transition: transform .5s var(--rle-ease);
  }

  .rle-modal.is-open .rle-modal__panel {
    transform: translateY(0) scale(1);
  }

  .rle-modal__close {
    position: absolute;
    top: 16px;
    right: 18px;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: rgba(11, 32, 20, .06);
    color: var(--rle-ink);
    border: 0;
    cursor: pointer;
    font-size: 22px;
    line-height: 1;
    display: grid;
    place-items: center;
    transition: background .3s;
  }

  .rle-modal__close:hover { background: rgba(11, 32, 20, .12); }

  .rle-modal__head {
    margin-bottom: 28px;
    text-align: center;
  }

  .rle-modal__head .rle-section__eyebrow {
    color: var(--rle-primary-dark);
    padding-left: 0;
  }

  .rle-modal__head .rle-section__eyebrow::before { display: none; }

  .rle-modal__title {
    font-family: var(--rle-display);
    font-weight: 500;
    font-size: clamp(24px, 3vw, 32px);
    margin: 0;
    line-height: 1.15;
  }

  .rle-field {
    margin-bottom: 22px;
    border: 0;
    padding: 0;
  }

  .rle-field legend {
    display: block;
    font: 600 11px/1 var(--rle-font);
    letter-spacing: .18em;
    text-transform: uppercase;
    color: rgba(11, 32, 20, .6);
    margin-bottom: 10px;
  }

  .rle-field legend small {
    text-transform: none;
    letter-spacing: 0;
    font-weight: 400;
    color: rgba(11, 32, 20, .45);
  }

  .rle-field select,
  .rle-field input[type="text"],
  .rle-field input[type="email"],
  .rle-field input[type="tel"],
  .rle-field input[type="number"] {
    width: 100%;
    padding: 14px 16px;
    border-radius: var(--rle-radius-sm);
    border: 1px solid var(--rle-border);
    background: #fff;
    font: 500 15px/1.2 var(--rle-font);
    color: var(--rle-ink);
    transition: border-color .3s, box-shadow .3s;
  }

  .rle-field select:focus,
  .rle-field input:focus {
    outline: 0;
    border-color: var(--rle-primary);
    box-shadow: 0 0 0 4px rgba(136, 140, 24, .15);
  }

  .rle-field-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
  }

  .rle-field-row + input { margin-top: 12px; }

  .rle-stepper {
    display: inline-flex;
    align-items: center;
    background: #fff;
    border: 1px solid var(--rle-border);
    border-radius: 999px;
    padding: 4px;
    gap: 4px;
  }

  .rle-stepper__btn {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: var(--rle-paper-2);
    color: var(--rle-ink);
    border: 0;
    font-size: 18px;
    cursor: pointer;
    transition: background .25s;
  }

  .rle-stepper__btn:hover { background: var(--rle-primary); color: #fff; }

  .rle-stepper input {
    width: 50px !important;
    border: 0 !important;
    text-align: center;
    font: 700 16px/1 var(--rle-font) !important;
    padding: 0 !important;
    background: transparent !important;
  }

  .rle-summary {
    background: var(--rle-paper-2);
    border-radius: var(--rle-radius-sm);
    padding: 18px 20px;
    margin: 8px 0 22px;
  }

  .rle-summary__row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-block: 6px;
    font-size: 14px;
  }

  .rle-summary__row strong {
    font: 700 20px/1 var(--rle-font);
    color: var(--rle-primary-dark);
  }

  .rle-summary__row--muted { color: rgba(11, 32, 20, .55); }

  .rle-pay {
    display: grid;
    gap: 10px;
  }

  .rle-pay__btn {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    width: 100%;
    padding: 14px 20px;
    border: 1px solid var(--rle-border);
    background: #fff;
    border-radius: var(--rle-radius-sm);
    cursor: pointer;
    font: 700 14px/1 var(--rle-font);
    color: var(--rle-ink);
    text-decoration: none;
    transition: transform .25s, border-color .25s, box-shadow .25s;
  }

  .rle-pay__btn:hover {
    transform: translateY(-2px);
    box-shadow: var(--rle-shadow-sm);
    border-color: var(--rle-primary);
  }

  .rle-pay__btn img { height: 22px; width: auto; }

  .rle-pay__btn--wa {
    background: #25d366;
    color: #fff;
    border-color: transparent;
  }

  .rle-pay__btn--wa:hover {
    background: #1ebe5b;
    border-color: transparent;
  }

  .rle-modal__fineprint {
    margin: 18px 0 0;
    font-size: 12px;
    color: rgba(11, 32, 20, .55);
    text-align: center;
    line-height: 1.5;
  }

  /* ─────────────────── RESPONSIVE ─────────────────── */
  @media (max-width: 1024px) {
    .rle-guide__container,
    .rle-blog__container {
      grid-template-columns: 1fr;
    }
    .rle-blog__visual {
      max-width: 480px;
      margin-inline: auto;
    }
    .rle-bento {
      grid-template-columns: repeat(2, 1fr);
      grid-auto-rows: 160px;
    }
    .rle-bento__cell--lg {
      grid-column: span 2;
      grid-row: span 2;
    }
    .rle-bento__cell--wide {
      grid-column: span 2;
    }
  }

  /* Mobile global (sin tocar hero — hero ya es responsive vía clamp() + 100svh) */
  @media (max-width: 640px) {
    .rle-card { flex-basis: 78vw !important; }
    .rle-carousel__nav { display: none; }
    .rle-carousel__track { padding: 8px 16px 24px; }

    .rle-reserve__grid { grid-template-columns: 1fr; }
    .rle-guide__stats { grid-template-columns: repeat(3, 1fr); gap: 12px; }
    .rle-guide__stats dt { font-size: 28px; }
    .rle-guide__stats dd { font-size: 10px; }
    .rle-bento { grid-auto-rows: 140px; }
    .rle-field-row { grid-template-columns: 1fr; }
    .rle-modal { padding: 12px; }
    .rle-modal__panel { padding: 24px 20px; }
    .rle-section__head { margin-bottom: 36px; }
    .rle-tours,
    .rle-guide,
    .rle-gallery,
    .rle-blog { padding: 56px 0; }
  }

  @media (max-width: 380px) {
    .rle-card { flex-basis: 85vw !important; }
    .rle-container { width: min(1280px, calc(100% - 24px)); }
  }

  /* ─────────────────── A11Y ─────────────────── */
  @media (prefers-reduced-motion: reduce) {
    .rle-root *,
    .rle-root *::before,
    .rle-root *::after {
      animation-duration: .01ms !important;
      animation-iteration-count: 1 !important;
      transition-duration: .01ms !important;
    }
  }

  .rle-root :focus-visible {
    outline: 2px solid var(--rle-primary);
    outline-offset: 3px;
    border-radius: 4px;
  }

  /* ─────────────────── TESTIMONIOS (G + TripAdvisor) ─────────────────── */
  .rle-reviews {
    padding: clamp(80px, 10vw, 130px) 0;
    background: var(--rle-paper);
    position: relative;
    overflow: clip;
  }

  .rle-reviews::before {
    content: "";
    position: absolute;
    top: 20%;
    left: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(0, 170, 108, .12), transparent 70%);
    filter: blur(60px);
    pointer-events: none;
  }

  .rle-reviews__layout {
    display: grid;
    grid-template-columns: minmax(260px, 320px) 1fr;
    gap: clamp(28px, 4vw, 60px);
    align-items: stretch;
  }

  /* Panel izquierdo */
  .rle-reviews__panel {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 30px;
    padding: 32px 28px;
    background: #fff;
    border-radius: var(--rle-radius);
    box-shadow: var(--rle-shadow-sm);
    position: relative;
    z-index: 1;
  }

  .rle-reviews__panel-top { text-align: center; }

  .rle-reviews__panel .rle-section__eyebrow {
    margin-bottom: 14px;
    padding-left: 0;
  }
  .rle-reviews__panel .rle-section__eyebrow::before { display: none; }

  .rle-reviews__label {
    font-family: var(--rle-display);
    font-weight: 700;
    font-size: clamp(22px, 2.4vw, 30px);
    letter-spacing: .04em;
    color: var(--rle-ink);
    margin-bottom: 14px;
  }

  .rle-reviews__stars {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    color: #00aa6c;
    margin-bottom: 12px;
  }

  .rle-reviews__circle {
    width: 22px;
    height: 22px;
    border-radius: 50%;
    border: 2px solid currentColor;
    display: grid;
    place-items: center;
  }

  .rle-reviews__circle--sm {
    width: 14px;
    height: 14px;
    border-width: 1.5px;
  }

  .rle-reviews__based {
    font-size: 13px;
    color: rgba(11, 32, 20, .65);
    margin: 0 0 22px;
  }

  .rle-reviews__based strong {
    color: var(--rle-ink);
    font-weight: 700;
  }

  .rle-reviews__sources {
    display: flex;
    flex-direction: column;
    gap: 8px;
    list-style: none;
    padding: 0;
    margin: 0;
  }

  .rle-reviews__source {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 14px;
    background: var(--rle-paper);
    border-radius: 999px;
    font-size: 13px;
    font-weight: 600;
  }

  .rle-reviews__source--ta { color: #00aa6c; }
  .rle-reviews__source--g  { color: #4285F4; }

  .rle-reviews__source-icon {
    display: grid;
    place-items: center;
    flex-shrink: 0;
  }

  .rle-reviews__source-name {
    flex: 1;
    color: var(--rle-ink);
  }

  .rle-reviews__source-count {
    font-weight: 700;
    color: rgba(11, 32, 20, .55);
  }

  .rle-reviews__panel-bot {
    text-align: center;
    padding-top: 24px;
    border-top: 1px solid var(--rle-border);
  }

  .rle-reviews__biz {
    font: 600 14px/1.3 var(--rle-font);
    color: var(--rle-ink);
    margin: 0 0 14px;
  }

  .rle-reviews__write {
    display: flex;
    flex-direction: column;
    gap: 8px;
  }

  .rle-reviews__write-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 11px 16px;
    border: 1px solid var(--rle-border);
    border-radius: 999px;
    background: #fff;
    color: var(--rle-ink);
    text-decoration: none;
    font: 600 12px/1 var(--rle-font);
    transition: transform .25s, border-color .25s, background .25s;
  }

  .rle-reviews__write-btn:hover {
    transform: translateY(-1px);
    background: var(--rle-paper);
    border-color: var(--rle-ink);
  }

  .rle-reviews__write-btn--g:hover { border-color: #4285F4; }
  .rle-reviews__write-btn--ta:hover { border-color: #00aa6c; }

  /* Carrusel derecho */
  .rle-reviews__slider {
    position: relative;
    min-width: 0;
  }

  .rle-reviews__track {
    display: flex;
    gap: 18px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    scrollbar-width: none;
    padding: 4px 4px 18px;
    -webkit-overflow-scrolling: touch;
  }

  .rle-reviews__track::-webkit-scrollbar { display: none; }

  .rle-review {
    flex: 0 0 calc(33.333% - 12px);
    min-width: 260px;
    scroll-snap-align: start;
    background: #fff;
    border-radius: var(--rle-radius-sm);
    padding: 20px 22px;
    box-shadow: var(--rle-shadow-sm);
    display: flex;
    flex-direction: column;
    gap: 10px;
    transition: transform .35s var(--rle-ease), box-shadow .35s var(--rle-ease);
  }

  .rle-review:hover {
    transform: translateY(-4px);
    box-shadow: var(--rle-shadow);
  }

  .rle-review__head {
    display: flex;
    align-items: center;
    gap: 10px;
  }

  .rle-review__avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
    display: grid;
    place-items: center;
    background: var(--rle-paper-2);
  }

  .rle-review__avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  .rle-review__avatar--initial {
    color: #fff;
    font: 700 18px/1 var(--rle-font);
  }

  .rle-review__id {
    flex: 1;
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: 2px;
  }

  .rle-review__name {
    font: 600 13px/1.2 var(--rle-font);
    color: var(--rle-ink);
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .rle-review__date {
    font-size: 11px;
    color: rgba(11, 32, 20, .55);
  }

  .rle-review__source {
    flex-shrink: 0;
  }

  .rle-review__stars {
    display: inline-flex;
    align-items: center;
    gap: 2px;
    margin-top: 2px;
  }

  .rle-review__stars--ta { color: #00aa6c; }

  .rle-review__verified {
    margin-left: 6px;
    flex-shrink: 0;
  }

  .rle-review__title {
    font: 700 14px/1.35 var(--rle-font);
    color: var(--rle-ink);
    margin: 0;
  }

  .rle-review__text {
    font-size: 13px;
    line-height: 1.55;
    color: rgba(11, 32, 20, .75);
    margin: 0;
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }

  .rle-review__more {
    margin-top: auto;
    font: 600 12px/1 var(--rle-font);
    color: var(--rle-primary-dark);
    text-decoration: none;
    align-self: flex-start;
    padding-top: 6px;
  }

  .rle-review__more:hover {
    text-decoration: underline;
  }

  /* Botones nav */
  .rle-reviews__nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 1px solid var(--rle-border);
    background: #fff;
    color: var(--rle-ink);
    display: grid;
    place-items: center;
    cursor: pointer;
    box-shadow: var(--rle-shadow-sm);
    transition: background .25s, color .25s, transform .25s;
    z-index: 5;
  }

  .rle-reviews__nav:hover {
    background: var(--rle-primary);
    color: #fff;
    border-color: var(--rle-primary);
    transform: translateY(-50%) scale(1.08);
  }

  .rle-reviews__nav:disabled {
    opacity: .35;
    cursor: not-allowed;
    transform: translateY(-50%);
    background: #fff;
    color: var(--rle-ink);
  }

  .rle-reviews__nav--prev { left: -22px; }
  .rle-reviews__nav--next { right: -22px; }

  .rle-reviews__dots {
    display: flex;
    justify-content: center;
    gap: 6px;
    margin-top: 18px;
  }

  .rle-reviews__dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: rgba(11, 32, 20, .2);
    border: 0;
    cursor: pointer;
    transition: background .25s, transform .25s;
    padding: 0;
  }

  .rle-reviews__dot.is-active {
    background: var(--rle-primary-dark);
    transform: scale(1.4);
  }

  /* Responsive */
  @media (max-width: 1024px) {
    .rle-reviews__layout {
      grid-template-columns: 1fr;
      gap: 30px;
    }
    .rle-reviews__panel {
      flex-direction: row;
      flex-wrap: wrap;
      align-items: center;
      text-align: left;
      padding: 22px;
      gap: 20px;
    }
    .rle-reviews__panel-top,
    .rle-reviews__panel-bot {
      flex: 1 1 240px;
      text-align: left;
      border: 0;
      padding-top: 0;
    }
    .rle-reviews__sources { flex-direction: row; flex-wrap: wrap; }
    .rle-reviews__write { flex-direction: row; flex-wrap: wrap; }
    .rle-review { flex: 0 0 calc(50% - 9px); }
    .rle-reviews__nav--prev { left: 6px; }
    .rle-reviews__nav--next { right: 6px; }
  }

  @media (max-width: 640px) {
    .rle-reviews { padding: 60px 0; }
    .rle-reviews__panel { flex-direction: column; align-items: stretch; text-align: center; }
    .rle-reviews__panel-top, .rle-reviews__panel-bot { text-align: center; }
    .rle-reviews__sources { flex-direction: column; }
    .rle-reviews__write { flex-direction: column; }
    .rle-review { flex: 0 0 calc(100% - 12px); min-width: 78%; }
    .rle-reviews__nav { display: none; }
  }

