@charset "UTF-8";
/* =============================================================================
   ViajeDesiertoMarruecos.com — Hoja de estilos principal
   -----------------------------------------------------------------------------
   Escrita mobile-first. Los tamaños base son los de móvil; responsive.css
   los escala a tableta y escritorio.

   ÍNDICE
   01. Variables de diseño
   02. Reinicio y bases
   03. Tipografía
   04. Utilidades y contenedores
   05. Botones
   06. Barra superior y cabecera
   07. Navegación
   08. Hero y migas de pan
   09. Secciones y títulos
   10. Tarjetas de tour
   11. Rejillas
   12. Barra lateral y widgets
   13. Fichas de tour: itinerario, tablas, galería
   14. Acordeón, pestañas y carrusel
   15. Formularios
   16. Llamada a la acción y pie de página
   17. Elementos flotantes y cookies
   18. Accesibilidad e impresión
   ========================================================================== */

/* ==========================================================================
   01. VARIABLES DE DISEÑO
   ========================================================================== */

:root {
    /* --- Color -------------------------------------------------------- */
    --rojo:         #f44336;   /* color principal de la marca */
    --rojo-oscuro:  #c62b21;   /* estados hover y degradados */
    --rojo-claro:   #ffebe9;   /* fondos suaves */
    --negro:        #000000;
    --blanco:       #ffffff;

    --tinta:        #14100f;   /* texto principal, negro cálido */
    --tinta-media:  #4d4644;   /* texto secundario */
    --tinta-suave:  #7a716e;   /* texto terciario y pies de foto */
    --arena:        #faf7f5;   /* fondo alterno de sección */
    --arena-media:  #f2ece8;   /* fondo de cajas */
    --linea:        #e4dcd7;   /* bordes */

    /* --- Tipografía --------------------------------------------------- */
    --fuente-titulo: "Oswald", "Arial Narrow", Impact, sans-serif;
    --fuente-texto:  "Roboto", -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;

    /* Escala móvil (base). responsive.css la sube en pantallas grandes. */
    --t-body:      17px;
    --t-small:     15px;
    --t-nav:       16px;
    --t-boton:     16px;
    --t-h1:        34px;
    --t-h2:        30px;
    --t-h3:        26px;
    --t-h4:        22px;
    --t-h5:        20px;
    --t-h6:        18px;
    --t-hero:      38px;
    --t-hero-sub:  19px;
    --t-cita:      20px;

    /* --- Espaciado ---------------------------------------------------- */
    --e-1: 4px;
    --e-2: 8px;
    --e-3: 12px;
    --e-4: 16px;
    --e-5: 24px;
    --e-6: 32px;
    --e-7: 48px;
    --e-8: 64px;
    --e-9: 96px;

    --ancho-contenedor: 1200px;
    --ancho-texto:      760px;   /* 60–75 caracteres por línea */

    /* --- Otros -------------------------------------------------------- */
    --radio:        4px;
    --radio-grande: 8px;
    --sombra:       0 2px 12px rgba(20, 16, 15, .08);
    --sombra-alta:  0 12px 32px rgba(20, 16, 15, .14);
    --transicion:   .22s ease;
}

/* ==========================================================================
   02. REINICIO Y BASES
   ========================================================================== */

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

html {
    -webkit-text-size-adjust: 100%;
    scroll-behavior: smooth;
    scroll-padding-top: 90px;   /* compensa la cabecera fija */
}

body {
    margin: 0;
    background: var(--blanco);
    color: var(--tinta);
    font-family: var(--fuente-texto);
    font-size: var(--t-body);
    font-weight: 400;
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
    overflow-x: hidden;
}

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

a {
    color: var(--rojo);
    text-decoration: none;
    transition: color var(--transicion);
}
a:hover, a:focus-visible { color: var(--rojo-oscuro); text-decoration: underline; }

ul, ol { padding-left: 1.25em; }
li { margin-bottom: var(--e-2); }

hr { border: 0; border-top: 1px solid var(--linea); margin: var(--e-6) 0; }

::selection { background: var(--rojo); color: var(--blanco); }

/* ==========================================================================
   03. TIPOGRAFÍA
   ========================================================================== */

h1, h2, h3, h4, h5, h6 {
    font-family: var(--fuente-titulo);
    color: var(--tinta);
    margin: 0 0 var(--e-4);
    text-wrap: balance;
}

h1 { font-size: var(--t-h1); line-height: 1.2;  font-weight: 700; }
h2 { font-size: var(--t-h2); line-height: 1.25; font-weight: 700; }
h3 { font-size: var(--t-h3); line-height: 1.3;  font-weight: 600; }
h4 { font-size: var(--t-h4); line-height: 1.35; font-weight: 600; }
h5 { font-size: var(--t-h5); line-height: 1.4;  font-weight: 600; }
h6 { font-size: var(--t-h6); line-height: 1.4;  font-weight: 600; }

p { margin: 0 0 var(--e-5); }

strong, b { font-weight: 700; }
em, i     { font-style: italic; }

small, .texto-pequeno { font-size: var(--t-small); line-height: 1.6; }

blockquote {
    margin: var(--e-6) 0;
    padding: var(--e-4) var(--e-5);
    border-left: 4px solid var(--rojo);
    background: var(--arena);
    font-size: var(--t-cita);
    line-height: 1.6;
    font-weight: 500;
}
blockquote p:last-child { margin-bottom: 0; }

/* Bloques de texto largo: ancho controlado y listas legibles */
.texto {
    max-width: var(--ancho-texto);
}
.texto p { margin-bottom: 22px; }
.texto ul, .texto ol { margin: 0 0 var(--e-5); line-height: 1.8; }
.texto li { margin-bottom: var(--e-2); }
.texto h2 { margin-top: var(--e-7); }
.texto h3 { margin-top: var(--e-6); }
.texto h2:first-child, .texto h3:first-child { margin-top: 0; }

/* ==========================================================================
   04. UTILIDADES Y CONTENEDORES
   ========================================================================== */

.contenedor {
    width: 100%;
    max-width: var(--ancho-contenedor);
    margin-inline: auto;
    padding-inline: var(--e-5);
}

.seccion { padding-block: var(--e-7); }
.seccion--arena { background: var(--arena); }
.seccion--negro { background: var(--negro); color: var(--blanco); }
.seccion--negro h2, .seccion--negro h3 { color: var(--blanco); }

.centrado { text-align: center; }
.centrado.titulo-seccion { margin-inline: auto; }

.seccion__intro {
    max-width: var(--ancho-texto);
    margin: 0 auto var(--e-6);
    color: var(--tinta-media);
}

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

.saltar-contenido {
    position: absolute;
    left: -9999px;
    top: 0;
    z-index: 999;
    background: var(--rojo);
    color: var(--blanco);
    padding: var(--e-3) var(--e-4);
    font-weight: 600;
}
.saltar-contenido:focus { left: var(--e-3); top: var(--e-3); }

/* Separador ondulado rojo — elemento característico del sitio */
.duna {
    width: 100%;
    max-width: 720px;
    margin: var(--e-6) auto;
    color: var(--rojo);
}
.duna svg {
    width: 100%;
    height: 20px;
    fill: none;
    stroke: currentColor;
    stroke-width: 3;
    stroke-linecap: round;
    opacity: .85;
}

/* ==========================================================================
   05. BOTONES
   ========================================================================== */

.boton {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: var(--e-2);
    font-family: var(--fuente-texto);
    font-size: var(--t-boton);
    font-weight: 600;
    line-height: 1.3;
    padding: 13px 24px;
    border: 2px solid transparent;
    border-radius: var(--radio);
    cursor: pointer;
    text-align: center;
    text-decoration: none;
    transition: background var(--transicion), color var(--transicion),
                border-color var(--transicion), transform var(--transicion);
}
.boton:hover, .boton:focus-visible { text-decoration: none; transform: translateY(-1px); }
.boton:active { transform: translateY(0); }

.boton--primario { background: var(--rojo); color: var(--blanco); border-color: var(--rojo); }
.boton--primario:hover, .boton--primario:focus-visible { background: var(--rojo-oscuro); border-color: var(--rojo-oscuro); color: var(--blanco); }

.boton--negro { background: var(--negro); color: var(--blanco); border-color: var(--negro); }
.boton--negro:hover, .boton--negro:focus-visible { background: var(--rojo); border-color: var(--rojo); color: var(--blanco); }

.boton--blanco { background: var(--blanco); color: var(--negro); border-color: var(--blanco); }
.boton--blanco:hover, .boton--blanco:focus-visible { background: var(--negro); color: var(--blanco); border-color: var(--negro); }

.boton--linea { background: transparent; color: var(--rojo); border-color: var(--rojo); }
.boton--linea:hover, .boton--linea:focus-visible { background: var(--rojo); color: var(--blanco); }

.boton--whatsapp { background: #1faa53; color: var(--blanco); border-color: #1faa53; }
.boton--whatsapp:hover, .boton--whatsapp:focus-visible { background: #17853f; border-color: #17853f; color: var(--blanco); }

.boton--bloque  { display: flex; width: 100%; margin-bottom: var(--e-3); }
.boton--grande  { padding: 16px 32px; font-size: 17px; }
.boton--pequeno { padding: 9px 16px; font-size: 15px; }

/* ==========================================================================
   06. BARRA SUPERIOR Y CABECERA
   ========================================================================== */

.barra-superior {
    background: var(--rojo);
    color: var(--blanco);
    font-size: 14px;
}
.barra-superior__inner {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: var(--e-3) var(--e-5);
    padding-block: 6px;
}
.barra-superior ul { list-style: none; margin: 0; padding: 0; display: flex; gap: var(--e-4); flex-wrap: wrap; }
.barra-superior li { margin: 0; }
.barra-superior a { color: var(--blanco); }
.barra-superior a:hover { color: var(--blanco); opacity: .85; }

.barra-superior__social a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 26px; height: 26px;
    border: 1px solid rgba(255, 255, 255, .55);
    border-radius: 50%;
    font-size: 12px;
    font-weight: 700;
    text-decoration: none;
}
.barra-superior__social a:hover { background: var(--blanco); color: var(--rojo); opacity: 1; }

.cabecera {
    position: sticky;
    top: 0;
    z-index: 200;
    background: var(--blanco);
    border-bottom: 1px solid var(--linea);
    transition: box-shadow var(--transicion);
}
.cabecera.esta-fija { box-shadow: var(--sombra); }

.cabecera__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--e-4);
    min-height: 68px;
}

.logo img { width: auto; height: 44px; }

/* ==========================================================================
   07. NAVEGACIÓN
   ========================================================================== */

.menu-boton {
    display: inline-flex;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 44px; height: 44px;
    padding: 0 8px;
    background: transparent;
    border: 1px solid var(--linea);
    border-radius: var(--radio);
    cursor: pointer;
}
.menu-boton__barra {
    display: block;
    height: 2px;
    background: var(--negro);
    transition: transform var(--transicion), opacity var(--transicion);
}
.menu-boton[aria-expanded="true"] .menu-boton__barra:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.menu-boton[aria-expanded="true"] .menu-boton__barra:nth-child(2) { opacity: 0; }
.menu-boton[aria-expanded="true"] .menu-boton__barra:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.navegacion {
    position: absolute;
    left: 0; right: 0;
    top: 100%;
    background: var(--blanco);
    border-bottom: 3px solid var(--rojo);
    box-shadow: var(--sombra-alta);
    max-height: 0;
    overflow: hidden;
    transition: max-height .3s ease;
}
.navegacion.esta-abierta { max-height: 80vh; overflow-y: auto; }

.menu { list-style: none; margin: 0; padding: 0; }
.menu__item { position: relative; margin: 0; border-bottom: 1px solid var(--linea); }

.menu__item > a {
    display: block;
    padding: 14px var(--e-5);
    font-size: var(--t-nav);
    font-weight: 600;
    line-height: 1.4;
    color: var(--tinta);
    text-transform: uppercase;
    letter-spacing: .02em;
}
.menu__item > a:hover,
.menu__item > a:focus-visible { color: var(--rojo); text-decoration: none; }
.menu__item > a.activo { color: var(--rojo); }

.menu__flecha { display: none; }

.submenu-boton {
    position: absolute;
    right: var(--e-4); top: 6px;
    width: 36px; height: 36px;
    background: transparent;
    border: 1px solid var(--linea);
    border-radius: var(--radio);
    font-size: 20px;
    line-height: 1;
    cursor: pointer;
    color: var(--tinta);
}
.submenu-boton[aria-expanded="true"] { background: var(--rojo); color: var(--blanco); border-color: var(--rojo); }

.submenu {
    list-style: none;
    margin: 0;
    padding: 0;
    max-height: 0;
    overflow: hidden;
    background: var(--arena);
    transition: max-height .28s ease;
}
.submenu.esta-abierto { max-height: 460px; }
.submenu li { margin: 0; border-top: 1px solid var(--linea); }
.submenu a {
    display: block;
    padding: 12px var(--e-5) 12px var(--e-6);
    color: var(--tinta-media);
    font-size: var(--t-small);
    font-weight: 500;
}
.submenu a:hover { color: var(--rojo); background: var(--blanco); text-decoration: none; }

.menu__cta { color: var(--rojo) !important; }
.menu__whatsapp {
    display: block;
    margin: var(--e-4) var(--e-5) var(--e-5);
    padding: 13px 24px;
    background: #1faa53;
    color: var(--blanco) !important;
    text-align: center;
    font-weight: 600;
    border-radius: var(--radio);
}
.menu__whatsapp:hover { background: #17853f; text-decoration: none; }

/* ==========================================================================
   08. HERO Y MIGAS DE PAN
   ========================================================================== */

.hero {
    position: relative;
    background-size: cover;
    background-position: center;
    color: var(--blanco);
    display: flex;
    align-items: center;
    text-align: center;
}
.hero--corto { min-height: 220px; }
.hero--medio { min-height: 300px; }
.hero--alto  { min-height: 460px; }

.hero__inner { padding-block: var(--e-7); width: 100%; }

.hero__titulo {
    color: var(--blanco);
    font-size: var(--t-hero);
    line-height: 1.15;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: var(--e-3);
    text-shadow: 0 2px 12px rgba(0, 0, 0, .45);
}
.hero__subtitulo {
    font-size: var(--t-hero-sub);
    line-height: 1.5;
    font-weight: 400;
    max-width: 720px;
    margin: 0 auto;
    text-shadow: 0 1px 8px rgba(0, 0, 0, .4);
}

/* Hero de portada, con el rótulo enmarcado del diseño de referencia */
.hero--portada .hero__titulo {
    display: inline-block;
    background: var(--rojo);
    padding: var(--e-3) var(--e-5);
    text-shadow: none;
}
.hero--portada .hero__subtitulo {
    display: inline-block;
    background: rgba(244, 67, 54, .92);
    padding: var(--e-2) var(--e-4);
    margin-top: var(--e-3);
    font-style: italic;
    text-shadow: none;
}
.hero__acciones {
    display: flex;
    flex-wrap: wrap;
    gap: var(--e-3);
    justify-content: center;
    margin-top: var(--e-5);
}

/* Buscador del hero */
.buscador {
    background: rgba(255, 255, 255, .95);
    border-radius: var(--radio-grande);
    padding: var(--e-4);
    margin-top: var(--e-5);
    box-shadow: var(--sombra-alta);
    display: grid;
    gap: var(--e-3);
    text-align: left;
    color: var(--tinta);
}
.buscador label { font-size: 13px; font-weight: 600; text-transform: uppercase; letter-spacing: .04em; color: var(--tinta-media); }
.buscador select,
.buscador input { width: 100%; }

/* Migas de pan */
.migas {
    background: var(--arena);
    border-bottom: 1px solid var(--linea);
    font-size: var(--t-small);
}
.migas ol {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    gap: var(--e-2);
    margin: 0;
    padding: var(--e-3) 0;
}
.migas li { margin: 0; color: var(--tinta-suave); }
.migas li + li::before { content: "›"; margin-right: var(--e-2); color: var(--tinta-suave); }
.migas a { color: var(--tinta-media); }
.migas a:hover { color: var(--rojo); }

/* ==========================================================================
   09. SECCIONES Y TÍTULOS
   ========================================================================== */

.titulo-seccion {
    font-size: var(--t-h2);
    line-height: 1.25;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: var(--e-5);
}
.titulo-seccion .t-negro { color: var(--negro); }
.titulo-seccion .t-rojo  { color: var(--rojo); }
.seccion--negro .titulo-seccion .t-negro { color: var(--blanco); }

.subtitulo-rojo {
    color: var(--rojo);
    font-family: var(--fuente-titulo);
    font-size: var(--t-h3);
    text-transform: uppercase;
    margin-top: var(--e-7);
}

.eyebrow {
    display: inline-block;
    font-family: var(--fuente-texto);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: var(--rojo);
    margin-bottom: var(--e-2);
}

/* ==========================================================================
   10. TARJETAS DE TOUR
   ========================================================================== */

.tarjeta {
    background: var(--blanco);
    border: 1px solid var(--linea);
    border-radius: var(--radio-grande);
    overflow: hidden;
    height: 100%;
    display: flex;
    transition: box-shadow var(--transicion), transform var(--transicion), border-color var(--transicion);
}
.tarjeta:hover { box-shadow: var(--sombra-alta); transform: translateY(-3px); border-color: var(--rojo); }

.tarjeta__enlace {
    display: flex;
    flex-direction: column;
    width: 100%;
    color: inherit;
}
.tarjeta__enlace:hover { text-decoration: none; color: inherit; }

.tarjeta__media { position: relative; aspect-ratio: 4 / 3; overflow: hidden; background: var(--arena-media); }
.tarjeta__media img {
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform .5s ease;
}
.tarjeta:hover .tarjeta__media img { transform: scale(1.06); }

.cinta {
    position: absolute;
    top: 14px; right: -34px;
    background: var(--rojo);
    color: var(--blanco);
    font-family: var(--fuente-titulo);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: .06em;
    text-transform: uppercase;
    padding: 5px 40px;
    transform: rotate(45deg);
}

.tarjeta__dias {
    position: absolute;
    left: 0; bottom: 0;
    background: var(--negro);
    color: var(--blanco);
    font-family: var(--fuente-titulo);
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    padding: 4px 12px;
}

.tarjeta__cuerpo { padding: var(--e-4); flex: 1; }
.tarjeta__titulo {
    font-size: var(--t-h5);
    line-height: 1.3;
    text-transform: uppercase;
    margin-bottom: var(--e-2);
}
.tarjeta:hover .tarjeta__titulo { color: var(--rojo); }
.tarjeta__texto { font-size: var(--t-small); color: var(--tinta-media); margin-bottom: var(--e-3); }

.tarjeta__meta {
    list-style: none;
    margin: 0; padding: 0;
    display: flex; flex-wrap: wrap; gap: var(--e-2);
    font-size: 13px; color: var(--tinta-suave);
}
.tarjeta__meta li { margin: 0; }
.tarjeta__meta li + li::before { content: "·"; margin-right: var(--e-2); }

.tarjeta__pie {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--e-3);
    padding: var(--e-3) var(--e-4);
    border-top: 1px solid var(--linea);
    background: var(--arena);
}
.tarjeta__precio { margin: 0; font-size: 13px; color: var(--tinta-suave); text-transform: uppercase; }
.tarjeta__precio strong {
    display: block;
    font-family: var(--fuente-titulo);
    font-size: 22px;
    color: var(--rojo);
    line-height: 1.1;
}

/* ==========================================================================
   11. REJILLAS
   ========================================================================== */

.rejilla { display: grid; gap: var(--e-5); }
.rejilla--2, .rejilla--3, .rejilla--4 { grid-template-columns: 1fr; }

.diseno-lateral { display: grid; gap: var(--e-7); align-items: start; }

/* ==========================================================================
   12. BARRA LATERAL Y WIDGETS
   ========================================================================== */

.barra-lateral { display: grid; gap: var(--e-5); }

.widget {
    background: var(--blanco);
    border: 1px solid var(--linea);
    border-radius: var(--radio-grande);
    padding: var(--e-5);
}
.widget__titulo {
    font-size: var(--t-h5);
    text-transform: uppercase;
    padding-bottom: var(--e-3);
    margin-bottom: var(--e-4);
    border-bottom: 3px solid var(--rojo);
}
.widget p { font-size: var(--t-small); color: var(--tinta-media); }

.widget--reserva { border-top: 5px solid var(--rojo); }
.widget__precio { text-align: center; margin-bottom: var(--e-4); }
.widget__desde, .widget__por { display: block; font-size: 13px; text-transform: uppercase; color: var(--tinta-suave); letter-spacing: .06em; }
.widget__precio strong { font-family: var(--fuente-titulo); font-size: 40px; line-height: 1.1; color: var(--rojo); }

.widget__datos, .widget__enlaces, .widget__ventajas, .widget__contacto, .widget__lista-tours {
    list-style: none; margin: 0 0 var(--e-4); padding: 0;
}
.widget__datos li {
    display: flex; justify-content: space-between; gap: var(--e-3);
    padding: 9px 0; border-bottom: 1px dashed var(--linea);
    font-size: var(--t-small); margin: 0;
}
.widget__datos span { color: var(--tinta-suave); }
.widget__datos strong { text-align: right; font-weight: 600; }

.widget__enlaces li, .widget__contacto li { margin: 0; border-bottom: 1px solid var(--linea); }
.widget__enlaces a, .widget__contacto a { display: block; padding: 10px 0; font-size: var(--t-small); color: var(--tinta); font-weight: 500; }
.widget__enlaces a::before { content: "›"; color: var(--rojo); margin-right: var(--e-2); font-weight: 700; }
.widget__enlaces a:hover, .widget__contacto a:hover { color: var(--rojo); text-decoration: none; }

.widget__ventajas li {
    position: relative;
    padding-left: 26px;
    font-size: var(--t-small);
    color: var(--tinta-media);
}
.widget__ventajas li::before {
    content: "✓";
    position: absolute; left: 0; top: 0;
    color: var(--rojo); font-weight: 700;
}

.widget__lista-tours a { display: flex; gap: var(--e-3); align-items: center; padding: 10px 0; color: var(--tinta); }
.widget__lista-tours a:hover { text-decoration: none; }
.widget__lista-tours a:hover strong { color: var(--rojo); }
.widget__lista-tours img { width: 72px; height: 56px; object-fit: cover; border-radius: var(--radio); flex: none; }
.widget__lista-tours strong { display: block; font-size: 15px; line-height: 1.3; font-weight: 600; }
.widget__lista-tours em { font-style: normal; font-size: 13px; color: var(--tinta-suave); }
.widget__lista-tours li { border-bottom: 1px solid var(--linea); margin: 0; }

.widget__nota { font-size: 13px; color: var(--tinta-suave); margin: var(--e-3) 0 0; text-align: center; }

.opinion-mini p { font-style: italic; margin: var(--e-2) 0; }
.opinion-mini cite { font-style: normal; font-weight: 600; font-size: 14px; }

.enlace-mas { font-weight: 600; font-size: var(--t-small); }

/* ==========================================================================
   13. FICHAS DE TOUR
   ========================================================================== */

/* Barra de datos rápidos */
.datos-tour {
    display: grid;
    gap: var(--e-3);
    background: var(--arena);
    border: 1px solid var(--linea);
    border-radius: var(--radio-grande);
    padding: var(--e-4);
    margin-bottom: var(--e-6);
    list-style: none;
}
.datos-tour li { display: flex; gap: var(--e-3); margin: 0; font-size: var(--t-small); }
.datos-tour span { color: var(--tinta-suave); min-width: 120px; }
.datos-tour strong { font-weight: 600; }

/* Navegación interna de la ficha */
.indice-tour {
    position: sticky;
    top: 68px;
    z-index: 50;
    background: var(--blanco);
    border-bottom: 1px solid var(--linea);
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}
.indice-tour ul {
    display: flex;
    gap: var(--e-5);
    list-style: none;
    margin: 0; padding: var(--e-3) var(--e-5);
    white-space: nowrap;
}
.indice-tour li { margin: 0; }
.indice-tour a {
    font-family: var(--fuente-titulo);
    font-size: 15px;
    font-weight: 500;
    text-transform: uppercase;
    color: var(--rojo);
    letter-spacing: .03em;
}
.indice-tour a:hover { color: var(--negro); text-decoration: none; }

/* Lista de puntos destacados */
.lista-destacados { list-style: none; padding: 0; margin: 0 0 var(--e-5); }
.lista-destacados li {
    position: relative;
    padding-left: 30px;
    margin-bottom: var(--e-3);
}
.lista-destacados li::before {
    content: "";
    position: absolute; left: 6px; top: 11px;
    width: 8px; height: 8px;
    background: var(--rojo);
    border-radius: 50%;
}

/* Itinerario en acordeón */
.itinerario { border: 1px solid var(--linea); border-radius: var(--radio-grande); overflow: hidden; }
.itinerario__dia { border-bottom: 1px solid var(--linea); }
.itinerario__dia:last-child { border-bottom: 0; }
.itinerario__cabecera {
    display: flex;
    align-items: center;
    gap: var(--e-3);
    width: 100%;
    padding: var(--e-4);
    background: var(--arena);
    border: 0;
    cursor: pointer;
    font-family: var(--fuente-titulo);
    font-size: 17px;
    font-weight: 600;
    text-align: left;
    color: var(--tinta);
    text-transform: uppercase;
    line-height: 1.35;
}
.itinerario__cabecera:hover { background: var(--rojo-claro); color: var(--rojo); }
.itinerario__cabecera::after {
    content: "▾";
    margin-left: auto;
    color: var(--rojo);
    transition: transform var(--transicion);
}
.itinerario__cabecera[aria-expanded="true"]::after { transform: rotate(180deg); }
.itinerario__cuerpo { padding: 0 var(--e-4); max-height: 0; overflow: hidden; transition: max-height .35s ease, padding .35s ease; }
.itinerario__cuerpo.esta-abierto { padding: var(--e-4); max-height: 2400px; }
.itinerario__meta {
    display: flex; flex-wrap: wrap; gap: var(--e-2) var(--e-4);
    list-style: none; margin: 0 0 var(--e-4); padding: 0;
    font-size: 14px; color: var(--tinta-suave);
}
.itinerario__meta li { margin: 0; }
.itinerario__meta strong { color: var(--tinta); font-weight: 600; }

/* Incluye / no incluye */
.cajas-incluye { display: grid; gap: var(--e-5); }
.caja-incluye {
    border: 1px solid var(--linea);
    border-radius: var(--radio-grande);
    padding: var(--e-5);
    background: var(--blanco);
}
.caja-incluye h3 { text-transform: uppercase; font-size: var(--t-h5); }
.caja-incluye ul { list-style: none; padding: 0; margin: 0; }
.caja-incluye li { position: relative; padding-left: 28px; font-size: var(--t-small); margin-bottom: var(--e-3); }
.caja-incluye--si li::before { content: "✓"; position: absolute; left: 0; color: #1faa53; font-weight: 700; }
.caja-incluye--no li::before { content: "✕"; position: absolute; left: 0; color: var(--rojo); font-weight: 700; }

/* Tablas */
.tabla-envoltorio { overflow-x: auto; margin-bottom: var(--e-5); }
.tabla {
    width: 100%;
    border-collapse: collapse;
    font-size: var(--t-small);
    min-width: 520px;
}
.tabla caption { text-align: left; padding-bottom: var(--e-3); color: var(--tinta-suave); font-size: 14px; }
.tabla th, .tabla td { padding: 12px var(--e-3); border: 1px solid var(--linea); text-align: left; vertical-align: top; }
.tabla thead th {
    background: var(--rojo);
    color: var(--blanco);
    font-family: var(--fuente-titulo);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: .03em;
    border-color: var(--rojo);
}
.tabla tbody tr:nth-child(even) { background: var(--arena); }
.tabla td strong { color: var(--rojo); }

/* Galería */
.galeria { display: grid; grid-template-columns: repeat(2, 1fr); gap: var(--e-2); }
.galeria a { display: block; aspect-ratio: 4 / 3; overflow: hidden; border-radius: var(--radio); }
.galeria img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s ease; }
.galeria a:hover img { transform: scale(1.07); }

/* Mapa */
.mapa-envoltorio {
    aspect-ratio: 16 / 9;
    border: 1px solid var(--linea);
    border-radius: var(--radio-grande);
    overflow: hidden;
}
.mapa-envoltorio iframe { width: 100%; height: 100%; border: 0; }

/* Etiquetas de extras */
.columnas-extras { display: grid; gap: var(--e-5); }
.columnas-extras h4 { text-transform: uppercase; color: var(--rojo); font-size: var(--t-h6); }
.columnas-extras ul { list-style: none; padding: 0; margin: 0; }
.columnas-extras li { font-size: var(--t-small); padding: 8px 0; border-bottom: 1px dashed var(--linea); margin: 0; }

/* ==========================================================================
   14. ACORDEÓN, PESTAÑAS Y CARRUSEL
   ========================================================================== */

.acordeon { border: 1px solid var(--linea); border-radius: var(--radio-grande); overflow: hidden; }
.acordeon__item { border-bottom: 1px solid var(--linea); }
.acordeon__item:last-child { border-bottom: 0; }
.acordeon__pregunta {
    padding: var(--e-4);
    background: var(--blanco);
    cursor: pointer;
    font-family: var(--fuente-titulo);
    font-size: 18px;
    font-weight: 600;
    line-height: 1.4;
    list-style: none;
    position: relative;
    padding-right: 48px;
}
.acordeon__pregunta::-webkit-details-marker { display: none; }
.acordeon__pregunta::after {
    content: "+";
    position: absolute; right: var(--e-4); top: 50%;
    transform: translateY(-50%);
    color: var(--rojo); font-size: 24px; line-height: 1;
}
.acordeon__item[open] .acordeon__pregunta { background: var(--arena); color: var(--rojo); }
.acordeon__item[open] .acordeon__pregunta::after { content: "−"; }
.acordeon__pregunta:hover { background: var(--arena); }
.acordeon__respuesta { padding: 0 var(--e-4) var(--e-4); }
.acordeon__respuesta p { margin: 0; font-size: var(--t-small); color: var(--tinta-media); }

/* Carrusel de opiniones */
.carrusel { position: relative; }
.carrusel__pista {
    display: flex;
    gap: var(--e-4);
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    padding-bottom: var(--e-4);
    -ms-overflow-style: none;
    scrollbar-width: none;
}
.carrusel__pista::-webkit-scrollbar { display: none; }
.carrusel__flecha {
    position: absolute;
    top: 40%;
    z-index: 5;
    width: 42px; height: 42px;
    border-radius: 50%;
    background: var(--blanco);
    border: 1px solid var(--linea);
    color: var(--rojo);
    font-size: 26px;
    line-height: 1;
    cursor: pointer;
    box-shadow: var(--sombra);
}
.carrusel__flecha:hover { background: var(--rojo); color: var(--blanco); border-color: var(--rojo); }
.carrusel__flecha--izq { left: -6px; }
.carrusel__flecha--der { right: -6px; }

.opinion {
    flex: 0 0 88%;
    scroll-snap-align: center;
    margin: 0;
    background: var(--blanco);
    border: 1px solid var(--linea);
    border-radius: var(--radio-grande);
    padding: var(--e-5);
}
.opinion blockquote { margin: var(--e-3) 0; padding: 0; border: 0; background: none; font-size: var(--t-small); font-weight: 400; line-height: 1.7; }
.opinion blockquote p { margin: 0; }
.opinion figcaption strong { display: block; font-size: 16px; }
.opinion figcaption span { display: block; font-size: 13px; color: var(--tinta-suave); }
.opinion figcaption em { display: block; font-style: normal; font-size: 13px; color: var(--rojo); margin-top: var(--e-1); }

.estrellas { color: #f5a623; letter-spacing: 2px; font-size: 16px; }
.estrellas .estrella { color: var(--linea); }
.estrellas .estrella.llena { color: #f5a623; }

/* ==========================================================================
   15. FORMULARIOS
   ========================================================================== */

.bloque-reserva {
    background: var(--arena);
    border: 1px solid var(--linea);
    border-radius: var(--radio-grande);
    padding: var(--e-5);
    margin-block: var(--e-6);
}
.bloque-reserva__intro { max-width: var(--ancho-texto); color: var(--tinta-media); }

.formulario__fila { display: grid; gap: var(--e-4); }

.campo { margin-bottom: var(--e-4); }
.campo label {
    display: block;
    margin-bottom: 6px;
    font-size: 14px;
    font-weight: 600;
    color: var(--tinta);
}
.campo .req { color: var(--rojo); }

input[type="text"], input[type="email"], input[type="tel"], input[type="number"],
input[type="date"], input[type="search"], select, textarea {
    width: 100%;
    padding: 12px var(--e-3);
    font-family: var(--fuente-texto);
    font-size: 16px;              /* 16px evita el zoom automático en iOS */
    line-height: 1.5;
    color: var(--tinta);
    background: var(--blanco);
    border: 1px solid var(--linea);
    border-radius: var(--radio);
    transition: border-color var(--transicion), box-shadow var(--transicion);
}
input:focus, select:focus, textarea:focus {
    outline: none;
    border-color: var(--rojo);
    box-shadow: 0 0 0 3px rgba(244, 67, 54, .18);
}
input::placeholder, textarea::placeholder { color: #a89f9b; }
textarea { resize: vertical; min-height: 130px; }

.campo--check { display: flex; align-items: flex-start; gap: var(--e-3); }
.campo--check input { width: 20px; height: 20px; flex: none; margin-top: 3px; accent-color: var(--rojo); }
.campo--check label { margin: 0; font-weight: 400; font-size: var(--t-small); }

.campo-trampa { position: absolute; left: -9999px; opacity: 0; height: 0; overflow: hidden; }

.formulario__nota { font-size: 14px; color: var(--tinta-suave); margin-top: var(--e-3); }

.aviso {
    padding: var(--e-4);
    border-radius: var(--radio);
    border-left: 4px solid;
    margin-bottom: var(--e-5);
    font-size: var(--t-small);
}
.aviso--ok    { background: #eaf7ee; border-color: #1faa53; }
.aviso--error { background: var(--rojo-claro); border-color: var(--rojo); }

/* ==========================================================================
   16. LLAMADA A LA ACCIÓN Y PIE DE PÁGINA
   ========================================================================== */

.cta-final {
    background: var(--negro);
    color: var(--blanco);
    padding-block: var(--e-6);
}
.cta-final__inner { display: grid; gap: var(--e-4); align-items: center; }
.cta-final h2 { color: var(--blanco); font-size: var(--t-h3); margin-bottom: var(--e-2); text-transform: uppercase; }
.cta-final p { margin: 0; color: rgba(255, 255, 255, .82); font-size: var(--t-small); max-width: 620px; }
.cta-final__acciones { display: flex; flex-wrap: wrap; gap: var(--e-3); }

.pie { background: var(--rojo); color: var(--blanco); padding-top: var(--e-7); }
.pie__grid { display: grid; gap: var(--e-6); }
.pie__logo { margin-bottom: var(--e-4); height: 48px; width: auto; }
.pie p { font-size: var(--t-small); color: rgba(255, 255, 255, .92); }
.pie a { color: var(--blanco); }
.pie a:hover { color: var(--blanco); text-decoration: underline; }

.pie__titulo {
    color: var(--blanco);
    font-size: var(--t-h5);
    text-transform: uppercase;
    margin-bottom: var(--e-4);
    padding-bottom: var(--e-2);
    border-bottom: 2px solid rgba(255, 255, 255, .3);
}
.pie__titulo--espaciado { margin-top: var(--e-5); }

.pie__lista { list-style: none; margin: 0; padding: 0; }
.pie__lista li { margin-bottom: 10px; font-size: var(--t-small); }
.pie__lista a::before { content: "➤"; margin-right: var(--e-2); font-size: 11px; }
.pie__lista--contacto a::before { content: none; }
.pie__lista--contacto li { color: rgba(255, 255, 255, .92); }

.pie__licencia { font-size: 13px !important; color: rgba(255, 255, 255, .75) !important; }
.pie__valoracion { display: flex; align-items: center; gap: var(--e-2); flex-wrap: wrap; font-size: 14px; }
.pie__valoracion .estrellas .estrella { color: rgba(255, 255, 255, .45); }
.pie__valoracion .estrellas .estrella.llena { color: #ffd54f; }

.pie__social { list-style: none; display: flex; flex-wrap: wrap; gap: var(--e-2); margin: var(--e-4) 0 0; padding: 0; }
.pie__social li { margin: 0; }
.pie__social a {
    display: inline-flex; align-items: center; justify-content: center;
    width: 38px; height: 38px;
    border: 1px solid rgba(255, 255, 255, .55);
    border-radius: 50%;
    font-size: 12px; font-weight: 700;
}
.pie__social a:hover { background: var(--blanco); color: var(--rojo); text-decoration: none; }

.pie__base { margin-top: var(--e-6); background: rgba(0, 0, 0, .22); padding-block: var(--e-4); }
.pie__base-inner { display: grid; gap: var(--e-3); text-align: center; }
.pie__base p { margin: 0; font-size: 14px; }
.pie__legal { list-style: none; display: flex; flex-wrap: wrap; justify-content: center; gap: var(--e-2) var(--e-4); margin: 0; padding: 0; font-size: 14px; }
.pie__legal li { margin: 0; }

/* ==========================================================================
   17. ELEMENTOS FLOTANTES Y COOKIES
   ========================================================================== */

.whatsapp-flotante {
    position: fixed;
    right: 16px; bottom: 16px;
    z-index: 300;
    width: 54px; height: 54px;
    display: flex; align-items: center; justify-content: center;
    background: #1faa53;
    color: var(--blanco);
    border-radius: 50%;
    font-size: 26px;
    box-shadow: var(--sombra-alta);
}
.whatsapp-flotante:hover { background: #17853f; color: var(--blanco); text-decoration: none; }

.subir {
    position: fixed;
    right: 16px; bottom: 82px;
    z-index: 300;
    width: 44px; height: 44px;
    background: var(--negro);
    color: var(--blanco);
    border: 0;
    border-radius: 50%;
    font-size: 20px;
    cursor: pointer;
    box-shadow: var(--sombra);
}
.subir:hover { background: var(--rojo); }
.subir[hidden] { display: none; }

.aviso-cookies {
    position: fixed;
    left: 16px; right: 16px; bottom: 16px;
    z-index: 400;
    background: var(--blanco);
    border: 1px solid var(--linea);
    border-top: 4px solid var(--rojo);
    border-radius: var(--radio-grande);
    box-shadow: var(--sombra-alta);
    padding: var(--e-4);
}
.aviso-cookies[hidden] { display: none; }
.aviso-cookies p { font-size: 14px; margin-bottom: var(--e-3); }
.aviso-cookies__acciones { display: flex; flex-wrap: wrap; gap: var(--e-2); }
.aviso-cookies .boton { padding: 10px 18px; font-size: 15px; }

/* Visor de imágenes generado por script.js */
.visor {
    position: fixed;
    inset: 0;
    z-index: 500;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: var(--e-5);
    background: rgba(0, 0, 0, .9);
}
.visor[hidden] { display: none; }
.visor__img { max-width: 100%; max-height: 88vh; border-radius: var(--radio); }
.visor__cerrar {
    position: absolute;
    top: 16px; right: 16px;
    width: 46px; height: 46px;
    background: var(--rojo);
    color: var(--blanco);
    border: 0;
    border-radius: 50%;
    font-size: 28px;
    line-height: 1;
    cursor: pointer;
}
.visor__cerrar:hover { background: var(--rojo-oscuro); }

/* ==========================================================================
   18. ACCESIBILIDAD E IMPRESIÓN
   ========================================================================== */

:focus-visible {
    outline: 3px solid var(--rojo);
    outline-offset: 2px;
    border-radius: 2px;
}

@media (prefers-reduced-motion: reduce) {
    html { scroll-behavior: auto; }
    *, *::before, *::after {
        animation-duration: .001ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: .001ms !important;
        scroll-behavior: auto !important;
    }
}

@media print {
    .barra-superior, .cabecera, .indice-tour, .cta-final, .pie,
    .whatsapp-flotante, .subir, .aviso-cookies, .barra-lateral,
    .carrusel__flecha, .boton { display: none !important; }
    body { font-size: 12pt; color: #000; }
    .contenedor { max-width: none; padding: 0; }
    a[href^="http"]::after { content: " (" attr(href) ")"; font-size: 9pt; }
    .itinerario__cuerpo { max-height: none !important; padding: 12px 0 !important; }
}
