/* =================================================================
   Llanos Adventures — Design System compartido
   Landings de alta conversión: tour / pasadía / paquete / hospedaje
   Versión: 2.1.0  (2026-06-16 — paleta llanera, sans-serif puro,
   sticky mobile, fechas horizontales, accesibilidad WCAG AA)
   Mobile-first, accesible (WCAG AA), i18n-safe.
   ================================================================= */

/* Web-font (Inter). Se carga vía <link rel="preconnect"> en el template
   para evitar el FOIT; este @import es fallback si el template no lo
   incluye (dev, tests, etc.). */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&display=swap');

/* =================================================================
   1. TOKENS (variables CSS — paleta oficial + sistema tipográfico)
   ================================================================= */
:root {
    /* Paleta principal — el ROJO se reserva a CTAs primarios y FOMO */
    --la-rojo:        #d41f2c;
    --la-rojo-h:      #b81823;
    --la-rojo-soft:   #fde7e9;
    --la-verde:       #168530;
    --la-verde-h:     #126d27;
    --la-verde-l:     #67b730;
    --la-amarillo:    #f5c312;
    --la-naranja:     #e44910;
    --la-cafe:        #450909;

    /* Paleta LLANERA — acentos, chips, hover states, gradientes */
    --la-llanero-verde:    #2f7d4f;  /* verde sabana */
    --la-llanero-verde-h:  #266a42;  /* hover del verde */
    --la-llanero-tierra:   #8a5a3b;  /* tierra seca */
    --la-llanero-tierra-h: #734a30;
    --la-llanero-cielo:    #b8d8e8;  /* cielo llanero */
    --la-llanero-amanecer: #f4a261;  /* amanecer del llano */
    --la-llanero-amanecer-h:#e08840;

    --la-texto:       #2a2a2a;
    --la-texto-2:     #555;
    --la-texto-3:     #777;
    --la-gris:        #f8f8f8;
    --la-gris-2:      #efefef;
    --la-borde:       #e5e5e5;
    --la-fondo:       #ffffff;
    --la-fondo-alt:   #f8f8f8;
    --la-overlay:     rgba(0, 0, 0, 0.55);

    /* Tipografía — todo sans-serif. La serif Georgia/Times quedó
       eliminada del CSS (estaba en el quote-mark de testimonios). */
    --la-font-head:   'Inter', system-ui, -apple-system, 'Segoe UI', sans-serif;
    --la-font-body:   'Inter', system-ui, -apple-system, 'Segoe UI', Roboto, system-ui, sans-serif;

    /* Sombras */
    --la-shadow-sm:   0 1px 3px rgba(0, 0, 0, 0.06);
    --la-shadow:      0 4px 12px rgba(0, 0, 0, 0.08);
    --la-shadow-lg:   0 8px 24px rgba(0, 0, 0, 0.12);
    --la-shadow-xl:   0 16px 40px rgba(0, 0, 0, 0.16);

    /* Radii */
    --la-radius-sm:   6px;
    --la-radius:      8px;
    --la-radius-md:   12px;
    --la-radius-lg:   16px;
    --la-radius-pill: 999px;

    /* Espaciado */
    --la-section-py:  48px;
    --la-section-px:  20px;
    --la-gap:         16px;
    --la-gap-lg:      24px;
    --la-gap-xl:      40px;

    /* Layout */
    --la-container:   1200px;
    --la-sidebar-w:   380px;
    --la-header-h:    64px;

    /* Transiciones */
    --la-trans-fast:  150ms ease;
    --la-trans:       220ms ease;
    --la-trans-slow:  400ms cubic-bezier(0.16, 1, 0.3, 1);

    /* Z-index */
    --la-z-cta:       100;
    --la-z-lightbox:  1000;
    --la-z-toast:     1100;
}

/* =================================================================
   2. RESET LIGERO + BASE
   ================================================================= */
*,
*::before,
*::after {
    box-sizing: border-box;
}

body.single-llanos_tour,
body.single-llanos_pasadia,
body.single-llanos_paquete,
body.single-llanos_hospedaje {
    background: var(--la-fondo);
    color: var(--la-texto);
    font-family: var(--la-font-body);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

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

a {
    color: var(--la-rojo);
    text-decoration: none;
    transition: color var(--la-trans-fast);
}
a:hover { color: var(--la-rojo-h); }
a:focus-visible {
    outline: 3px solid var(--la-llanero-verde);
    outline-offset: 2px;
    border-radius: 2px;
}

button {
    font-family: inherit;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--la-font-head);
    color: var(--la-cafe);
    line-height: 1.2;
    margin: 0 0 0.5em;
    font-weight: 700;
}

/* =================================================================
   3. UTILIDADES
   ================================================================= */
.llanos-sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.llanos-container {
    max-width: var(--la-container);
    margin: 0 auto;
    padding: 0 var(--la-section-px);
    width: 100%;
}

.llanos-section {
    padding: var(--la-section-py) 0;
    scroll-margin-top: 80px;
}

.llanos-section-alt {
    background: var(--la-fondo-alt);
}

.llanos-grid {
    display: grid;
    gap: var(--la-gap-lg);
}

/* =================================================================
   4. HERO — 2 variantes (experience / accommodation)
   ================================================================= */
.llanos-hero {
    position: relative;
    min-height: 70vh;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: flex-end;
    color: #fff;
    padding: 80px 0 60px;
    overflow: hidden;
    isolation: isolate;
}

/* "experience" variant: parallax + overlay fuerte */
.llanos-hero--experience {
    background-attachment: scroll; /* fallback para iOS que ignora fixed */
}
@media (min-width: 1024px) {
    .llanos-hero--experience {
        background-attachment: fixed;
    }
}

/* "no-image" variant: cuando el producto no tiene imagen destacada
   se aplica un gradient llanero (verde→amanecer→tierra) que evoca
   paisaje sabanero sin requerir asset gráfico. */
.llanos-hero--no-image {
    background: linear-gradient(135deg,
        var(--la-llanero-verde) 0%,
        var(--la-llanero-amanecer) 55%,
        var(--la-llanero-tierra) 100%);
    background-attachment: scroll;
}
.llanos-hero--no-image::after {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        radial-gradient(circle at 20% 30%, rgba(255,255,255,0.18) 0, transparent 35%),
        radial-gradient(circle at 80% 70%, rgba(255,255,255,0.12) 0, transparent 40%);
    z-index: 1;
    pointer-events: none;
}

.llanos-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.15) 0%, rgba(0, 0, 0, 0.65) 100%);
    z-index: 1;
    pointer-events: none;
}

.llanos-hero-inner {
    position: relative;
    z-index: 2;
    max-width: var(--la-container);
    margin: 0 auto;
    padding: 0 var(--la-section-px);
    width: 100%;
}

.llanos-hero-titulo {
    font-size: clamp(28px, 5vw, 56px);
    font-weight: 800;
    margin: 12px 0 8px;
    line-height: 1.1;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
    color: #fff;
}

.llanos-hero-subtitulo {
    font-size: clamp(15px, 2vw, 20px);
    margin: 0 0 20px;
    max-width: 700px;
    opacity: 0.95;
    text-shadow: 0 1px 4px rgba(0, 0, 0, 0.4);
}

.llanos-hero-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    font-size: 14px;
    margin-top: 16px;
}
.llanos-hero-meta span {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    padding: 8px 14px;
    border-radius: var(--la-radius-pill);
    border: 1px solid rgba(255, 255, 255, 0.2);
    font-weight: 500;
}
.llanos-hero-meta .dashicons {
    font-size: 16px;
    width: 16px;
    height: 16px;
}

/* Hero accommodation: carousel automático de 3 fotos */
.llanos-hero--accommodation {
    background: var(--la-cafe);
    min-height: 80vh;
}

.llanos-hero-carousel {
    position: absolute;
    inset: 0;
    z-index: 0;
    overflow: hidden;
}
.llanos-hero-carousel-slide {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transform: scale(1.05);
    transition: opacity 1.2s ease, transform 8s linear;
}
.llanos-hero-carousel-slide.is-active {
    opacity: 1;
    transform: scale(1);
}

/* Indicadores del carousel hero */
.llanos-hero-indicators {
    position: absolute;
    bottom: 24px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
    display: flex;
    gap: 8px;
}
.llanos-hero-indicators button {
    width: 32px;
    height: 4px;
    background: rgba(255, 255, 255, 0.4);
    border: none;
    border-radius: 2px;
    cursor: pointer;
    padding: 0;
    transition: background var(--la-trans);
}
.llanos-hero-indicators button.is-active {
    background: #fff;
}

/* =================================================================
   5. CHIPS (badges)
   ================================================================= */
.llanos-chip {
    display: inline-block;
    padding: 5px 14px;
    border-radius: var(--la-radius-pill);
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    background: var(--la-amarillo);
    color: var(--la-cafe);
    line-height: 1.4;
    box-shadow: var(--la-shadow-sm);
}
.llanos-chip-pasadia   { background: var(--la-verde-l); color: #fff; }
.llanos-chip-paquete   { background: var(--la-llanero-tierra);   color: #fff; }
.llanos-chip-hospedaje { background: var(--la-naranja); color: #fff; }
.llanos-chip-dificultad { background: rgba(255, 255, 255, 0.95); color: var(--la-cafe); }
.llanos-chip-urgencia {
    background: var(--la-amarillo);
    color: var(--la-cafe);
    animation: la-pulse 1.6s ease-in-out infinite;
}

/* Variantes llaneras — usan la paleta nueva, no rojo */
.llanos-chip-llanero   { background: var(--la-llanero-verde);    color: #fff; }
.llanos-chip-tierra    { background: var(--la-llanero-tierra);   color: #fff; }
.llanos-chip-cielo     { background: var(--la-llanero-cielo);    color: var(--la-cafe); }
.llanos-chip-amanecer  { background: var(--la-llanero-amanecer); color: var(--la-cafe); }

@keyframes la-pulse {
    0%, 100% { transform: scale(1);    box-shadow: 0 0 0 0 rgba(245, 195, 18, 0.6); }
    50%      { transform: scale(1.04); box-shadow: 0 0 0 8px rgba(245, 195, 18, 0); }
}

/* =================================================================
   6. TRUST BAR
   ================================================================= */
.llanos-trust-bar {
    background: var(--la-fondo);
    border-top: 1px solid var(--la-borde);
    border-bottom: 1px solid var(--la-borde);
    padding: 24px 0;
}
.llanos-trust-bar-inner {
    max-width: var(--la-container);
    margin: 0 auto;
    padding: 0 var(--la-section-px);
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 24px;
}
.llanos-trust-logos {
    display: flex;
    align-items: center;
    gap: 28px;
    flex-wrap: wrap;
}
.llanos-trust-logos img {
    height: 28px;
    width: auto;
    filter: grayscale(1);
    opacity: 0.7;
    transition: filter var(--la-trans), opacity var(--la-trans);
}
.llanos-trust-logos img:hover {
    filter: grayscale(0);
    opacity: 1;
}
.llanos-trust-stats {
    display: flex;
    gap: 28px;
    flex-wrap: wrap;
    font-size: 13px;
    color: var(--la-texto-2);
}
.llanos-trust-stat {
    display: flex;
    align-items: center;
    gap: 6px;
}
.llanos-trust-stat strong {
    color: var(--la-cafe);
    font-weight: 800;
    font-size: 16px;
    font-family: var(--la-font-head);
}

/* =================================================================
   7. QUICK INFO CARDS (4 cards con iconos)
   ================================================================= */
.llanos-quick-info {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--la-gap);
}
@media (max-width: 1024px) {
    .llanos-quick-info { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 480px) {
    .llanos-quick-info { grid-template-columns: 1fr; }
}
.llanos-info-card {
    background: #fff;
    border: 1px solid var(--la-borde);
    border-radius: var(--la-radius-md);
    padding: 20px;
    text-align: center;
    transition: transform var(--la-trans), box-shadow var(--la-trans);
}
.llanos-info-card:hover {
    transform: translateY(-2px);
    box-shadow: var(--la-shadow);
}
.llanos-info-card-icon {
    width: 48px;
    height: 48px;
    margin: 0 auto 12px;
    background: var(--la-llanero-cielo);
    color: var(--la-llanero-verde);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
}
.llanos-info-card-icon .dashicons {
    font-size: 24px;
    width: 24px;
    height: 24px;
}
.llanos-info-card-label {
    font-size: 12px;
    color: var(--la-texto-3);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 4px;
    font-weight: 600;
}
.llanos-info-card-value {
    font-family: var(--la-font-head);
    font-size: 16px;
    font-weight: 700;
    color: var(--la-cafe);
}

/* =================================================================
   8. LAYOUT PRINCIPAL (main + sidebar sticky)
   ================================================================= */
.llanos-layout {
    max-width: var(--la-container);
    margin: 0 auto;
    padding: var(--la-section-py) var(--la-section-px) 120px;
    display: grid;
    grid-template-columns: 1fr var(--la-sidebar-w);
    gap: var(--la-gap-xl);
    align-items: start;
}
@media (max-width: 1024px) {
    .llanos-layout {
        grid-template-columns: 1fr;
    }
    .llanos-sidebar { order: -1; }
}

.llanos-main { min-width: 0; }

.llanos-seccion { margin-bottom: var(--la-gap-xl); }
.llanos-seccion:last-child { margin-bottom: 0; }

.llanos-h2 {
    font-family: var(--la-font-head);
    font-size: clamp(22px, 3vw, 32px);
    font-weight: 800;
    color: var(--la-cafe);
    margin: 0 0 20px;
    line-height: 1.2;
    position: relative;
    padding-bottom: 12px;
}
.llanos-h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 56px;
    height: 4px;
    background: var(--la-llanero-verde);
    border-radius: 2px;
}

.llanos-h3 {
    font-size: clamp(18px, 2.4vw, 22px);
    font-weight: 700;
    color: var(--la-cafe);
    margin: 0 0 14px;
}

.llanos-prose {
    font-size: 16px;
    line-height: 1.7;
    color: var(--la-texto);
}
.llanos-prose p { margin: 0 0 14px; }
.llanos-prose ul,
.llanos-prose ol { margin: 0 0 14px 20px; }
.llanos-prose li { margin-bottom: 6px; }
.llanos-prose img { max-width: 100%; height: auto; border-radius: var(--la-radius); }
.llanos-prose strong { color: var(--la-cafe); }

/* =================================================================
   9. ITINERARIO (timeline vertical)
   ================================================================= */
.llanos-timeline {
    position: relative;
    padding-left: 32px;
    margin: 0;
}
.llanos-timeline::before {
    content: '';
    position: absolute;
    left: 12px;
    top: 6px;
    bottom: 6px;
    width: 2px;
    background: var(--la-gris-2);
}
.llanos-timeline-item {
    position: relative;
    padding-bottom: 24px;
}
.llanos-timeline-item:last-child { padding-bottom: 0; }
.llanos-timeline-item::before {
    content: '';
    position: absolute;
    left: -27px;
    top: 6px;
    width: 14px;
    height: 14px;
    background: var(--la-llanero-verde);
    border: 3px solid #fff;
    border-radius: 50%;
    box-shadow: 0 0 0 2px var(--la-llanero-verde);
}
.llanos-timeline-titulo {
    font-family: var(--la-font-head);
    font-size: 17px;
    font-weight: 700;
    color: var(--la-cafe);
    margin: 0 0 6px;
}
.llanos-timeline-hora {
    font-size: 12px;
    color: var(--la-llanero-verde);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    display: inline-block;
    margin-bottom: 4px;
}
.llanos-timeline-contenido {
    color: var(--la-texto);
    font-size: 15px;
    line-height: 1.6;
}

/* =================================================================
   10. INCLUYE / NO INCLUYE (grid 2 columnas)
   ================================================================= */
.llanos-grid-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--la-gap-lg);
}
@media (max-width: 700px) {
    .llanos-grid-2 { grid-template-columns: 1fr; }
}
.llanos-card-info {
    background: var(--la-fondo-alt);
    padding: 24px;
    border-radius: var(--la-radius-md);
    border-left: 4px solid;
    box-shadow: var(--la-shadow-sm);
}
.llanos-incluye    { border-left-color: var(--la-verde); }
.llanos-no-incluye { border-left-color: var(--la-rojo);  }
.llanos-card-info h3 {
    font-size: 17px;
    margin: 0 0 12px;
    color: var(--la-cafe);
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 700;
}
.llanos-tick {
    background: var(--la-verde);
    color: #fff;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    font-weight: 700;
    flex-shrink: 0;
}
.llanos-cross {
    background: var(--la-rojo);
    color: #fff;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    font-weight: 700;
    flex-shrink: 0;
}
.llanos-incluye .llanos-prose ul,
.llanos-no-incluye .llanos-prose ul {
    margin: 0;
    padding: 0;
    list-style: none;
}
.llanos-incluye .llanos-prose ul li {
    position: relative;
    padding-left: 26px;
    margin-bottom: 8px;
    list-style: none;
}
.llanos-incluye .llanos-prose ul li::before {
    content: "✓";
    color: var(--la-verde);
    position: absolute;
    left: 0;
    font-weight: 700;
    top: 1px;
}
.llanos-no-incluye .llanos-prose ul li {
    position: relative;
    padding-left: 26px;
    margin-bottom: 8px;
    list-style: none;
}
.llanos-no-incluye .llanos-prose ul li::before {
    content: "✕";
    color: var(--la-rojo);
    position: absolute;
    left: 0;
    font-weight: 700;
    top: 1px;
}

/* =================================================================
   11. GALERÍA + LIGHTBOX
   ================================================================= */
.llanos-galeria {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
    gap: 8px;
}
.llanos-galeria-item {
    display: block;
    aspect-ratio: 1;
    overflow: hidden;
    border-radius: var(--la-radius);
    position: relative;
    cursor: zoom-in;
    background: var(--la-gris-2);
}
.llanos-galeria-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--la-trans);
}
.llanos-galeria-item:hover img,
.llanos-galeria-item:focus-visible img {
    transform: scale(1.05);
}
.llanos-galeria-item::after {
    content: '🔍';
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    opacity: 0;
    transition: opacity var(--la-trans), background var(--la-trans);
    pointer-events: none;
}
.llanos-galeria-item:hover::after,
.llanos-galeria-item:focus-visible::after {
    opacity: 1;
    background: rgba(0, 0, 0, 0.35);
}

/* Lightbox */
.llanos-lightbox {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.92);
    z-index: var(--la-z-lightbox);
    display: none;
    align-items: center;
    justify-content: center;
    padding: 40px 20px;
    animation: la-fade-in 0.25s ease;
}
.llanos-lightbox.is-open { display: flex; }
@keyframes la-fade-in { from { opacity: 0; } to { opacity: 1; } }

.llanos-lightbox-img {
    max-width: 95%;
    max-height: 90vh;
    border-radius: var(--la-radius);
    box-shadow: var(--la-shadow-xl);
}
.llanos-lightbox-caption {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    color: #fff;
    font-size: 14px;
    background: rgba(0, 0, 0, 0.5);
    padding: 8px 16px;
    border-radius: var(--la-radius-pill);
    max-width: 80%;
    text-align: center;
}
.llanos-lightbox-counter {
    position: absolute;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    color: #fff;
    font-size: 14px;
    background: rgba(0, 0, 0, 0.5);
    padding: 6px 14px;
    border-radius: var(--la-radius-pill);
    font-weight: 600;
}
.llanos-lightbox-close,
.llanos-lightbox-prev,
.llanos-lightbox-next {
    position: absolute;
    background: rgba(255, 255, 255, 0.15);
    color: #fff;
    border: none;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    font-size: 22px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background var(--la-trans);
    backdrop-filter: blur(6px);
}
.llanos-lightbox-close:hover,
.llanos-lightbox-prev:hover,
.llanos-lightbox-next:hover {
    background: rgba(255, 255, 255, 0.3);
}
.llanos-lightbox-close {
    top: 20px;
    right: 20px;
    font-size: 24px;
}
.llanos-lightbox-prev { left: 20px;  top: 50%; transform: translateY(-50%); }
.llanos-lightbox-next { right: 20px; top: 50%; transform: translateY(-50%); }
@media (max-width: 640px) {
    .llanos-lightbox-prev { left: 8px;  }
    .llanos-lightbox-next { right: 8px; }
    .llanos-lightbox-close { top: 8px; right: 8px; }
}

/* =================================================================
   12. FECHAS DISPONIBLES (grid)
   ================================================================= */
.llanos-fechas {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
    gap: 12px;
}
/* Mobile: scroll horizontal con snap en lugar de 1 card por línea */
@media (max-width: 768px) {
    .llanos-fechas {
        display: flex;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        gap: 12px;
        padding-bottom: 8px;
        /* Evita que el flex-item hijo (card) se estire a 100% ancho */
        align-items: stretch;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: thin;
    }
    .llanos-fechas::-webkit-scrollbar { height: 4px; }
    .llanos-fechas::-webkit-scrollbar-thumb {
        background: var(--la-borde);
        border-radius: 2px;
    }
    .llanos-fecha-card {
        flex: 0 0 140px;
        scroll-snap-align: start;
    }
    .llanos-fecha-msg-vacio {
        flex: 1 0 100%;
    }
}
.llanos-fecha-card {
    background: #fff;
    border: 2px solid var(--la-borde);
    border-radius: var(--la-radius-md);
    padding: 16px 12px;
    text-align: center;
    cursor: pointer;
    transition: all var(--la-trans);
    position: relative;
    overflow: hidden;
}
.llanos-fecha-card:hover {
    border-color: var(--la-rojo);
    transform: translateY(-2px);
    box-shadow: var(--la-shadow);
}
.llanos-fecha-card.is-selected {
    border-color: var(--la-rojo);
    background: var(--la-rojo-soft);
}
.llanos-fecha-card.is-low-stock {
    border-color: var(--la-amarillo);
}
.llanos-fecha-card.is-sold-out {
    opacity: 0.5;
    cursor: not-allowed;
    background: var(--la-gris);
}
.llanos-fecha-dia {
    font-family: var(--la-font-head);
    font-size: 13px;
    color: var(--la-texto-2);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-weight: 600;
}
.llanos-fecha-num {
    font-family: var(--la-font-head);
    font-size: 28px;
    font-weight: 800;
    color: var(--la-cafe);
    line-height: 1.1;
    margin: 4px 0 2px;
}
.llanos-fecha-mes {
    font-size: 13px;
    color: var(--la-texto-2);
    text-transform: capitalize;
}
.llanos-fecha-cupos {
    margin-top: 8px;
    font-size: 11px;
    color: var(--la-verde);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.3px;
}
.llanos-fecha-card.is-low-stock .llanos-fecha-cupos {
    color: #c47e00;
    animation: la-pulse-soft 1.6s ease-in-out infinite;
}
@keyframes la-pulse-soft {
    0%, 100% { opacity: 1; }
    50%      { opacity: 0.55; }
}
.llanos-fecha-card.is-sold-out .llanos-fecha-cupos {
    color: var(--la-rojo);
}
.llanos-fecha-msg-vacio {
    grid-column: 1 / -1;
    text-align: center;
    color: var(--la-texto-3);
    padding: 32px 16px;
    font-size: 14px;
    background: var(--la-gris);
    border-radius: var(--la-radius-md);
}

/* =================================================================
   13. SOCIAL PROOF (testimonials)
   ================================================================= */
.llanos-testimonios {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: var(--la-gap-lg);
}
.llanos-testimonio {
    background: #fff;
    border: 1px solid var(--la-borde);
    border-radius: var(--la-radius-md);
    padding: 20px;
    box-shadow: var(--la-shadow-sm);
    transition: transform var(--la-trans), box-shadow var(--la-trans);
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.llanos-testimonio:hover {
    transform: translateY(-2px);
    box-shadow: var(--la-shadow);
}
.llanos-testimonio-estrellas {
    color: var(--la-amarillo);
    font-size: 16px;
    letter-spacing: 2px;
    line-height: 1;
}
.llanos-testimonio-texto {
    color: var(--la-texto);
    font-size: 15px;
    line-height: 1.6;
    font-style: italic;
    flex-grow: 1;
    margin: 0;
}
.llanos-testimonio-texto::before {
    content: '"';
    color: var(--la-llanero-verde);
    font-size: 32px;
    line-height: 0;
    vertical-align: -10px;
    margin-right: 2px;
    /* Era Georgia, serif — quitado por design system v2.1 (sans-serif only). */
}
.llanos-testimonio-autor {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 4px;
    padding-top: 12px;
    border-top: 1px solid var(--la-gris-2);
}
.llanos-testimonio-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--la-gris-2);
    object-fit: cover;
    flex-shrink: 0;
}
.llanos-testimonio-autor-info {
    display: flex;
    flex-direction: column;
    line-height: 1.2;
}
.llanos-testimonio-nombre {
    font-weight: 700;
    color: var(--la-cafe);
    font-size: 14px;
}
.llanos-testimonio-meta {
    font-size: 12px;
    color: var(--la-texto-3);
}
.llanos-testimonios-msg-vacio {
    grid-column: 1 / -1;
    text-align: center;
    color: var(--la-texto-3);
    padding: 32px 16px;
    font-size: 14px;
}

/* Defensivo: si el helper PHP renderiza un wrapper vacío (sin reseñas),
   ocultar la sección completa. El helper debe retornar '' en ese caso. */
.llanos-testimonios:not(:has(.llanos-testimonio)),
.llanos-testimonios:empty {
    display: none;
}
/* Wrapper padre (la <section> que envuelve testimonios) */
.llanos-seccion:has(> .llanos-testimonios:not(:has(.llanos-testimonio))),
.llanos-seccion:has(> .llanos-testimonios:empty),
.llanos-seccion:empty {
    display: none;
}

/* Rating summary (cabecera de social proof) */
.llanos-rating-summary {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 16px 20px;
    background: linear-gradient(135deg, #fffbf0, #fff8e1);
    border: 1px solid #f5e6a8;
    border-radius: var(--la-radius-md);
    margin-bottom: var(--la-gap-lg);
}
.llanos-rating-summary-num {
    font-family: var(--la-font-head);
    font-size: 42px;
    font-weight: 800;
    color: var(--la-cafe);
    line-height: 1;
}
.llanos-rating-summary-info {
    display: flex;
    flex-direction: column;
    gap: 4px;
}
.llanos-rating-summary-estrellas {
    color: var(--la-amarillo);
    font-size: 20px;
    letter-spacing: 2px;
    line-height: 1;
}
.llanos-rating-summary-count {
    font-size: 13px;
    color: var(--la-texto-2);
}

/* =================================================================
   14. FAQ ACORDEÓN
   ================================================================= */
.llanos-faq {
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.llanos-faq-item {
    background: #fff;
    border: 1px solid var(--la-borde);
    border-radius: var(--la-radius);
    overflow: hidden;
    transition: box-shadow var(--la-trans);
}
.llanos-faq-item[open] {
    box-shadow: var(--la-shadow-sm);
    border-color: var(--la-llanero-verde);
}
.llanos-faq-item summary {
    padding: 16px 20px;
    cursor: pointer;
    font-weight: 700;
    color: var(--la-cafe);
    font-size: 15px;
    list-style: none;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    user-select: none;
    transition: background var(--la-trans-fast);
}
.llanos-faq-item summary:hover {
    background: var(--la-gris);
}
.llanos-faq-item summary::-webkit-details-marker {
    display: none;
}
.llanos-faq-item summary::after {
    content: '+';
    font-size: 22px;
    line-height: 1;
    color: var(--la-llanero-verde);
    font-weight: 400;
    transition: transform var(--la-trans);
    flex-shrink: 0;
}
.llanos-faq-item[open] summary::after {
    transform: rotate(45deg);
}
.llanos-faq-contenido {
    padding: 0 20px 18px;
    color: var(--la-texto);
    font-size: 15px;
    line-height: 1.6;
}
.llanos-faq-contenido p:last-child { margin-bottom: 0; }

/* Smooth expand/collapse del <details> (Chrome 129+, Edge 129+).
   Fallback: la transición no se ve en Safari/Firefox, pero el toggle
   sigue siendo instantáneo (no se rompe nada). */
@supports (interpolate-size: allow-keywords) {
    :root { interpolate-size: allow-keywords; }
    .llanos-faq-item .llanos-faq-contenido {
        block-size: 0;
        overflow: hidden;
        transition:
            block-size 0.32s ease,
            padding-block 0.32s ease,
            opacity 0.2s ease;
        opacity: 0;
    }
    .llanos-faq-item[open] .llanos-faq-contenido {
        block-size: auto;
        opacity: 1;
        padding-block: 0 18px;
    }
}

/* =================================================================
   15. POLÍTICAS
   ================================================================= */
.llanos-politicas {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: var(--la-gap);
}
.llanos-politica {
    background: #fff;
    border: 1px solid var(--la-borde);
    border-radius: var(--la-radius-md);
    padding: 20px;
    display: flex;
    gap: 14px;
    align-items: flex-start;
}
.llanos-politica-icon {
    width: 40px;
    height: 40px;
    background: var(--la-llanero-cielo);
    color: var(--la-llanero-verde);
    border-radius: var(--la-radius);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    flex-shrink: 0;
}
.llanos-politica-icon .dashicons {
    font-size: 22px;
    width: 22px;
    height: 22px;
}
.llanos-politica-titulo {
    font-family: var(--la-font-head);
    font-size: 15px;
    font-weight: 700;
    color: var(--la-cafe);
    margin: 0 0 4px;
}
.llanos-politica-texto {
    color: var(--la-texto-2);
    font-size: 13px;
    line-height: 1.5;
    margin: 0;
}

/* =================================================================
   16. CROSS-SELL
   ================================================================= */
.llanos-cross-sell {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: var(--la-gap);
}
.llanos-cross-card {
    background: #fff;
    border: 1px solid var(--la-borde);
    border-radius: var(--la-radius-md);
    overflow: hidden;
    text-decoration: none;
    color: inherit;
    transition: transform var(--la-trans), box-shadow var(--la-trans);
    display: flex;
    flex-direction: column;
}
.llanos-cross-card:hover,
.llanos-cross-card:focus-visible {
    transform: translateY(-4px);
    box-shadow: var(--la-shadow);
    color: inherit;
}
.llanos-cross-img {
    aspect-ratio: 16 / 10;
    overflow: hidden;
    background: var(--la-gris-2);
}
.llanos-cross-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--la-trans-slow);
}
.llanos-cross-card:hover .llanos-cross-img img {
    transform: scale(1.08);
}
.llanos-cross-body {
    padding: 14px 16px 16px;
    display: flex;
    flex-direction: column;
    gap: 4px;
    flex-grow: 1;
}
.llanos-cross-body h4 {
    font-size: 15px;
    margin: 0;
    color: var(--la-cafe);
    font-weight: 700;
    line-height: 1.3;
}
.llanos-cross-tipo {
    font-size: 11px;
    color: var(--la-texto-3);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-weight: 600;
}
.llanos-cross-precio {
    color: var(--la-llanero-verde);
    font-weight: 800;
    font-size: 16px;
    margin-top: 4px;
    font-family: var(--la-font-head);
}

/* =================================================================
   17. STICKY SIDEBAR DE RESERVA
   ================================================================= */
.llanos-sticky-card {
    position: sticky;
    top: 20px;
    background: #fff;
    border: 1px solid var(--la-borde);
    border-radius: var(--la-radius-lg);
    padding: 24px;
    box-shadow: var(--la-shadow-lg);
    display: flex;
    flex-direction: column;
    gap: 16px;
}
/* Sombra más marcada al hacer scroll (manejada por .is-scrolled vía JS) */
.llanos-sticky-card.is-scrolled {
    box-shadow: var(--la-shadow-xl);
}
@media (max-width: 1024px) {
    .llanos-sticky-card { position: static; }
}

.llanos-precio-box {
    text-align: center;
    padding-bottom: 16px;
    border-bottom: 1px solid var(--la-gris-2);
    /* Header con color brand — fondo llanero sutil */
    background: linear-gradient(180deg,
        rgba(184, 216, 232, 0.18) 0%,
        transparent 100%);
    border-radius: var(--la-radius);
    padding: 16px 16px;
    margin: -8px -8px 8px;
}
.llanos-precio-desde {
    font-size: 11px;
    text-transform: uppercase;
    color: var(--la-llanero-verde);
    letter-spacing: 1px;
    font-weight: 700;
}
.llanos-precio-num {
    font-family: var(--la-font-head);
    font-size: 42px;
    font-weight: 800;
    color: var(--la-llanero-verde);
    line-height: 1;
    margin: 6px 0 4px;
    letter-spacing: -0.5px;
}
.llanos-precio-por {
    font-size: 12px;
    color: var(--la-texto-2);
}

.llanos-abono-info {
    background: linear-gradient(135deg, #fff8e1, #fffbf0);
    border: 1px solid #f5e6a8;
    border-radius: var(--la-radius);
    padding: 12px 14px;
    text-align: center;
}
.llanos-abono-info strong {
    color: var(--la-cafe);
    display: block;
    font-size: 14px;
    font-weight: 700;
}
.llanos-abono-info small {
    color: var(--la-texto-2);
    font-size: 12px;
    line-height: 1.4;
    display: block;
    margin-top: 2px;
}

.llanos-urgencia-cupos {
    background: var(--la-amarillo);
    color: var(--la-cafe);
    padding: 10px 14px;
    border-radius: var(--la-radius);
    text-align: center;
    font-size: 13px;
    font-weight: 700;
    animation: la-pulse 1.6s ease-in-out infinite;
}
.llanos-urgencia-cupos strong { font-size: 18px; }
.llanos-urgencia-leyendo {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    background: var(--la-gris);
    color: var(--la-texto);
    padding: 8px 14px;
    border-radius: var(--la-radius);
    font-size: 12px;
    font-weight: 600;
}
.llanos-urgencia-leyendo::before {
    content: '';
    width: 8px;
    height: 8px;
    background: var(--la-verde);
    border-radius: 50%;
    box-shadow: 0 0 0 0 rgba(22, 133, 48, 0.5);
    animation: la-blink 1.5s ease-in-out infinite;
    flex-shrink: 0;
}
@keyframes la-blink {
    0%, 100% { box-shadow: 0 0 0 0 rgba(22, 133, 48, 0.6); }
    50%      { box-shadow: 0 0 0 6px rgba(22, 133, 48, 0); }
}

.llanos-confianza {
    margin-top: 8px;
    padding-top: 16px;
    border-top: 1px solid var(--la-gris-2);
    display: flex;
    flex-direction: column;
    gap: 10px;
    font-size: 12px;
    color: var(--la-texto-2);
}
.llanos-confianza div {
    display: flex;
    align-items: center;
    gap: 8px;
}
.llanos-confianza .dashicons {
    color: var(--la-verde);
    font-size: 16px;
    width: 16px;
    height: 16px;
}

/* =================================================================
   18. CTA STICKY MOBILE (bottom bar)
   ================================================================= */
.llanos-cta-mobile {
    display: none;
}
@media (max-width: 768px) {
    .llanos-cta-mobile {
        display: flex;
        position: fixed;
        bottom: 0;
        left: 0;
        right: 0;
        z-index: 9999;
        background: #fff;
        box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
        padding: 12px 16px;
        align-items: center;
        justify-content: space-between;
        gap: 12px;
        border-top: 1px solid var(--la-borde);
    }
    .llanos-layout { padding-bottom: 110px; }
}
.llanos-cta-mobile-precio {
    display: flex;
    flex-direction: column;
    line-height: 1.2;
}
.llanos-cta-mobile strong {
    font-size: 18px;
    color: var(--la-llanero-verde);
    font-family: var(--la-font-head);
    font-weight: 800;
}
.llanos-cta-mobile small {
    color: var(--la-texto-2);
    font-size: 12px;
}
.llanos-cta-mobile .llanos-btn-primary {
    padding: 12px 20px;
    font-size: 14px;
    width: auto;
    flex-shrink: 0;
}

/* =================================================================
   19. BOTONES
   ================================================================= */
.llanos-btn-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 24px;
    background: var(--la-rojo);
    color: #fff;
    border-radius: var(--la-radius);
    font-size: 15px;
    font-weight: 700;
    text-decoration: none;
    border: 2px solid var(--la-rojo);
    cursor: pointer;
    transition: background var(--la-trans), transform var(--la-trans), box-shadow var(--la-trans);
    width: 100%;
    font-family: var(--la-font-head);
    text-align: center;
    line-height: 1.3;
}
.llanos-btn-primary:hover,
.llanos-btn-primary:focus-visible {
    background: var(--la-rojo-h);
    border-color: var(--la-rojo-h);
    color: #fff;
    transform: scale(1.02);
    box-shadow: var(--la-shadow);
}
.llanos-btn-primary:active {
    transform: scale(0.98);
}
.llanos-btn-primary:focus-visible {
    outline: 3px solid var(--la-llanero-verde);
    outline-offset: 2px;
}

.llanos-btn-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 22px;
    background: transparent;
    color: var(--la-rojo);
    border: 2px solid var(--la-rojo);
    border-radius: var(--la-radius);
    font-size: 14px;
    font-weight: 700;
    text-decoration: none;
    cursor: pointer;
    transition: background var(--la-trans), color var(--la-trans);
    font-family: var(--la-font-head);
}
.llanos-btn-secondary:hover,
.llanos-btn-secondary:focus-visible {
    background: var(--la-rojo);
    color: #fff;
}

.llanos-btn-whatsapp {
    background: #25d366;
    border-color: #25d366;
    color: #fff;
}
.llanos-btn-whatsapp:hover,
.llanos-btn-whatsapp:focus-visible {
    background: #1ebe57;
    border-color: #1ebe57;
    color: #fff;
}

/* =================================================================
   20. ANIMACIONES (fade-in en scroll)
   ================================================================= */
.llanos-fade-in {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}
.llanos-fade-in.is-visible {
    opacity: 1;
    transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
    .llanos-fade-in { opacity: 1; transform: none; }
    .llanos-hero--experience { background-attachment: scroll; }
}

/* =================================================================
   21. ANCHOR SUAVE + SCROLL OFFSET
   ================================================================= */
.llanos-reserva-box,
#llanos-reservar,
[id^="llanos-seccion-"] {
    scroll-margin-top: 80px;
}

html {
    scroll-behavior: smooth;
}

/* =================================================================
   22. ESTILOS DEL FORM DE RESERVA (consumido por class-shortcodes.php)
   ================================================================= */
.llanos-reserva-box {
    background: var(--la-gris);
    border-radius: var(--la-radius);
    padding: 16px;
}
.llanos-reserva-precio {
    text-align: center;
    margin-bottom: 12px;
}
.llanos-precio-valor {
    font-family: var(--la-font-head);
    font-size: 24px;
    font-weight: 800;
    color: var(--la-cafe);
}
.llanos-precio-persona {
    color: var(--la-texto-2);
    font-size: 12px;
    display: block;
}
.llanos-reserva-form label {
    display: block;
    margin-bottom: 12px;
    font-size: 13px;
    font-weight: 600;
    color: var(--la-cafe);
}
.llanos-reserva-form label span {
    display: block;
    margin-bottom: 4px;
}
.llanos-reserva-form input {
    width: 100%;
    padding: 10px 12px;
    border: 1px solid var(--la-borde);
    border-radius: var(--la-radius-sm);
    font-size: 14px;
    font-family: inherit;
    background: #fff;
    transition: border-color var(--la-trans-fast);
}
.llanos-reserva-form input:focus {
    outline: none;
    border-color: var(--la-llanero-verde);
    box-shadow: 0 0 0 3px rgba(47, 125, 79, 0.18);
}
.llanos-btn-check {
    width: 100%;
    padding: 12px;
    background: var(--la-rojo);
    color: #fff;
    border: none;
    border-radius: var(--la-radius);
    font-weight: 700;
    cursor: pointer;
    margin-top: 8px;
    font-family: var(--la-font-head);
    font-size: 14px;
    transition: background var(--la-trans);
}
.llanos-btn-check:hover { background: var(--la-rojo-h); }
.llanos-reserva-feedback {
    margin-top: 12px;
    font-size: 13px;
    text-align: center;
    min-height: 18px;
}
.llanos-reserva-feedback.is-ok    { color: var(--la-verde); }
.llanos-reserva-feedback.is-error { color: var(--la-rojo); }

/* =================================================================
   23. TOAST (para feedback de acciones)
   ================================================================= */
.llanos-toast {
    position: fixed;
    bottom: 100px;
    left: 50%;
    transform: translateX(-50%) translateY(120%);
    background: var(--la-cafe);
    color: #fff;
    padding: 12px 20px;
    border-radius: var(--la-radius);
    font-size: 14px;
    font-weight: 600;
    box-shadow: var(--la-shadow-lg);
    z-index: var(--la-z-toast);
    opacity: 0;
    transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.35s;
    max-width: 90vw;
    text-align: center;
}
@media (min-width: 1024px) {
    .llanos-toast { bottom: 32px; }
}
.llanos-toast.is-visible {
    transform: translateX(-50%) translateY(0);
    opacity: 1;
}
.llanos-toast--ok    { background: var(--la-verde); }
.llanos-toast--error { background: var(--la-rojo); }

/* =================================================================
   24. FOOTER (WhatsApp + Bold)
   ================================================================= */
.llanos-footer-producto {
    background: var(--la-cafe);
    color: #fff;
    padding: 40px var(--la-section-px);
    text-align: center;
    margin-top: 60px;
}
.llanos-footer-producto-inner {
    max-width: var(--la-container);
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 20px;
    align-items: center;
}
.llanos-footer-cta {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    justify-content: center;
}
.llanos-footer-cta .llanos-btn-primary { width: auto; }
.llanos-footer-pagos {
    display: flex;
    align-items: center;
    gap: 16px;
    color: rgba(255, 255, 255, 0.6);
    font-size: 12px;
}
.llanos-footer-pagos strong { color: rgba(255, 255, 255, 0.9); }
.llanos-footer-copy {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.4);
    margin-top: 8px;
}

/* =================================================================
   25. IMPRESIÓN — limpia la página para imprimir
   (oculta sidebar, sticky bar, trust bar; deja blanco y negro)
   ================================================================= */
@media print {
    .llanos-sidebar,
    .llanos-cta-mobile,
    .llanos-trust-bar,
    .llanos-fade-in,
    .llanos-hero-indicators,
    .llanos-urgencia-cupos,
    .llanos-urgencia-leyendo,
    .llanos-toast {
        display: none !important;
    }
    body.single-llanos_tour,
    body.single-llanos_pasadia,
    body.single-llanos_paquete,
    body.single-llanos_hospedaje {
        background: #fff;
        color: #000;
    }
    .llanos-layout {
        grid-template-columns: 1fr;
        padding-bottom: 0;
    }
    .llanos-sticky-card {
        position: static;
        box-shadow: none;
        border: 1px solid #ccc;
    }
    a {
        color: #000;
        text-decoration: underline;
    }
    .llanos-btn-primary,
    .llanos-btn-secondary,
    .llanos-btn-whatsapp {
        display: none;
    }
    .llanos-hero {
        min-height: 30vh;
        background: var(--la-llanero-verde) !important;
        color: #fff;
    }
}

/* =================================================================
   99. AISLAMIENTO DEL THEME (Twenty Twenty-Four / classic fallback)
   En landings del plugin, el theme de WP no debe mostrar su site
   title "App" ni sus headers/footers. WordPress 7.0 con un classic
   template (single-llanos_*.php) renderiza el fallback classic con
   <div id="header"> y <div id="footer">. Los ocultamos todos.
   ================================================================= */

/* a) Block theme patterns (Twenty Twenty-Four con template parts) */
body.wp-theme-twentytwentyfour.single-llanos_pasadia .wp-site-header,
body.wp-theme-twentytwentyfour.single-llanos_tour .wp-site-header,
body.wp-theme-twentytwentyfour.single-llanos_paquete .wp-site-header,
body.wp-theme-twentytwentyfour.single-llanos_hospedaje .wp-site-header,
body.wp-theme-twentytwentyfour.tax-llanos_tipo_prod .wp-site-header,
body.wp-theme-twentytwentyfour.archive-llanos_pasadia .wp-site-header,
body.wp-theme-twentytwentyfour.archive-llanos_tour .wp-site-header,
body.wp-theme-twentytwentyfour.archive-llanos_paquete .wp-site-header,
body.wp-theme-twentytwentyfour.archive-llanos_hospedaje .wp-site-header,
body.wp-theme-twentytwentyfour.single-llanos_pasadia .wp-block-site-title,
body.wp-theme-twentytwentyfour.single-llanos_tour .wp-block-site-title,
body.wp-theme-twentytwentyfour.single-llanos_paquete .wp-block-site-title,
body.wp-theme-twentytwentyfour.single-llanos_hospedaje .wp-block-site-title {
    display: none !important;
}
body.wp-theme-twentytwentyfour.single-llanos_pasadia .wp-site-footer,
body.wp-theme-twentytwentyfour.single-llanos_tour .wp-site-footer,
body.wp-theme-twentytwentyfour.single-llanos_paquete .wp-site-footer,
body.wp-theme-twentytwentyfour.single-llanos_hospedaje .wp-site-footer,
body.wp-theme-twentytwentyfour.tax-llanos_tipo_prod .wp-site-footer,
body.wp-theme-twentytwentyfour.archive-llanos_pasadia .wp-site-footer,
body.wp-theme-twentytwentyfour.archive-llanos_tour .wp-site-footer,
body.wp-theme-twentytwentyfour.archive-llanos_paquete .wp-site-footer,
body.wp-theme-twentytwentyfour.archive-llanos_hospedaje .wp-site-footer {
    display: none !important;
}

/* b) Classic theme fallback (WordPress 7.0 + classic template
   single-llanos_*.php → WP renderiza <div id="header"> y
   <div id="footer"> con "App funciona gracias a WordPress"). */
body.wp-theme-twentytwentyfour.single-llanos_pasadia #header,
body.wp-theme-twentytwentyfour.single-llanos_tour #header,
body.wp-theme-twentytwentyfour.single-llanos_paquete #header,
body.wp-theme-twentytwentyfour.single-llanos_hospedaje #header,
body.wp-theme-twentytwentyfour.tax-llanos_tipo_prod #header,
body.wp-theme-twentytwentyfour.archive-llanos_pasadia #header,
body.wp-theme-twentytwentyfour.archive-llanos_tour #header,
body.wp-theme-twentytwentyfour.archive-llanos_paquete #header,
body.wp-theme-twentytwentyfour.archive-llanos_hospedaje #header,
body.wp-theme-twentytwentyfour.single-llanos_pasadia #header h1,
body.wp-theme-twentytwentyfour.single-llanos_tour #header h1,
body.wp-theme-twentytwentyfour.single-llanos_paquete #header h1,
body.wp-theme-twentytwentyfour.single-llanos_hospedaje #header h1,
body.wp-theme-twentytwentyfour.single-llanos_pasadia #footer,
body.wp-theme-twentytwentyfour.single-llanos_tour #footer,
body.wp-theme-twentytwentyfour.single-llanos_paquete #footer,
body.wp-theme-twentytwentyfour.single-llanos_hospedaje #footer,
body.wp-theme-twentytwentyfour.tax-llanos_tipo_prod #footer,
body.wp-theme-twentytwentyfour.archive-llanos_pasadia #footer,
body.wp-theme-twentytwentyfour.archive-llanos_tour #footer,
body.wp-theme-twentytwentyfour.archive-llanos_paquete #footer,
body.wp-theme-twentytwentyfour.archive-llanos_hospedaje #footer {
    display: none !important;
}

/* c) Separadores <hr /> que el classic fallback pone entre header/content/footer */
body.wp-theme-twentytwentyfour.single-llanos_pasadia #page > hr,
body.wp-theme-twentytwentyfour.single-llanos_tour #page > hr,
body.wp-theme-twentytwentyfour.single-llanos_paquete #page > hr,
body.wp-theme-twentytwentyfour.single-llanos_hospedaje #page > hr {
    display: none !important;
}

/* d) El warning "Deprecated: ... header.php/footer.php ..." que escupe
   WordPress 7.0 cuando el block theme no tiene header.php. Lo escondemos
   visualmente (la fix "real" es desactivar WP_DEBUG_DISPLAY en wp-config.php
   o migrar a un classic theme con header.php). El plugin no lo genera. */
body.wp-theme-twentytwentyfour #page > br:has(+ b),
body.wp-theme-twentytwentyfour #page > b:has-text("Deprecated") {
    display: none !important;
}
/* Fallback más agresivo: como `:has-text` no es estándar y `:has` tiene
   soporte irregular, escondemos CUALQUIER <b> directo hijo del #page que
   empiece con "Deprecated". */
body.wp-theme-twentytwentyfour.single-llanos_pasadia #page > b,
body.wp-theme-twentytwentyfour.single-llanos_tour #page > b,
body.wp-theme-twentytwentyfour.single-llanos_paquete #page > b,
body.wp-theme-twentytwentyfour.single-llanos_hospedaje #page > b {
    display: none !important;
}
body.wp-theme-twentytwentyfour.single-llanos_pasadia #page > br:nth-of-type(1),
body.wp-theme-twentytwentyfour.single-llanos_tour #page > br:nth-of-type(1),
body.wp-theme-twentytwentyfour.single-llanos_paquete #page > br:nth-of-type(1),
body.wp-theme-twentytwentyfour.single-llanos_hospedaje #page > br:nth-of-type(1) {
    display: none !important;
}

/* e) Cuando el plugin renderiza su chrome (<main class="llanos-main">),
   le damos full-width y quitamos padding del tema. */
body.wp-theme-twentytwentyfour.single-llanos_pasadia .llanos-main,
body.wp-theme-twentytwentyfour.single-llanos_tour .llanos-main,
body.wp-theme-twentytwentyfour.single-llanos_paquete .llanos-main,
body.wp-theme-twentytwentyfour.single-llanos_hospedaje .llanos-main,
body.wp-theme-twentytwentyfour.tax-llanos_tipo_prod .llanos-main,
body.wp-theme-twentytwentyfour.archive-llanos_pasadia .llanos-main,
body.wp-theme-twentytwentyfour.archive-llanos_tour .llanos-main,
body.wp-theme-twentytwentyfour.archive-llanos_paquete .llanos-main,
body.wp-theme-twentytwentyfour.archive-llanos_hospedaje .llanos-main {
    margin: 0 auto !important;
    padding: 0 !important;
    max-width: 100% !important;
    width: 100% !important;
}
