/*
Theme Name: Click and Quads 
Template: astra
Text Domain: clickandquads
Version: 8.4.0
Author: Sergio Palomo
Description: 



 
*/

/* =========================================
   HEADER CLICK & QUADS - VERSIÓN FINAL GOLD
   ========================================= */


a:hover, a:focus {
    color: #000; /*color: #fed21d;*/
}
a {font-weight: 600;
    color: #000; transition: color 0.3s;}



/* --- 1. ESTRUCTURA GENERAL --- */
.cq-site-header {
    background: #fff;
    box-shadow: 0 4px 20px rgba(0,0,0,0.05);
    position: relative; z-index: 999;
}
.cq-container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }

/* --- 2. CABECERA SUPERIOR (Logo + Iconos) --- */
.cq-header-top { 
    padding: 10px 0; 
    border-bottom: 1px solid #f4f4f4; 
}
.cq-header-top .cq-container { 
    display: flex; 
    justify-content: space-between; 
    align-items: center; 
}

/* --- 3. LOGO Y BANDERAS (Wrapper) --- */
.cq-logo-wrapper {
    display: flex;
    flex-direction: column; 
    justify-content: center;
    line-height: 1;
}

/* Logo Imagen */
.cq-site-logo { margin: 0; padding: 0; line-height: 0; }
.cq-site-logo img { max-width: 350px; display: block; }

/* Banderas Móvil (Debajo del logo) */
.cq-flags-under-logo {
    display: flex;
    justify-content: center;
    width: 100%;
    gap: 1.5rem;       /* Banderas juntitas */
    /*margin-top: 5px; /* Pegadas al logo */
}
.cq-flags-under-logo img {
    width: 22px; height: 22px; /* Pequeñas y elegantes */
    border-radius: 50%; display: block;
    box-shadow: 0 1px 2px rgba(0,0,0,0.15);
}

/* --- 4. ACCIONES DERECHA (PC) --- */
.cq-top-actions { display: flex; align-items: center; gap: 15px; }
.cq-smart-langs { display: flex; gap: 1rem; align-items: center; }

/* Estilos Banderas (PC y Móvil) */
.lang-flag img {
    width: 25px; height: 25px; border-radius: 50%;
    object-fit: cover;
    box-shadow: 0 1px 3px rgba(0,0,0,0.1);
    transition: all 0.3s ease; display: block;
    opacity: 0.6; filter: grayscale(30%);
}
.lang-flag.active img {
    opacity: 1; filter: grayscale(0%);
    transform: scale(1.1); box-shadow: 0 2px 5px rgba(0,0,0,0.2);
    /*border: 2px solid #000;*/
}
.lang-flag:hover img { opacity: 1; filter: grayscale(0%); transform: scale(1.1); }


/* --- 5. MENÚ PC (NAVEGACIÓN LIMPIA) --- */
.cq-header-bottom { background: #fff; }
.cq-main-nav { display: flex; justify-content: center; }
.cq-menu-clean { list-style: none; margin: 0; padding: 0; display: flex; flex-wrap: wrap; }

.cq-menu-clean > li > a {
    display: block; padding: 18px 25px;
    color: #444; font-weight: 700; text-transform: uppercase;
    font-size: 0.95rem; text-decoration: none; position: relative;
    transition: color 0.3s; border: none;
    display: flex; align-items: center; /* Alineación segura */
}

/* NUCLEAR OPTION: Eliminar flechas y basura de Astra */
.cq-menu-clean .dropdown-menu-toggle,
.cq-menu-clean .ast-menu-toggle,
.cq-menu-clean .ast-arrow-svg,
.cq-menu-clean .icon-arrow,
.cq-menu-clean svg,
.cq-menu-clean button {
    display: none !important; content: none !important; width: 0 !important;
}

/* --- ESTADOS ACTIVOS (Hover y Current) --- */
/* Fondo gris suave y texto negro */
.cq-menu-clean > li > a:hover,
.cq-menu-clean > li.current-menu-item > a,
.cq-menu-clean > li.current-menu-ancestor > a, /* Padre de un sub-item activo */
.cq-menu-clean > li.current_page_parent > a 
{ color: #000; background: #fafafa; }

/* Línea Amarilla (After) */
.cq-menu-clean > li > a::after {
    content: ''; position: absolute; bottom: 0; left: 0;
    width: 0; height: 3px; background: #fed21d; transition: width 0.3s ease;
    display: block !important; z-index: 10;
}

/* Línea visible al 100% en activos */
.cq-menu-clean > li:hover > a::after,
.cq-menu-clean > li.current-menu-item > a::after,
.cq-menu-clean > li.current-menu-ancestor > a::after,
.cq-menu-clean > li.current_page_parent > a::after
{ width: 100%; }


/* --- 6. SUBMENÚS PC --- */
.cq-menu-clean li { position: relative; }
.cq-menu-clean .sub-menu {
    display: none; position: absolute; top: 100%; left: 0;
    background: #fff; width: max-content; min-width: 260px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
    list-style: none; padding: 0; margin: 0; z-index: 1000;
    /*border-top: 3px solid #fed21d;*/ border-radius: 0 .5rem .5rem;
}
.cq-menu-clean li:hover .sub-menu { display: block; }
.cq-menu-clean .sub-menu li { display: block; width: 100%; border-bottom: 1px solid #f5f5f5; }
.cq-menu-clean .sub-menu a {
    display: block; padding: 14px 25px;
    color: #444; font-size: 0.92rem; font-weight: 500;
    white-space: nowrap; background: transparent; text-decoration:none;
}
.cq-menu-clean .sub-menu a:hover {
    background: #fcfcfc; color: #000; padding-left: 30px; border-left: 3px solid #fed21d;
}
/* Aseguramos que el submenú no herede la línea amarilla del padre */
.cq-menu-clean .sub-menu a::after { display: none !important; }


/* --- 7. MENÚ MÓVIL (OFF-CANVAS) --- */
.cq-mobile-toggle { 
    display: none; background: none; border: none; 
    font-size: 2.2rem; color: #333; cursor: pointer; padding: 0; line-height: 1; border: 1px solid #ddd;
}
.cq-mobile-menu-overlay {
    position: fixed; top: 0; right: -100%; width: 100%; height: 100vh;
    background: rgba(0,0,0,0.5); z-index: 2000; visibility: hidden; transition: 0s;
}
.cq-mobile-menu-overlay.active { visibility: visible; right: 0; }
.cq-mobile-menu-content {
    position: absolute; top: 0; right: -300px;
    width: 85%; max-width: 320px; height: 100%;
    background: #fff; display: flex; flex-direction: column;
    transition: right 0.3s ease; box-shadow: -5px 0 20px rgba(0,0,0,0.2);
}
.cq-mobile-menu-overlay.active .cq-mobile-menu-content { right: 0; }
.cq-mobile-header-row {
    padding: 20px; border-bottom: 1px solid #ddd;
    display: flex; justify-content: space-between; align-items: center; background: #fff;
}
.cq-menu-title { /*font-weight: 800;*/ font-size: 1.1rem; color: #000; letter-spacing: 1px; }
.cq-close-menu {
    background: none; border: none; cursor: pointer;
    font-size: 1.8rem; color: #333; padding: 0; line-height: 1;
}
.cq-mobile-nav { flex-grow: 1; overflow-y: auto; }
.cq-mobile-list-accordion { list-style: none; padding: 0; margin: 0; }
.cq-mobile-list-accordion li { border-bottom: 1px solid #f5f5f5; position: relative; }
.cq-mobile-list-accordion a {
    display: block; padding: 15px 20px;
    color: #333; font-weight: 600; text-decoration: none; font-size: 1rem;
}
.cq-submenu-toggle {
    position: absolute; top: 0; right: 0; width: 50px; height: 50px;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.1rem; color: #bbb; cursor: pointer; border-left: 1px solid #fafafa;
}
.cq-mobile-list-accordion .sub-menu { display: none; background: #fff; list-style: none; padding: 5px 0 10px 0; }
.cq-mobile-list-accordion .sub-menu a {
    padding: 10px 20px 10px 35px; font-size: 0.95rem; font-weight: 400; color: #666;
    border-left: 3px solid transparent;
}
.menu-item-has-children.submenu-open > .sub-menu { display: block; }
.menu-item-has-children.submenu-open > .cq-submenu-toggle { transform: rotate(180deg); color: #fed21d; }
.cq-mobile-list-accordion .sub-menu a:hover { color: #000; border-left-color: #fed21d; background: #fffcf0; }

/* =========================================
   8. BREADCRUMBS (DISEÑO, ALTURA Y HOVERS)
   ========================================= */

/* Espaciado general Astra */
.ast-breadcrumbs-wrapper { 
    margin: 20px; 
}

/* Caja principal (Con margen superior para despegar del menú) */
.cq-breadcrumb-wrapper {
    background-color: #fff; 
    padding: 10px 0; 
    border-bottom: 1px solid #ddd;
    font-size: 0.9rem; 
    color: #666; 
    margin-top: 15px; /* <-- Despegado del header */
    margin-bottom: 20px;
}

/* FIX GLOBAL: Forzar siempre una sola fila alineada a la izquierda */
.cq-breadcrumb-wrapper nav.breadcrumb,
.ast-breadcrumbs-inner,
.rank-math-breadcrumb {
    display: flex !important;
    flex-direction: row !important;
    flex-wrap: nowrap !important; /* UNA LÍNEA MÁGICA */
    align-items: center !important; 
    justify-content: flex-start !important; 
    gap: 4px !important; 
    margin: 0;
    line-height: 1 !important; 
}

/* Ajustes para no partir textos */
.ast-breadcrumbs-inner span,
.ast-breadcrumbs-inner a,
.cq-breadcrumb-wrapper span,
.cq-breadcrumb-wrapper a,
.cq-breadcrumb-wrapper .sep {
    display: inline-flex !important;
    align-items: center !important;
    margin: 0 !important;
    line-height: 1 !important;
    white-space: nowrap !important; 
}

/* --- ESTILO DE TEXTOS (ENLACES) --- */
.cq-breadcrumb-wrapper a {
    color: #666; 
    text-decoration: none; 
    font-weight: 600; 
    transition: all 0.3s ease; 
    padding: .2rem 0; /* Sin padding lateral para que el subrayado quede exacto */
    position: relative;
}

/* El Hover de los enlaces de texto (Subrayado animado estilo menú) */
.cq-breadcrumb-wrapper a:not(.home-link):hover { 
    color: #000;
}
.cq-breadcrumb-wrapper a:not(.home-link)::after {
    content: ''; 
    position: absolute; 
    bottom: 0; 
    left: 0;
    width: 0; 
    height: 2px; 
    background: #fed21d; 
    transition: width 0.3s ease;
}
.cq-breadcrumb-wrapper a:not(.home-link):hover::after {
    width: 100%;
}

/* --- ESTILO DE LA CASITA (HOME) --- */
.cq-breadcrumb-wrapper a.home-link {
    padding: .2rem .4rem; /* Un poco de área para tocar con el dedo */
}
.cq-breadcrumb-wrapper a.home-link i {
    font-size: 1.15rem; 
    transform: translateY(-1px); /* Alineación óptica perfecta */
    transition: transform 0.2s cubic-bezier(0.175, 0.885, 0.32, 1.275), color 0.2s; /* Animación de rebote */
}
/* Hover casita: Negra (el amarillo no se ve sobre blanco) y hace un "saltito" */
.cq-breadcrumb-wrapper a.home-link:hover i {
    color: #000; 
    transform: translateY(-3px) scale(1.1);
}

/* --- SEPARADORES Y TEXTO FINAL --- */
.cq-breadcrumb-wrapper .sep {
    color: #999;
    font-size: 1.1em;
    margin: 0 4px !important; /* Espacio respirable del símbolo > */
}
.cq-breadcrumb-wrapper span.current-item { 
    color: #888; 
    font-weight: 400; 
    padding: .2rem 0;
}

/* =======================================================
   FIX MÓVIL: SCROLL TÁCTIL (APP STYLE)
   ======================================================= */
@media (max-width: 768px) {
    .cq-breadcrumb-wrapper { padding: 8px 0; margin-top: 10px; } 

    .cq-breadcrumb-wrapper nav.breadcrumb,
    .ast-breadcrumbs-inner,
    .rank-math-breadcrumb {
        overflow-x: auto; 
        -webkit-overflow-scrolling: touch; 
        scrollbar-width: none; 
        padding-bottom: 0;
    }
    
    /* Ocultar barra de scroll en Chrome/Safari/iOS */
    .cq-breadcrumb-wrapper nav.breadcrumb::-webkit-scrollbar,
    .ast-breadcrumbs-inner::-webkit-scrollbar,
    .rank-math-breadcrumb::-webkit-scrollbar {
        display: none; 
    }
}

/* =======================================================
   FIX MÓVIL: SCROLL TÁCTIL (APP STYLE) Y HUECOS MÁS PEQUEÑOS
   ======================================================= */
@media (max-width: 768px) {
    .cq-breadcrumb-wrapper { padding: 8px 0; } /* Franja aún más fina en móvil */

    .cq-breadcrumb-wrapper nav.breadcrumb,
    .ast-breadcrumbs-inner,
    .rank-math-breadcrumb {
        gap: 4px !important; /* Huecos muy pequeños en móvil para ganar espacio */
        overflow-x: auto; /* Activa el scroll horizontal */
        -webkit-overflow-scrolling: touch; /* Scroll suave en iOS */
        scrollbar-width: none; /* Oculta barra en Firefox */
        padding-bottom: 0;
    }
    
    /* Ocultar barra de scroll en Chrome/Safari */
    .cq-breadcrumb-wrapper nav.breadcrumb::-webkit-scrollbar,
    .ast-breadcrumbs-inner::-webkit-scrollbar,
    .rank-math-breadcrumb::-webkit-scrollbar {
        display: none; 
    }
}

/* --- 9. RESPONSIVE & DISTRIBUCIÓN 85/15 MÓVIL --- */
@media (max-width: 992px) {
    .desktop-only { display: none !important; }
    .mobile-only { display: flex !important; }
    .cq-mobile-toggle { display: block; }

    /* LAYOUT MÓVIL (Centrado Óptico) */
    .cq-header-top .cq-container {
        display: flex;
        align-items: center;
        justify-content: space-between;
    }

    /* ZONA CENTRAL (Logo + Banderas) */
    .cq-logo-wrapper {
        flex: 1; /* Ocupa el espacio central */
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 1.5rem;
        margin: 1rem 0 .5rem;
        /* TRUCO DE CENTRADO: Compensamos el espacio del botón menú */
        /*margin-left: 45px; */
    }

    /* ZONA DERECHA (Botón Menú) */
    .cq-top-actions {
        flex: 0 0 45px; /* Espacio fijo a la derecha */
        display: flex;
        justify-content: flex-end;
    }

    /* Ajuste tamaño Logo en móvil */
    .cq-site-logo img { max-width: 300px;} 

}

@media (min-width: 993px) {
    .mobile-only { display: none !important; }
}

/* =========================================
   0. CONFIGURACIÓN BASE Y LIMPIEZA
   ========================================= */
/*body.page-template-page-nuestros-tours, body {
    background-image: url(https://www.clickandquads.com/img/ruedas-click-and-quads.png);
    background-repeat: no-repeat;
    background-position: right top; 
    background-size: 1000px;
}*/
#ast-scroll-top {
    background: #fed21d !important;
    color: #000;
	border-radius: 50%;
}


.ast-separate-container { background-color: #ffffff !important; }

/* --- FIX ASTRA: PADDING GLOBAL MÓVIL A 20PX --- */
@media (max-width: 544px) {
    .ast-separate-container #content .ast-container {
        padding-left: 20px;
        padding-right: 20px;
    }
}


/* --- LIMPIEZA TOTAL: OUTLINES Y MARKERS --- */
*:focus, *:focus-visible, a:focus, button:focus, summary:focus, input:focus {
    outline: none !important;
    box-shadow: none !important;
    -webkit-tap-highlight-color: transparent;
}

summary { list-style: none !important; }
summary::-webkit-details-marker { display: none !important; }
summary::marker { display: none !important; content: ""; }



/* Ajustes Cabecera */
#logoClick { width:350px; }
#logoClick p, #logoClick h1 { margin:1.5em 0; font-size:1em; }
body.page-template-page-nuestros-tours .ast-primary-header-bar { background: none; }

#primary h1 { margin-bottom: 1rem; line-height:1.2; }
#primary h1 .tipo { font-size: 1.5rem; text-transform: uppercase; color: #666; font-weight: lighter;}
#primary h1 .titulo { display:block; }
.lema p { font-size:1.4rem; text-align:center; }

@media (min-width: 993px) {
    .ast-separate-container #primary, 
    .ast-separate-container.ast-left-sidebar #primary, 
    .ast-separate-container.ast-right-sidebar #primary, 
    .ast-plain-container.ast-no-sidebar #primary {
        margin: 1.5rem 0 4rem; padding: 0;
    }
    .single-nuestros_tours #primary, .single-alquiler_flota  #primary  {
        margin: 1.5rem 0 0; padding: 0;
    }
}


@media (max-width: 992px) {
    .ast-separate-container #primary, 
    .ast-separate-container.ast-left-sidebar #primary, 
    .ast-separate-container.ast-right-sidebar #primary, 
    .ast-plain-container.ast-no-sidebar #primary {
        margin: 1.5rem 0 3rem; /* 3rem de margen inferior es el aire perfecto en móvil */
       
    }
	.single-nuestros_tours #primary, .single-alquiler_flota  #primary  {
        margin: 1.5rem 0 0; 
    }
}
.breadcrumb { margin:1rem 0 0;}


/* =========================================
   1. DISTRIBUIDORA / LISTADO
   ========================================= */
.tours-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin: 40px 0;
}

.tour-box {
    border: 1px solid #ddd;
    padding: 20px;
    border-radius: 1rem;
    background: #fff;
    box-shadow: 0 4px 10px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
    text-decoration: none !important;
    color: #333 !important;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.tour-box:hover { 
    background-color: #fed21d; 
    transform: translateY(-15px); 
}

/* Evitar texto azul */
.tour-box h2, .tour-box h3, .tour-box p, .tour-box span, .tour-box div { color: inherit !important; }

.tour-image-wrapper { margin-bottom: .8rem; overflow: hidden; border-radius: .5rem; height: 220px; }
.tour-image { width: 100%; height: 100%; object-fit: cover; transition: transform 0.3s ease; border-radius: .5rem; }
.tour-box:hover .tour-image { transform: scale(1.1); }

.tour-box h2, .tour-box h3 { font-size: 1.65em; line-height: 1.1em; margin: 0 0 .5rem; }
.tour-box h2 span, .tour-box h3 span { font-size: .6em; text-transform: uppercase; /*line-height: 1em; display: block;*/ color: #666 !important; }
.tour-box:hover h2 span, .tour-box:hover h3 span { color: #000 !important; }

.tour-content-body { flex-grow: 1; margin-bottom: 15px; }
.tour-subtitulo-text { font-weight: bold; margin-bottom: 10px; }
.tour-subtitulo-text p, .tour-descripcion-text p { margin: 0 0 10px 0; font-size: 0.95rem; line-height: 1.5; }

.precio { 
    margin-top: auto; font-weight:bold; text-align:center; padding-top: 15px; 
    border-top: 1px solid #ddd; width: 100%; font-size: 1.1rem;
}
.tour-box:hover .precio { border-top-color: rgba(0,0,0,0.1); }

.btn-reservar {
    display: table; margin: 15px auto 0; background: #fed21d; color: #000 !important;
    font-weight:bold; text-transform: uppercase; padding: 10px 25px;
    border-radius: 1rem; text-decoration: none; text-align:center;
}
.tour-box:hover .btn-reservar { background: #000; color: #fff !important; }
.no-tours { text-align: center; }

@media (max-width: 992px) { .tours-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .tours-grid { grid-template-columns: 1fr; } }


/* =========================================
   2. FICHA TÉCNICA - ESTRUCTURA
   ========================================= */
.single-nuestros_tours #primary, .single-alquiler_flota  #primary { display: flex; flex-wrap: wrap; gap: 30px; }
.single-alquiler_flota .moto-landing-container { width: 100%}
.single-nuestros_tours .columna-1, .single-alquiler_flota .columna-1 { flex: 2; min-width: 0; }
.single-nuestros_tours .columna-2, .single-alquiler_flota .columna-2 { 
    flex: 1; position: sticky; top: 100px; align-self: flex-start; 
    background: #fee88e; padding: 25px; border-radius: 1rem; 
}
.single-nuestros_tours .columna-2 h2, .single-alquiler_flota .columna-2 h2 { margin-bottom: .5em; }
.nota { font-size:.9rem;}
.centrado {text-align: center;}


@media (max-width: 921px) {
    .ast-separate-container #primary {
        padding: 0;
    }
}


/* =========================================
   3. GALERÍA - AJUSTE FINAL PROPORCIONES
   ========================================= */

/* --- CARGADOR --- */
#gallery-loader {
    text-align: center; padding: 0;
    display: flex; justify-content: center; align-items: center;
    width: 100%; height: 400px;
    background: #f4f4f4; /* Se queda tu gris de siempre */
    border-radius: .5rem;
} 
#gallery-loader img { 
    width: 50px; 
    height: 50px; 
    mix-blend-mode: multiply; /* MAGIA: El blanco del GIF desaparece y se funde con el gris */
}

/* --- CONTENEDOR PRINCIPAL (PC: 3/2 Horizontal) --- */
.tour-gallery-top { 
    width: 100%; 
    aspect-ratio: 3 / 2 !important; 
    border-radius: .5rem; overflow: hidden; position: relative;
    background-color: #ddd; 
}

.tour-gallery-top .swiper-slide { width: 100%; height: 100%; }

/* La imagen siempre llena el hueco (recorta lo que sobre) */
.tour-gallery-top img { 
    width: 100%; height: 100%; 
    object-fit: cover !important; 
}

/* --- MÓVIL (PC: 2/3 Vertical / Póster) --- */
@media (max-width: 768px) {
    .tour-gallery-top { 
        /* AHORA SÍ FUNCIONARÁ: Forzamos formato historia/póster */
        aspect-ratio: 5 / 6 !important; 
        height: auto !important; 
        max-height: none !important; 
        min-height: 0 !important; /* Reseteamos cualquier altura mínima */
    }
}

/* --- FLECHAS --- */
.tour-gallery-top .swiper-button-next, 
.tour-gallery-top .swiper-button-prev { 
    color: #fed21d !important; width: 40px !important; height: 40px !important;
    margin-top: -20px;
}
.tour-gallery-top .swiper-button-next:after, 
.tour-gallery-top .swiper-button-prev:after {
    display: flex; align-items: center; justify-content: center;
    background-color: rgba(0, 0, 0, 0.6); 
    border-radius: 50% !important;
    width: 100%; height: 100%; 
    font-size: 18px !important; font-weight: bold;
}
.tour-gallery-top .swiper-button-next:hover:after, 
.tour-gallery-top .swiper-button-prev:hover:after {
    background-color: #fed21d !important; color: #000 !important;
}
.tour-gallery .swiper-button-disabled { opacity: 0.3; pointer-events: none; }

/* --- MINIATURAS (Siempre 3/2 Horizontal) --- */
.tour-thumbs { margin-top: 10px; width: 100%; }

/* ESTO ARREGLA QUE SE VEAN ALTAS: Alineamos al inicio para que no se estiren */
.tour-thumbs .swiper-wrapper {
    align-items: flex-start !important;
}

.tour-thumbs .swiper-slide { 
    /* Forzamos rectángulo horizontal */
    aspect-ratio: 3 / 2 !important; 
    width: auto; 
    height: auto !important; /* Importante para que no herede altura extra */
    cursor: pointer; border-radius: .5rem; 
    opacity: 0.6; transition: 0.3s; 
    overflow: hidden;
    background-color: #000;
    box-sizing: border-box;
}

.tour-thumbs .swiper-slide-thumb-active { 
    opacity: 1; 
    box-shadow: inset 0 0 0 3px #fed21d; 
}

.tour-thumbs img { 
    width: 100%; height: 100%; 
    object-fit: cover; 
    display: block; /* Elimina espacios fantasma debajo de las imágenes */
}


/* Estilos globales botones */

button:focus, .menu-toggle:hover, button:hover, .ast-button:hover, .ast-custom-button:hover .button:hover, .ast-custom-button:hover, input[type=reset]:hover, input[type=reset]:focus, input#submit:hover, input#submit:focus, input[type="button"]:hover, input[type="button"]:focus, input[type="submit"]:hover, input[type="submit"]:focus, form[CLASS*="wp-block-search__"].wp-block-search .wp-block-search__inside-wrapper .wp-block-search__button:hover, form[CLASS*="wp-block-search__"].wp-block-search .wp-block-search__inside-wrapper .wp-block-search__button:focus, body .wp-block-file .wp-block-file__button:hover, body .wp-block-file .wp-block-file__button:focus {

    color: #000 !important;

    background-color: #fed21d !important;

    border-color: #fed21d !important;

}

.carousel__button svg {filter: none !important;}

.fancybox__thumbs .carousel__slide .fancybox__thumb::after{border-color: #fed21d !important;}


/* =========================================
   4. ICONOS RESUMEN Y VIDEO
   ========================================= */
.meta-tour-wrapper.centered { display: flex; flex-direction: column; align-items: center; gap: 20px; margin: 30px 0; }


ul.icoDescripcion { 
    margin: 0 !important; 
    padding: 0 !important; 
    display: flex; 
    row-gap: 5px !important;    /* <-- MAGIA: Hueco vertical súper pequeñito (entre fila 1 y 2) */
    column-gap: 2rem !important; /* <-- Hueco horizontal grande (se mantiene) */
    justify-content: center; 
    flex-wrap: wrap; 
    list-style: none !important; 
}
ul.icoDescripcion li { list-style: none !important; margin: 0; }
ul.icoDescripcion li p { margin: 0; display: flex; align-items: center; gap: 8px; font-size: 1.1rem; }
ul.icoDescripcion i { color: #fed21d; font-size: 1.2rem; }

.video-btn-container { width: 100%; display: flex; justify-content: center; }
.btn-video-popup-clean {
    background: #fff; color: #cc0000; padding: 10px 25px; border-radius: 3rem;
    text-decoration: none; font-weight: 600; display: inline-flex; align-items: center;
    gap: 10px; border: 2px solid #cc0000; transition: all 0.2s ease;
}
.btn-video-popup-clean:hover { background: #cc0000; color: white; }

.precio-destacado-clean { display: flex; flex-direction: column; align-items: center; margin-bottom: 20px; }
.price-value { font-size: 2.5rem; font-weight: 600; color: #333; line-height: 1.2; }


/* =========================================
   5. COMPONENTES: ANCLAS, ACORDEONES
   ========================================= */
   .separador { display:block;}
   .contenidoBloque { padding: 2rem 1rem !important; }
   #contenidoFicha .contenidoResenas { padding: 2rem 0 0 !important; }

@media (min-width: 769px) {
  /*.subMenu {
      display: flex; flex-wrap: nowrap; justify-content: center;
      gap: 10px; padding: 10px; margin: 0 0 30px 0;
      border-bottom: 1px solid #ddd; background: #fff; border-radius: 1rem;
  }
  .subMenu li { list-style: none; }
  .subMenu a {
      display: inline-block; padding: 10px 20px; color: #555; text-decoration: none;
      font-size: 15px; font-weight: 500; border-radius: 1rem;
      transition: all 0.2s; background: #f9f9f9;
  }
  .subMenu a:hover { background: #fed21d; color: #000; }
  */
  #contenidoFicha details.bloque-principal { border: none; background: transparent; padding: 0; margin-top: 2rem; }
  #contenidoFicha details.bloque-principal > summary { pointer-events: none; background: transparent; border-bottom: 2px solid #fed21d; padding: 0 0 10px;  }
  #contenidoFicha details.bloque-principal > summary h2 { font-size: 1.8rem; margin: 0; }
  #contenidoFicha details.bloque-principal > summary::after { display: none; }
}

@media (max-width: 768px) {
  /* =======================================
     NIVEL 1: BLOQUES PRINCIPALES (Detalles, FAQs...)
     ======================================= */
  #contenidoFicha details.bloque-principal { margin-bottom: 15px; border: 1px solid #ddd; border-radius: 1rem; background: #fff; overflow: hidden; }
  
  /* Usamos ">" para afectar SOLO a los títulos de las cajas grandes por fuera */
  #contenidoFicha > details.bloque-principal > summary { cursor: pointer; font-weight: bold; font-size: 18px; position: relative; padding: 15px 50px 15px 15px; background: #fcfcfc; list-style: none; }
  
  #contenidoFicha > details.bloque-principal > summary::after { content: "+"; position: absolute; right: 20px; top: 50%; transform: translateY(-50%); font-weight: bold; font-size: 22px; color: #fed21d; }
  
  #contenidoFicha > details.bloque-principal[open] > summary::after { content: "-"; color: #333; } 
  
  /* =======================================
     NIVEL 2: FAQS INTERNAS (Preguntas específicas)
     ======================================= */
  details.faq-internal {
      background-color: #f7f7f7;
      border: none;
      border-left: 5px solid #fed21d;
      box-shadow: 0 2px 5px rgba(0,0,0,0.03);
  }
  
  /* Le damos su propio espacio de 60px a la derecha para que el texto NO pise la cruz de la FAQ */
  #contenidoFicha details.faq-internal summary {
      background-color: transparent;
      padding: 15px 60px 15px 15px !important; 
  }
  
  /* Y protegemos el H3 de dentro por si la palabra es extremadamente larga */
  #contenidoFicha details.faq-internal summary h3 {
      padding-right: 10px;
  }
}

.contenidoBloque h3 {font-size: 1.2rem; margin: 1.5rem 0 .5rem;}
p { margin-bottom: .5rem !important;}

/* =========================================
   SUBMENÚ MINIMALISTA + EFECTO ELEVACIÓN
   ========================================= */

/* 1. Contenedor */
.subMenu {
    list-style: none;
    padding: 0;
    margin: 20px 0 50px 0;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    border-bottom: 1px solid #ddd;
    padding-bottom: .5rem;
}

/* 2. Los Elementos de la lista */
.subMenu li {
    margin: 0;
    padding: 0;
    display: flex;
    align-items: center;
}

/* 3. El Separador (|) - Fino y elegante */
.subMenu li:not(:last-child)::after {
    content: '';
    display: block;
    width: 1px;
    height: 14px;
    background-color: #ddd; /* Gris muy suave */
    margin: 0 5px; 
}

/* 4. Los Enlaces (Base) */
.subMenu li a {
    text-decoration: none;
    font-family: 'Segoe UI', sans-serif;
    font-size: 0.9rem;
    font-weight: 700; /* Letra fuerte */
    color: #444;
    padding: 8px 18px; /* Un poco más de aire */
    text-transform: uppercase;
    letter-spacing: 0.5px;
    display: inline-block; /* Necesario para que se mueva */
    transition: all 0.2s cubic-bezier(0.25, 0.8, 0.25, 1); /* Animación fluida */
}

/* 5. Efecto Hover (EL TOQUE MÁGICO) */
.subMenu li a:hover {
    background-color: #fed21d; /* Fondo amarillo rectangular */
    color: #000;
    
    /* El movimiento que te gusta: */
    transform: translateY(-4px); 
    
    /* Sombra para dar sensación de que flota de verdad */
    box-shadow: 0 5px 15px rgba(0,0,0,0.1); 
}

/* 6. Móvil (Oculto) */
@media (max-width: 768px) {
    .subMenu { display: none; }
}
/* -----------------------------------------------------------------
   FAQS INTERNAS - ESTILO TARJETA (PC) Y DIFERENCIADO EN MÓVIL
   ----------------------------------------------------------------- */
details.faq-internal {
    border: 1px solid #ddd;
    border-radius: 1rem;
    background-color: #fdfdfd;
    margin-bottom: 1rem;
    padding: 0;
    overflow: hidden;
    transition: all 0.3s ease;
}

details.faq-internal summary {
    padding: 15px 60px 15px 15px; 
    position: relative;
    list-style: none;
    cursor: pointer;
    outline: none;
    font-weight: 600;
}
details.faq-internal summary h3 {
    display: inline-block;
    margin: 0;
    font-size: 1rem;
    line-height: 1.4;
}
details.faq-internal summary::-webkit-details-marker { display: none; }
details.faq-internal summary::marker { display: none; content: ""; }

details.faq-internal summary::after { 
    content: '+' !important;
    position: absolute; 
    right: 15px; 
    color: #fed21d !important;
    font-size: 22px; 
    font-weight: bold; 
    top: 50%; 
    transform: translateY(-50%); 
    line-height: 1;
}

details.faq-internal[open] summary::after { 
    content: '-' !important; 
    color: #333 !important;
}

details.faq-internal[open] .faq-respuesta { 
    padding: 15px; 
    background-color: #fff; 
    border-top: 1px solid #f0f0f0; 
    color: #555; 
}

/* --- ESTILO MÓVIL DISTINTIVO --- */
@media (max-width: 768px) {
    details.faq-internal {
        background-color: #f7f7f7;
        border: none; 
        border-left: 5px solid #fed21d; 
        box-shadow: 0 2px 5px rgba(0,0,0,0.03);
    }
    details.faq-internal summary {
        background-color: transparent; 
    }
}


/* =========================================
   6. INFO PRÁCTICA, INCLUSIONES Y MAPA
   ========================================= */
.inclusiones-wrapper { display: flex; gap: 20px; flex-wrap: wrap; }
.col-incluye { flex: 1; min-width: 280px; padding: 0 1rem; }
.col-incluye h3 { 
    margin-top: 0; font-size: 1.1rem; display: flex; align-items: center; gap: 10px; 
    border-bottom: 1px solid #f0f0f0; padding-bottom: 10px; margin-bottom: 15px; color: #222;
}
.col-incluye.si h3 i { color: #28a745; } 
.col-incluye.no h3 i { color: #dc3545; } 
.col-incluye ul { padding-left: 20px; margin: 0; }

.grid-detalles { 
    display: flex; 
    flex-direction: column; /* Lista vertical */
    gap: 0; 
    margin-top: 20px;
}

.item-detalle { 
    display: flex; 
    gap: 30px; 
    align-items: flex-start; /* Alinear arriba si hay mucho texto */
    padding: 1.5rem 0; 
    border-bottom: 1px solid #ddd; /* Línea separadora */
    transition: 0.2s;
    width: 100%;
    flex-wrap: wrap;
}
.item-detalle.item-inicio { padding-top:0; } /* Quitar linea al primero */
.item-detalle.item-final { border-bottom: none; margin-bottom:2rem; } /* Quitar linea al último */


/* Columna Izquierda: Titular + Icono */
.item-detalle .titular { 
    width: calc(30% - 30px); 
    min-width: 180px; 
}

.item-detalle h3 { 
    font-size: 1.1rem; 
    color: #222; 
    margin: 0; 
    display: flex; 
    align-items: center; 
    gap: 12px; 
}
.item-detalle h3 i { 
    color: #fed21d; 
    font-size: 1.4rem; /* Icono grande sin circulo */
    padding: 0; 
    background: none; 
}

/* Columna Derecha: Contenido */
.item-detalle .contenido { 
    width: 70%; 
    color: #555;
    line-height: 1.6;
    font-size: 1rem;
}
.item-detalle .contenido p { margin: 0 0 10px 0; }
.item-detalle .contenido p:last-child { margin: 0; }
.item-detalle .contenido ul { padding-left: 20px; margin: 0; }

.item-detalle .cond-climativas {  margin:0 3rem; background-color: #f0f8ff; display:flex; gap: 1rem;padding: 15px;border-left: 3px solid #0073aa;border-radius: .5rem;font-size: 0.95em;color: #333}
.item-detalle .cond-climativas i{color: #0073aa;font-size: 1.3em}
.item-detalle .cond-climativas p{ margin:0;}


/* Highlight Normas */
.item-detalle.highlight-warning { 
    background: #fffdf5; 
    border: 1px solid #ffeeba; 
    border-radius: 1rem;
    padding: 20px;
    margin: 10px 0; /* Separación extra */
}
.item-detalle.highlight-warning .titular { width: 30%; } /* Mantener proporciones dentro del highlight */
.item-detalle.highlight-warning .contenido { width: 70%; }


/* --- LISTAS DE PRECIOS PREMIUM --- */
.item-detalle .contenido ul.lista-precios-premium {
    list-style: none;
    margin: 0;
    padding: 0;
}

.precio-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap; /* Importante para móvil */
    padding-bottom: 1rem;
    border-bottom: 1px solid #ddd;
    gap: 10px;
}

.precio-item:last-child {
    border-bottom: none;
    padding-top: 1rem;
    padding-bottom: 0;
}

.precio-main {
    font-size: 1.05rem;
    color: #333;
}

.precio-label {
    font-weight: 600;
    margin-right: 5px;
}

.precio-valor {
    color: #0073aa; /* Tu azul corporativo */
    font-weight: 700;
}

.precio-badge {
    font-size: 0.85rem;
    padding: 4px 10px;
    border-radius: 1rem;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

/* Colores de las etiquetas */
.badge-blue { background-color: #e3f2fd; color: #0d47a1; }
.badge-gold { background-color: #fff3cd; color: #856404; }


/* --- CAJA DESCUENTO & AVISOS LEGALES --- */
/* Caja Descuento (Verde) - Copia de seguridad por si acaso */
.detalle-descuento-box {
    background: #f0fff4; 
    border: 1px dashed #28a745;
    padding: 20px;
    border-radius: 1rem;
    display: flex;
    align-items: flex-start; 
    gap: 20px;
    margin-top: 20px;
    flex-wrap: wrap;
    justify-content: center;
}
.detalle-icon-desc { 
    color:#28a745; 
    font-size:1.8rem; 
}
.detalle-content-desc h3{color:#28a745; font-size:1.2rem; margin:0;}
.cupon-code { background:#fff; border:1px solid #ccc; padding:2px 6px; border-radius:1rem; font-weight:bold; color:#333; }

/* Aviso Legal DNI */
.aviso-residente {
    margin-top: 10px;
    font-size: 0.85rem;
    color: #155724;
    background: rgba(40, 167, 69, 0.1);
    padding: 8px 12px;
    border-radius: .5rem;
    line-height: 1.4;
    border-left: 3px solid #28a745;
    display: flex;
    align-items: flex-start; 
    gap: 1rem;
    margin: 0;
}
.aviso-residente p, .detalle-content-desc p { margin:0;}
.aviso-residente i { font-size: 1.3em;}


/* --- MAPAS Y PUNTOS DE ENCUENTRO ANTIGUOS --- */
.meeting-point-wrapper { display: flex; gap: 30px; flex-wrap: wrap; }
.meeting-info { flex: 1; min-width: 300px; }
.meeting-map { flex: 1; min-width: 300px; }
.meeting-map iframe {  border-radius:20px;  border: 1px solid #ddd !important;}
.meeting-item { display:flex; gap: 20px; align-items: center; margin-bottom: 20px; }
.meeting-item.meeting-direccion {align-items: flex-start;}

.meeting-item i { font-size: 1.5rem; color: #fed21d; background: #fff; border: 1px solid #ddd; padding: 10px; border-radius: 1rem; min-width: 50px; text-align: center; }
.btn-google-maps { text-align: center;  }
.btn-google-maps a { display: inline-block; background: #4285F4; color: white; padding: 10px 20px; border-radius: 1rem; text-decoration: none; margin-top: 15px; font-weight: 600; }
.meeting-item h3, .meeting-item p{ margin:0 !important;}


/* ==========================================================
   6.1. NUEVO TIMELINE RUTA (TEIDE) - HORIZONTAL CLEAN
   ========================================================== */

/* Intro Limpia */
.intro-texto-limpio {
    margin-bottom: 30px; 
    color: #333; 
    font-size: 1rem; 
    line-height: 1.6;
}
.intro-texto-limpio p { margin: 0; }

/* Contenedor Timeline */
.timeline-container {
    padding-left: 15px;
    border-left: 2px dashed #e0e0e0; /* Línea de ruta discontinua */
    margin-left: 10px;
    margin-top: 20px;
    margin-bottom: 20px;
}

.timeline-row {
    position: relative;
    margin-bottom: 35px; /* Espacio entre paradas */
}

/* Bolita amarilla en la línea */
.timeline-row::before {
    content: '';
    position: absolute;
    left: -22px; /* Ajuste para centrar en la línea */
    top: 6px; /* A la altura de la etiqueta negra */
    width: 12px;
    height: 12px;
    background: #fed21d;
    border: 2px solid #fff;
    border-radius: 1rem;
    box-shadow: 0 0 0 1px #ddd;
    z-index: 2;
}

/* ETIQUETA NEGRA (PARADA 1) */
.parada-label {
    margin-bottom: 8px;
}
.parada-label span {
    background: #222;
    color: #fff;
    font-size: 0.75rem;
    /*font-weight: 800;*/
    text-transform: uppercase;
    padding: 4px 10px;
    border-radius: 1rem;
    letter-spacing: 0.5px;
}

/* TARJETA BLANCA HORIZONTAL */
.timeline-card.horizontal-layout {
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 1rem; /* Bordes menos redondeados, más técnico */
    padding: 20px;
    display: flex;
    justify-content: space-between; /* Texto a la izq, botón a la der */
    align-items: center; /* Centrados verticalmente */
    gap: 20px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.02);
}

.timeline-card.horizontal-layout:hover {
    border-color: #fed21d;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

/* PARTE IZQUIERDA (TEXTOS) */
.card-info {
    flex: 1; /* Ocupa todo el espacio posible */
}

.header-simple {
    display: flex;
    align-items: center;
    gap: .8rem;
}
.header-simple i {
    color: #fed21d;
    font-size: 1.1rem;
}
.header-simple h3 {
    margin: 0;
    font-size: 1.1rem;
    font-weight: 700;
    color: #111;
}

.ruta-direccion {
    margin: 0 0 8px 0;
    /*font-size: 0.9rem;*/
    color: #888;
    font-style: italic;
    padding-left: 2rem; /* Alinear con el título (saltando el icono) */
}

.ruta-meta {
    margin: 0;
    font-size: 0.95rem;
    color: #333;
    padding-left: 24px;
}
.ruta-meta strong {
    color: #000;
    font-weight: 700;
}

/* PARTE DERECHA (BOTÓN) */
.card-action {
    flex-shrink: 0; /* Que el botón no se aplaste */
}

/* Botón estilo Pill Clean */
.btn-ruta-pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    border: 1px solid #dbeafe;
    background: #eff6ff;
    color: #1d4ed8;
    border-radius: 1rem;
    font-size: 0.9rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.2s;
    white-space: nowrap; /* Que no se parta el texto */
}
.btn-ruta-pill:hover {
    background: #1d4ed8;
    color: #fff;
    border-color: #1d4ed8;
}

/* --- ESTILOS AVISOS OPERATIVA (ABAJO DEL TIMELINE) --- */
.avisos-operativa {
    margin-top: 30px;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.aviso-box {
    display: flex;
    gap: 15px;
    padding: 15px;
    border-radius: 1rem;
    font-size: 0.9rem;
    line-height: 1.4;
    align-items: flex-start;
}
.aviso-box i { font-size: 1.2rem; margin-top: 2px; }

/* Caja Roja */
.aviso-box.alerta { background-color: #fff5f5; border-left: 4px solid #e53e3e; color: #c53030; }
.aviso-box.alerta i { color: #e53e3e; }

/* Caja Azul */
.aviso-box.info { background-color: #ebf8ff; border-left: 4px solid #3182ce; color: #2c5282; }
.aviso-box.info i { color: #3182ce; }

/* Modificador para alinear verticalmente texto corto */
.aviso-box.centrado {
    align-items: center; /* Esto fuerza el centro vertical */
}

/* Quitamos el pequeño margen superior que le dimos al icono original */
.aviso-box.centrado i {
    margin-top: 0; 
}

.link-telefono {
    display: inline-block; margin-top: 5px; font-weight: 700; color: #2b6cb0; text-decoration: none; font-size: 1.1em;
}
.link-telefono:hover { text-decoration: underline; }

/* RESPONSIVE TIMELINE */
@media (max-width: 600px) {
    .timeline-card.horizontal-layout {
        flex-direction: column; /* Apilar verticalmente */
        align-items: flex-start;
		gap: 10px;
    }
    
    .card-action {
        width: 100%;
        /*margin-top: 10px;
        padding-top: 15px;
        border-top: 1px dashed #ddd;*/
    }
    
    .btn-ruta-pill {
        width: calc(100% - 40px);
        justify-content: center;
    }
}

/* RESPONSIVE GENERAL INFO PRÁCTICA */
@media (max-width: 768px) {
    .item-detalle { 
        flex-direction: column; 
        gap: 10px;
        padding: 20px 0;
    }
    .item-detalle .titular, 
    .item-detalle .contenido,
    .item-detalle.highlight-warning .titular, 
    .item-detalle.highlight-warning .contenido { 
        width: 100%; 
        min-width: 0;
    }
    
    /* 1. FIX CLIMA: Quitamos los márgenes gigantes laterales */
    .item-detalle .cond-climativas { 
        margin: 15px 0 0 0 !important; 
    }
    
    /* 2. FIX CAJA DESCUENTO: Ajuste del % y evitamos desborde */
    .detalle-descuento-box {
        flex-direction: column;
        text-align: center;
        gap: 5px !important; /* Juntamos mucho el icono % y el título */
        align-items: center; 
    }
    .detalle-icon-desc {
        line-height: 1; /* Eliminamos márgenes fantasma del icono */
    }
    .aviso-residente {
        text-align: left; 
        width: 100%;
        box-sizing: border-box; 
        margin-top: 20px; /* Le devolvemos su espacio a la caja de info para que siga quedando bien */
    }
    
    /* 3. FIX PRECIOS: Diseño Premium para las etiquetas en móvil */
    .precio-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
        width: 100%;
    }
    .precio-main {
        display: flex;
        justify-content: space-between; /* Separa título a la izq y precio a la der */
        width: 100%;
    }
    .precio-badge {
        width: 100%;
        justify-content: center; /* Centra el texto de "Tú llevas el control" */
        box-sizing: border-box;
        padding: 8px 10px;
    }
}

/* =========================================
   7. RESEÑAS
   ========================================= */
.reviews-header-modern.split-style {
    display: flex; justify-content: space-between; align-items: center;
    padding: 0 2rem 1rem; flex-wrap: wrap; gap: 20px;
}
.reviews-header-modern.split-style p { margin:0; }
.header-left { display: flex; align-items: center; gap: 25px; }
.score-big { font-size: 3.5rem; font-weight: 700; color: #333; line-height: 1; }
.stars-header.gold-stars i { color: #fbbc04; font-size: 1.3rem; margin-right: 3px; }
.badge-excelente { font-weight: 600; font-size: 1.1rem; color: #333; text-transform: uppercase; }
.header-right { display: flex; flex-direction: column; align-items: center; gap: 15px; }
.btn-write-review { display: inline-block; padding: 10px 20px; background: #fff; color: #1a73e8; border: 1px solid #dadce0; border-radius: 1rem; text-decoration: none; font-weight: 500; transition: background 0.2s; }

/* Wrapper principal del Slider */
.reviews-slider-wrapper { 
    position: relative; 
    padding: 20px 0;
}

/* Container del Swiper */
.tour-reviews-slider {
    overflow: hidden !important; 
    padding: 5px 20px !important; 
    margin: -15px; 
}

/* FLECHAS RESEÑAS */
.review-nav-btn {
    width: 30px !important; height: 30px !important;
    background: #fff !important; border: 2px solid #e0e0e0 !important;
    border-radius: 1rem !important;
    box-shadow: 0 4px 10px rgba(0,0,0,0.05) !important;
    position: absolute; 
    top: 170px !important; 
    transform: none !important; 
    z-index: 100;
    display: flex; align-items: center; justify-content: center; transition: all 0.2s;
}
.review-nav-btn::after { content: '' !important; width: 15px; height: 15px; background-repeat: no-repeat; background-position: center; background-size: contain; }
.swiper-button-prev.review-nav-btn  { left: 0px !important; }
.swiper-button-prev.review-nav-btn::after{ background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke-width='2.5' stroke='%23555'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' d='M15.75 19.5L8.25 12l7.5-7.5' /%3E%3C/svg%3E"); }
.swiper-button-next.review-nav-btn { right: 0px !important; }
.swiper-button-next.review-nav-btn::after { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke-width='2.5' stroke='%23555'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' d='M8.25 4.5l7.5 7.5-7.5 7.5' /%3E%3C/svg%3E"); }

.review-nav-btn:hover { border-color: #fbbc04 !important; }
.swiper-button-prev.review-nav-btn:hover::after{ background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke-width='2.5' stroke='%23000'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' d='M15.75 19.5L8.25 12l7.5-7.5' /%3E%3C/svg%3E"); }
.swiper-button-next.review-nav-btn:hover::after{ background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke-width='2.5' stroke='%23fbbc04'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' d='M8.25 4.5l7.5 7.5-7.5 7.5' /%3E%3C/svg%3E"); }
.review-nav-btn.swiper-button-disabled { display: none !important; opacity: 0; pointer-events: none; }

/* Altura independiente (no estira vecinos) */
.tour-reviews-slider .swiper-wrapper { align-items: flex-start; }
.tour-reviews-slider .swiper-slide { height: auto; display: flex; }

.review-card {
    border: 1px solid #ddd; border-radius: 1rem; padding: 25px;
    background: #fff; display: flex; flex-direction: column;
    position: relative; transition: all 0.3s ease; margin: .3rem 0;
    min-height: 240px;      
    width: 100%;
}
.review-card:hover { 
    border-color: #fbbc04; transform: translateY(-5px); box-shadow: 0 10px 20px rgba(0,0,0,0.08); 
}

.review-top { display: flex; align-items: center; gap: 15px; margin-bottom: .2rem; position: relative; }
.review-avatar-img, .review-avatar { width: 45px; height: 45px; border-radius: 50%; object-fit: cover; }
.review-avatar { color: white; display: flex; align-items: center; justify-content: center; font-size: 20px; line-height: 1; }
.g-icon-small { width: 24px !important; height: 24px !important; position: absolute; top: 0; right: 0; }

.review-meta { flex: 1; display: flex; flex-direction: column; line-height: 1.2rem; }
.review-stars { text-align: left; margin-bottom: 12px; display: flex; align-items: center; gap: 4px; }
.star-gold { color: #fbbc04; font-size: 1.1rem; }
.star-gray { color: #e0e0e0; font-size: 1.1rem; }

.review-body { flex: 1; text-align: left; z-index: 2; position: relative; }
.review-text-content { font-size: 0.95rem; color: #444; line-height: 1.6; }
.review-text-content.truncated { display: -webkit-box; -webkit-line-clamp: 4; -webkit-box-orient: vertical; overflow: hidden; }
.btn-read-more { display: inline-block; margin-top: 8px; color: #999; font-size: 0.9rem; cursor: pointer;  }
.btn-read-more:hover { color: #000; text-decoration: underline; }


.quote-mark { display: none; }
.review-card:after {
    content: ""; position: absolute; right: 1rem; bottom:1rem; transform: rotate(200deg);
    width: 2rem; height: 2rem;
    -webkit-mask: url(https://cdn.trustindex.io/assets/icon/ti-quote.svg) no-repeat center / contain;
    mask: url(https://cdn.trustindex.io/assets/icon/ti-quote.svg) no-repeat center / contain;
    background: #c6ad72; opacity: 0.5; pointer-events: none;
}

.dots-pagination { position: relative !important; margin-top: 25px; text-align: center; }
.dots-pagination .swiper-pagination-bullet { width: 10px; height: 10px; background: #ccc; opacity: 0.4; margin: 0 6px; cursor: pointer !important;  }
.dots-pagination .swiper-pagination-bullet:hover { background: #fbbc04; opacity: 1; }
.dots-pagination .swiper-pagination-bullet-active { background: #fbbc04 !important; opacity: 1; transform: scale(1.3); }

@media (max-width: 600px) {
    /* CORRECCIÓN FINAL: ENCABEZADO RESEÑAS MÓVIL CENTRADO Y APILADO */
    .reviews-header-modern.split-style { 
        flex-direction: column; 
        align-items: center; 
        text-align: center; 
        justify-content: center;
    }
    
    .header-left { 
        width: 100%;
        flex-direction: column; 
        align-items: center;
        justify-content: center; 
        gap: 5px; 
    }
    
    /* Pone el texto "Excelente" grande y debajo de las estrellas */
    .badge-excelente { 
        font-size: 1.4rem; 
        color: #fbbc04; /* Color dorado */
        display: block; 
        margin-top: 5px;
        /*font-weight: 800;*/
    }
    
    .reviews-slider-wrapper { padding: 20px 0; margin: 0; }
    .review-nav-btn { display: flex !important; } 
    
    /* Flechas dentro en móvil */
    .swiper-button-prev.review-nav-btn { left: -5px !important; }
    .swiper-button-next.review-nav-btn { right: -5px !important; }
}


.relacionados {margin-top: 3rem; padding-top: 3rem; border-top: 1px solid #ddd;}
.relacionados h2 {text-align: center;/* margin-bottom: 2rem;*/}


/* =========================================
   8. STICKY MOBILE BAR & RESPONSIVE FINAL
   ========================================= */
.sticky-book-bar { display: none; }

@media (max-width: 768px) {
    .sticky-book-bar { 
        position: fixed; bottom: -120px; left: 0; width: 100%; 
        background: white; box-shadow: 0 -4px 15px rgba(0,0,0,0.1); 
        padding: 12px 20px; display: flex; justify-content: space-between; align-items: center; 
        z-index: 99999; transition: bottom 0.4s ease-in-out; border-top: 2px solid #fed21d; 
    }
    .sticky-book-bar.visible { bottom: 0; }
    .sticky-info { display: flex; flex-direction: column; }
    .sticky-price { /*font-weight: 800;*/ font-size: 1.2rem; color: #333; }
    .sticky-label { font-size: 0.75rem; color: #e67e22; font-weight: bold; text-transform: uppercase; }
    .btn-reservar-mobile { 
        background: #fed21d; color: black; border: none; padding: 12px 25px; 
        font-weight: bold; text-transform: uppercase; border-radius: 1rem; 
    }
    
    .single-nuestros_tours #primary, .single-alquiler_flota  #primary  { flex-direction: column; }
    .single-nuestros_tours .columna-1, .single-nuestros_tours .columna-2, .single-alquiler_flota .columna-1, .single-alquiler_flota .columna-2 { width: 100%; }
    .single-nuestros_tours .columna-2, .single-alquiler_flota .columna-2 { position: static; top: auto; margin-top: 30px; }
	

	

}


/* =========================================
   9. FAQS GENERALES (LISTADO)
   ========================================= */
details.faq-item-general {
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 1rem;
    margin-bottom: 15px;
    overflow: hidden;
}
details.faq-item-general summary {
    padding: 15px;
    font-weight: 600;
    cursor: pointer;
    background: #f9f9f9;
    position: relative;
    list-style: none; 
}
details.faq-item-general summary::-webkit-details-marker { display: none; }
details.faq-item-general summary::marker { display: none; content: ""; }

details.faq-item-general summary::after {
    content: '+'; position: absolute; right: 20px; font-size: 20px; color: #fed21d; top: 50%; transform: translateY(-50%); font-family: sans-serif; font-weight: bold;
}
details.faq-item-general[open] summary::after { content: '-'; color: #333; }

details.faq-item-general .faq-respuesta-general {
    padding: 20px;
    border-top: 1px solid #ddd;
    color: #555;
}


/* =========================================
   10. LISTADO LIMPIO NARRATIVO (HELPERS)
   ========================================= */

/* Caja Descuento (Verde) - Repetida para seguridad */
.detalle-descuento-box {
    background: #f0fff4; 
    border: 1px dashed #28a745;
    padding: 20px 25px;
    border-radius: 1rem;
    display: flex;
    align-items: center;
    gap: 20px;
    margin-top: 10px;
}

/* MARGIN GENERAL */
.m-0 { margin: 0 !important; }
.m-1 { margin: .25rem !important; }
.m-2 { margin: .5rem !important; }
.m-3 { margin: 1rem !important; }
.m-4 { margin: 1.5rem !important; }
.m-5 { margin: 3rem !important; }

/* PADDING GENERAL */
.p-0 { padding: 0 !important; }
.p-1 { padding: .25rem !important; }
.p-2 { padding: .5rem !important; }
.p-3 { padding: 1rem !important; }
.p-4 { padding: 1.5rem !important; }
.p-5 { padding: 3rem !important; }

/* MARGIN TOP */
.mt-0 { margin-top: 0 !important; }
.mt-1 { margin-top: .25rem !important; }
.mt-2 { margin-top: .5rem !important; }
.mt-3 { margin-top: 1rem !important; }
.mt-4 { margin-top: 1.5rem !important; }
.mt-5 { margin-top: 3rem !important; }

/* MARGIN BOTTOM */
.mb-0 { margin-bottom: 0 !important; }
.mb-1 { margin-bottom: .25rem !important; }
.mb-2 { margin-bottom: .5rem !important; }
.mb-3 { margin-bottom: 1rem !important; }
.mb-4 { margin-bottom: 1.5rem !important; }
.mb-5 { margin-bottom: 3rem !important; }

/* MARGIN LEFT */
.ml-0 { margin-left: 0 !important; }
.ml-1 { margin-left: .25rem !important; }
.ml-2 { margin-left: .5rem !important; }
.ml-3 { margin-left: 1rem !important; }
.ml-4 { margin-left: 1.5rem !important; }
.ml-5 { margin-left: 3rem !important; }

/* MARGIN RIGHT */
.mr-0 { margin-right: 0 !important; }
.mr-1 { margin-right: .25rem !important; }
.mr-2 { margin-right: .5rem !important; }
.mr-3 { margin-right: 1rem !important; }
.mr-4 { margin-right: 1.5rem !important; }
.mr-5 { margin-right: 3rem !important; }

/* PADDING TOP */
.pt-0 { padding-top: 0 !important; }
.pt-1 { padding-top: .25rem !important; }
.pt-2 { padding-top: .5rem !important; }
.pt-3 { padding-top: 1rem !important; }
.pt-4 { padding-top: 1.5rem !important; }
.pt-5 { padding-top: 3rem !important; }

/* PADDING BOTTOM */
.pb-0 { padding-bottom: 0 !important; }
.pb-1 { padding-bottom: .25rem !important; }
.pb-2 { padding-bottom: .5rem !important; }
.pb-3 { padding-bottom: 1rem !important; }
.pb-4 { padding-bottom: 1.5rem !important; }
.pb-5 { padding-bottom: 3rem !important; }

/* PADDING LEFT */
.pl-0 { padding-left: 0 !important; }
.pl-1 { padding-left: .25rem !important; }
.pl-2 { padding-left: .5rem !important; }
.pl-3 { padding-left: 1rem !important; }
.pl-4 { padding-left: 1.5rem !important; }
.pl-5 { padding-left: 3rem !important; }

/* PADDING RIGHT */
.pr-0 { padding-right: 0 !important; }
.pr-1 { padding-right: .25rem !important; }
.pr-2 { padding-right: .5rem !important; }
.pr-3 { padding-right: 1rem !important; }
.pr-4 { padding-right: 1.5rem !important; }
.pr-5 { padding-right: 3rem !important; }

.nowrap {white-space: nowrap}



/* =========================================
   ESTILOS LANDING MOTO (V6 - H1 FUERA)
   ========================================= */


/* 2. HERO SECTION (Caja Flotante) */
.moto-hero {
    position: relative; 
    display: flex;
    align-items: center; /* Centrado vertical */
    justify-content: flex-start; /* Caja a la izquierda */
    padding-left: 50px; /* Margen izq para la caja */
    min-height: 500px; /* Altura mínima en PC */
    border-radius: .5rem;
    overflow: hidden; 
    margin-bottom: 1rem;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

/* LA IMAGEN DE FONDO (HTML) */
.hero-bg-img {
    position: absolute;
    top: 0; left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover; /* Recorta para llenar, pero queda bien en PC */
    z-index: 0;
}

/* La Caja Negra Semitransparente */
.moto-hero-box {
position: relative;
    z-index: 10;
    background: rgba(0, 0, 0, 0.75); 
    backdrop-filter: blur(8px); 
    padding: 35px;
    border-radius: 1rem;
    max-width: 480px; 
    color: #fff;
    border: 1px solid rgba(255,255,255,0.15);
    box-shadow: 0 15px 35px rgba(0,0,0,0.3);
    text-align: center;
    margin: 40px 0 /* Margen vertical seguro */
}

/* Precio Destacado en Hero (Grande) */
.hero-price-tag {
    font-size: 2.5rem;
    /*/*font-weight: 800;*/*/
    color: #fed21d; /* Amarillo */
    margin: 1rem 0;
    line-height: .7rem;
    /*display: flex;
    align-items: baseline; gap: 10px;*/ 
    
}
.hero-price-tag span.precios { 
    font-size: 4rem; 
}
.hero-price-tag span.euro { 
    font-size: 1rem; 
}
.hero-price-tag span.impuesto { 
    font-size: 1rem; font-weight: 500; color: #fff; opacity: 0.9; 
    text-transform: uppercase; letter-spacing: 0.5px;
}

.hero-sub {
    font-size: 1.15rem;
    margin-bottom: 1rem !important;
    
    color: #ddd;
    line-height: 1.4;
}

/* BOTÓN CTA EN HERO */
.btn-hero-action {
    display: inline-block;
    background-color: #fed21d; /* Amarillo corporativo */
    color: #000;
    font-weight: 700;
    text-transform: uppercase;
    padding: 12px 30px;
    border-radius: 1rem;
    text-decoration: none;
    font-size: 1rem;
    transition: all 0.3s ease;
    /*box-shadow: 0 4px 15px rgba(255, 204, 0, 0.4);*/
    letter-spacing: 0.5px;
}

.btn-hero-action:hover {
    background-color: #fff; /* Al pasar el ratón se pone blanco */
    color: #000;
    /*transform: translateY(-3px);
    /*box-shadow: 0 6px 20px rgba(255, 255, 255, 0.3);/*/
}

.btn-hero-action i {
    margin-left: 8px;
    font-size: 1.1rem;
    vertical-align: middle;
}

/* Ajuste para móvil para que ocupe todo el ancho si quieres */
@media (max-width: 768px) {
    .btn-hero-action {
        width: auto !important; 
        display: inline-block !important;
    }
}


/* Badges (Iconos) */
.hero-badges {
    display: flex; justify-content: center; gap: 10px; flex-wrap: wrap; margin:0;
}
.hero-badge {
    background: rgba(255, 255, 255, 0.15); 
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #fff;
    padding: 6px 12px;
    border-radius: 1rem;
    font-weight: 600;
    font-size: 0.85rem;
    display: flex; align-items: center; gap: 6px;
}
.hero-badge i { color: #fed21d; }

/* Ajustes Hero Móvil */
@media (max-width: 1024px) {
.moto-hero { 
        display: flex;
        flex-direction: column; /* Apilar elementos verticalmente */
        min-height: auto; /* La altura ya no es fija */
        padding: 0; /* Quitamos padding lateral */
        background: #1a1a1a; /* Fondo oscuro para la parte de abajo */
    }

    /* La imagen en móvil */
    .hero-bg-img {
position: relative; /* Ya no es absoluta, ocupa su espacio */
        width: 100%;
        height: 350px; /* Altura fija para ver bien la foto */
        border-radius: .5rem .5rem 0 0; /* Redondeado solo arriba */
        object-fit: cover;
    }
	/* Aseguramos que el wrapper picture no tenga tamaño propio que moleste */
.hero-picture-wrapper {
    display: contents; /* Hace que el wrapper sea invisible al DOM visualmente */
}

/* Y aseguramos que la imagen siga comportándose bien */
.hero-bg-img {
    /* Esto ya lo tenías, pero confirmamos que afecte a la IMG dentro de PICTURE */
    width: 100%;
    height: 100%;
    object-fit: cover;
}

    /* La caja en móvil */
    .moto-hero-box { 
width: 100%;
        max-width: 100%; /* Ocupa todo el ancho */
        margin: 0; 
        border-radius: 0 0 .5rem .5rem; /* Redondeado solo abajo */
        background: transparent; /* Ya no necesita fondo propio, usa el del padre */
        box-shadow: none;
        border: none;
        padding: 30px 20px;
    }
    .hero-price-tag { justify-content: center; }
    .hero-sub { text-align: center; }
    .hero-badges { justify-content: center; }
}



@media (max-width: 1024px) {
    /* El contenedor principal se convierte en columna */
    .moto-hero { 
        display: flex;
        flex-direction: column !important; /* Apilar verticalmente */
        height: auto !important;
        min-height: auto !important;
        background: transparent !important; 
        padding: 0 !important;
        border: none !important;
        margin-bottom: 2rem; /* Espacio extra abajo */
    }

    /* La imagen ocupa su espacio arriba */
    .hero-bg-img {
        position: relative !important; 
        width: 100% !important;
        height: 350px !important; /* Altura de la foto */
        object-fit: cover;
        border-radius: 1rem 1rem 0 0 !important; /* Redondeado solo arriba */
        z-index: 1;
    }
    
    /* Wrapper picture (corrección técnica) */
    .hero-picture-wrapper {
        display: contents; 
    }

    /* La caja de texto se convierte en un bloque sólido DEBAJO */
    .moto-hero-box {
        position: relative !important; 
        width: 100% !important;
        max-width: 100% !important;
        margin: 0 !important;
        border-radius: 0 0 .5rem .5rem !important; /* Redondeado solo abajo */
        background: #111 !important; /* FONDO NEGRO SÓLIDO */
        padding: 30px 20px !important;
        box-shadow: 0 10px 20px rgba(0,0,0,0.1) !important;
        top: 0 !important; /* Asegura que no flote */
        left: 0 !important;
    }
    
    /* Centramos textos en móvil */
    .hero-price-tag { justify-content: center; }
    .hero-sub { text-align: center; }
    .hero-badges { justify-content: center; }
    .btn-hero-action { width: 100%; display: block; text-align: center; }
}
/* Ajuste específico móvil muy pequeño */
@media (max-width: 600px) {
    .hero-bg-img { height: 250px; } /* Un poco menos alto en móviles */
}

/* Ajuste de Badges (Iconos) para que quepan en 1 línea en móvil */
@media (max-width: 480px) {
    .hero-badges {
        gap: 5px !important; /* Reduce el espacio entre las pastillas */
    }
    .hero-badge {
        font-size: 11px !important; /* Reduce un puntito la letra */
        padding: 4px 6px !important; /* Reduce el espacio negro interior */
        letter-spacing: -0.2px; /* Junta las letras milimétricamente */
        white-space: nowrap; /* Evita que el texto de una pastilla se parta */
    }
}

/* =======================================================
   2. FIX PRECIOS MOBILE: VERTICAL (Uno debajo de otro)
   ======================================================= */
@media (max-width: 850px) {
    .pricing-cards-wrapper {
        display: flex !important;
        flex-direction: column !important; /* Columna vertical */
        align-items: center !important;
        gap: 20px !important; /* Espacio entre tarjetas */
        padding-bottom: 0 !important;
        overflow-x: visible !important; /* Quitamos scroll lateral */
    }

    .p-card {
        width: 100% !important; 
        max-width: 300px !important; /* AQUÍ ESTÁ LA MAGIA: Topamos el ancho */
        margin: 0 auto !important;   /* Y la centramos */
        box-shadow: 0 4px 10px rgba(0,0,0,0.08) !important;
    }
    
    .p-card.popular {
        margin-top: 10px !important; 
        margin-bottom: 10px !important; /* Le damos aire también por abajo */
    }
}


/* =========================================
   FIX UX MÓVIL: QUITAR HOVER Y BOTONES FLOTANTES
   ========================================= */

@media (max-width: 992px) {
    /* 1. QUITAR EFECTO "SUBIDA" AL TOCAR TARJETAS */
    .p-card:hover, 
    .p-card.popular:hover, 
    .tour-box:hover,
    .btn-hero-action:hover {
        transform: none !important; /* Se queda quieto */
        box-shadow: 0 5px 15px rgba(0,0,0,0.05) !important; /* Mantiene sombra original */
        border-color: #e0e0e0 !important; /* Borde original */
    }
	
    
    /* Excepción: Si quieres mantener el borde amarillo en la popular */
    .p-card.popular:hover {
        border-color: #fed21d !important;
    }
    
    /* 2. EMPUJAR BOTONES FLOTANTES CUANDO SALE EL STICKY */
    /* Cuando el body tiene la clase especial, subimos los iconos */
    body.has-sticky-bar .whatsapp-float,
    body.has-sticky-bar #ast-scroll-top {
        bottom: 90px !important; /* Sube para esquivar la barra (ajusta si hace falta) */
        transition: bottom 0.3s ease-in-out; /* Animación suave */
    }
    
    /* Estado normal (cuando no hay barra) para asegurar transición suave al bajar */
    .whatsapp-float,
    #ast-scroll-top {
        transition: bottom 0.3s ease-in-out;
    }
}


/* =========================================
   3. GALERÍA INTELIGENTE (SIEMPRE 1 FILA)
   ========================================= */

.moto-gallery-grid {
    display: grid;
    /* POR DEFECTO (PC Grande): 6 Columnas = 6 Fotos en 1 fila */
    grid-template-columns: repeat(6, 1fr); 
    gap: 10px;
    margin-bottom: 40px;
}

.moto-gallery-item {
    border-radius: .5rem;
    overflow: hidden;
    height: 130px; /* Altura estándar */
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    cursor: pointer;
    display: block; 
    position: relative;
}

.moto-gallery-item img { 
    width: 100%; 
    height: 100%; 
    object-fit: cover; 
    
    /* AÑADIDO: 'filter' a la transición para que el oscurecido sea suave */
    transition: transform 0.5s ease, filter 0.5s ease; 
}

.moto-gallery-item:hover img { 
    transform: scale(1.1); 
    
    /* AÑADIDO: Esto oscurece la foto al 50% de su brillo original */
    filter: brightness(0.5); 
}

.moto-gallery-item::after { 
    content: '\F52A'; font-family: 'bootstrap-icons'; 
    position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); 
    color: #fff; font-size: 1.5rem; opacity: 0; transition: opacity 0.3s; 
    pointer-events: none; text-shadow: 0 2px 4px rgba(0,0,0,0.8);
}
.moto-gallery-item:hover::after { opacity: 1; }


/* --- ADAPTACIÓN TABLET (Hasta 1024px) --- */
/* Queremos que se vea bien, así que bajamos a 4 fotos para que no sean enanas */
@media (max-width: 1024px) { 
    .moto-gallery-grid { 
        grid-template-columns: repeat(4, 1fr); /* 4 Columnas */
    }
    
    /* Ocultamos la foto 5 y 6 para que no salten de línea */
    .moto-gallery-item:nth-child(n+5) {
        display: none; 
    }
}

/* --- ADAPTACIÓN MÓVIL (Hasta 600px) --- */
/* Bajamos a 3 fotos para que tengan un tamaño decente en vertical */
@media (max-width: 600px) { 
    .moto-gallery-grid { 
        grid-template-columns: repeat(3, 1fr); /* 3 Columnas */
    } 

    /* Ocultamos de la 4 en adelante */
    .moto-gallery-item:nth-child(n+4) {
        display: none; 
    }
    
    .moto-gallery-item { height: 110px; } /* Ajuste de altura en móvil */
}

/* --- 4. SPECS & LEMA --- */
.single-alquiler_flota .lema {
    margin-bottom: 2rem;
}
.single-alquiler_flota .lema h2,
.single-alquiler_flota .lema p {
    text-align: center;
}

.specs-container {
    display: grid; grid-template-columns: repeat(4, 1fr); gap: 15px; margin-bottom: 25px;
}
@media (max-width: 768px) { .specs-container { grid-template-columns: repeat(2, 1fr); } }

.spec-box {
    background: #f8f9fa; padding: 15px; border-radius: 1rem; text-align: center;
    border: 1px solid #ddd; /*box-shadow: 0 2px 8px rgba(0,0,0,0.03); transition: transform 0.3s;*/
}
/*.spec-box:hover { transform: translateY(-3px); border-color: #fed21d; }*/
.spec-box i { font-size: 1.8rem; color: #fed21d; margin-bottom: 5px; display: block; }
.spec-box h3 { margin: 5px 0 0 0; font-size: 1rem; color: #333; font-weight: 700; }
.spec-box p { margin: 0; color: #666; font-size: 0.85rem; }
/*

.spec-box {
    background: #f8f9fa;
    padding: 15px;
    border-radius: 1rem;
    text-align: center;
    border: 1px solid #ddd;
}
.spec-box i { font-size: 1.8rem; color: #fed21d; display: block; margin-bottom: 5px; }
.spec-box h4 { margin: 5px 0 0 0; font-size: 1rem; color: #333; }
.spec-box p { margin: 0; color: #666; font-size: 0.85rem; }*/

/* --- 5. PRECIOS (3 EN LINEA) --- */
.pricing-highlight-section {    margin: 2.5rem 0 4rem;}
.pricing-intro { text-align: center; margin-bottom: 2rem; }
.pricing-intro h3 { font-size:1.5rem; margin-top:0;}
.pricing-cards-wrapper {
    display: flex; justify-content: center; align-items: stretch;
    gap: 1.5rem; flex-wrap: nowrap; margin-bottom: 30px;
}
@media (max-width: 850px) { .pricing-cards-wrapper { flex-wrap: wrap; } }



.p-card {
    background: #fff; border: 1px solid #ddd; border-radius: 1rem;
    flex: 1; min-width: 200px; padding: 20px; max-width: 300px; text-align: center; position: relative;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05); transition: transform 0.3s;
    display: flex; flex-direction: column; justify-content: space-between; text-decoration:none;
}
.p-card:hover { transform: translateY(-1rem); border-color: #aaa; }
.p-card.popular {
    border: 2px solid #fed21d; background: #fffdf5; transform: scale(1.03); z-index: 2;
}
.p-card.popular:hover { transform: scale(1.03) translateY(-1rem); }
.ribbon {
    position: absolute; top: -10px; left: 50%; transform: translateX(-50%);
    background: #fed21d; color: #000; padding: 4px 12px; border-radius: 1rem;
    /*font-weight: 800;*/ font-size: 0.7rem; text-transform: uppercase;
}
.p-title { font-size: 1.1rem; font-weight: 700; color: #555; }
.p-price { font-size: 3rem; font-weight: 700; color: #333; line-height: 1; margin: 10px 0; }
.p-euro { font-size: 1.5rem; font-weight: normal; font-weight: 700; }
.p-unit { font-size: 0.8rem; color: #999; font-weight: normal; }
.p-total { font-size: 0.85rem; color: #777; display: block; margin-bottom: 15px; }
.p-desc { font-size: 0.85rem; color: #666; margin-bottom: 15px; border-top: 1px solid #ddd; padding-top: 10px; }
.btn-select {
    display: block; /*width: 100%;*/ padding: 10px; border-radius: 1rem;
    text-decoration: none; font-weight: 700; font-size: 0.9rem;
    background: #333; color: #fff; transition: background 0.3s; text-transform: uppercase;
}
.popular .btn-select { background: #fed21d; color: #000; }
.p-card:hover .btn-select { color: #000; background: #fed21d; }
.p-card.popular:hover .btn-select { background: #333; color: #fff; }

/* Tabla Precios */
h4.price-list { text-align: center;
    color: #666;
    margin: 3rem auto 1rem;}
.full-price-list { width: 100%; border-collapse: collapse; font-size: 0.9rem; margin-bottom: 20px; }
.full-price-list th { text-transform: uppercase; background: #f4f4f4; padding: 10px; text-align: center; }
.full-price-list td { border-bottom: 1px solid #ddd; padding: 8px; text-align: center; }
.full-price-list tr.three-days {background-color:#fffdf5; }
.full-price-list tr.seven-days {
    background-color: #f0fff4; 
}
.full-price-list tr.seven-days td { 
    border-bottom: 1px solid #D1D5DB; 
}



/* --- 6. REQUISITOS & LISTAS --- */
.requirements-box {
    background-color: #fff9e6; border-left: 4px solid #fed21d;
    padding: 20px; border-radius: 1rem; margin-bottom: 20px;
}
.requirements-box h3 { margin-top: 0; color: #b38f00; font-size: 1.1rem; display: flex; align-items: center; gap: 8px; }
.requirements-box ul { padding-left: 20px; margin-bottom: 10px; }
.requirements-box li { margin-bottom: 5px; }

.lists-wrapper { display: grid; grid-template-columns: 1fr; gap: 20px; margin-bottom: 30px; }
@media(min-width:768px){ .lists-wrapper { grid-template-columns: 1fr 1fr; } }
.check-list ul, .cross-list ul { list-style: none; padding: 0; }
.check-list li, .cross-list li { margin-bottom: 8px; padding-left: 25px; position: relative; }
.check-list li:before { content: '✔'; position: absolute; left: 0; color: #28a745; font-weight: bold; }
.cross-list li:before { content: '✖'; position: absolute; left: 0; color: #dc3545; font-weight: bold; }

/* --- 7. MAPA & FAQS --- */
.location-card {
    background: #fff; border: 1px solid #ddd; border-radius: 1rem; overflow: hidden;
    margin-bottom: 30px; display: flex; flex-wrap: wrap; box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}
.loc-content { padding: 25px; flex: 1; min-width: 280px; }
.loc-map-frame { flex: 1; min-width: 280px; min-height: 250px; }
.loc-title { display: flex; align-items: center; gap: 10px; margin-bottom: 10px; }
.loc-title i { font-size: 1.4rem; color: #fed21d; }
.btn-map {
    display: inline-block; background: #fff; border: 1px solid #333; color: #333;
    padding: 8px 18px; border-radius: 1rem; text-decoration: none; font-weight: bold; font-size: 0.85rem; margin-top: 15px;
}
.btn-map:hover { background: #333; color: #fff; }

.moto-faq details { background: #fcfcfc; border-bottom: 1px solid #ddd; padding: 15px; margin-bottom: 5px; }
.moto-faq summary { font-weight: 600; cursor: pointer; outline: none; }
.moto-faq p { margin-top: 10px; color: #666; font-size: 0.95rem; }



/* =========================================
   FOOTER CLICK & QUADS - FINAL (ALINEACIÓN PERFECTA)
   ========================================= */

/* --- ESTRUCTURA --- */
.cq-site-footer {
    background-color: #121212;
    color: #e2e8f0;
    padding: 60px 0 30px;
    font-size: 0.95rem;
    border-top: 4px solid #fed21d;
}

.cq-footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1.4fr 1.1fr 0.9fr; 
    gap: 40px;
}

/* --- LOGO Y TEXTO --- */
.cq-footer-logo {
    max-width: 250px;
    margin-bottom: 20px;
}
.cq-footer-desc p {
    margin-bottom: 25px;
    color: #a0aec0;
    line-height: 1.6;
}

/* --- CONTACTO (ALINEACIÓN CORREGIDA) --- */
.cq-contact-info { 
    list-style: none; 
    padding: 0; 
    margin: 0 0 25px 0; 
}

/* Elemento individual (Fila) */
.contact-item { 
    display: flex; 
    align-items: center; /* ESTO CENTRA EL ICONO CON EL TEXTO VERTICALMENTE */
    gap: 12px; 
    margin-bottom: 12px; 
}

/* Los Iconos generales */
.contact-item > i { 
    color: #fed21d; 
    font-size: 1.2rem;
    flex-shrink: 0; /* Evita que el icono se aplaste si falta espacio */
}

/* Enlaces de contacto */
.contact-item a { 
    color: #e2e8f0; text-decoration: none; transition: 0.3s; 
}
.contact-item a:hover { color: #fed21d; /*text-decoration: underline;/*/ }

/* --- FILA DE TELÉFONOS ESPECÍFICA --- */
.phones-row {
    flex-wrap: wrap; /* En móviles muy pequeños, que baje si hace falta */
    gap: 10px;
}

.phone-group {
    display: flex;
    align-items: center;
    gap: 6px; /* Espacio entre icono y numero */
}
.phone-group i {
    color: #fed21d;
    font-size: 1.1rem;
}

.sep-tel { color: #555; margin: 0 5px; }

/* --- REDES SOCIALES --- */
.cq-social-links { display: flex; gap: 12px; margin-top: 20px; }
.cq-social-links a {
    background: #2d3748; color: white;
    width: 36px; height: 36px;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    text-decoration: none; transition: 0.3s;
}
.cq-social-links a:hover {
    background: #fed21d; color: black; transform: translateY(-3px);
}

/* --- TÍTULOS Y LISTAS --- */
.cq-footer-heading {
    color: white; font-size: 1.1rem; font-weight: 700;
    margin-bottom: 20px; text-transform: uppercase; letter-spacing: 0.5px;
    display: flex; justify-content: space-between; align-items: center;
}
.cq-footer-links { list-style: none; padding: 0; margin: 0; }
.cq-footer-links li { margin-bottom: 12px; }
.cq-footer-links a { color: #cbd5e0; text-decoration: none; transition: 0.3s; display: block; }
.cq-footer-links a:hover { color: #fed21d; padding-left: 5px; }

/* Badge NUEVO */
.badge-new {
    background-color: #fed21d; color: #000;
    font-size: 0.65rem; padding: 1px 5px; border-radius: 3px;
    /*font-weight: 800;*/ margin-left: 6px; vertical-align: middle;
    text-transform: uppercase; display: inline-block;
}

/* --- BLOQUE SCOOTER --- */
.scooter-footer-block {
    margin-top: 25px;
    padding-top: 15px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}
.scooter-title {
    color: #a0aec0; font-size: 0.85rem; margin-bottom: 8px; font-weight: normal;
}
.btn-scooter-ghost {
    display: inline-flex; align-items: center; gap: 8px;
    background-color: transparent; 
    border: 1px solid #4a5568;    
    color: #e2e8f0 !important;
    padding: 8px 16px;
    border-radius: 6px;
    font-weight: 600;
    font-size: 0.9rem;
    text-decoration: none !important;
    transition: all 0.3s ease;
}
.btn-scooter-ghost:hover {
    border-color: #fed21d;
    color: #fed21d !important;
    background-color: rgba(255, 215, 0, 0.05);
}

/* --- BARRA LEGAL --- */
.cq-footer-bottom {
    border-top: 1px solid #2d3748; margin-top: 40px; padding-top: 20px;
    text-align: center; font-size: 0.85rem; color: #718096;
}
.cq-legal-links { display: flex; justify-content: center; gap: 15px; flex-wrap: wrap; }
.cq-legal-links a { color: #718096; text-decoration: none; }
.cq-legal-links a:hover { color: #e2e8f0; }

/* --- RESPONSIVE --- */
.mobile-only { display: none; }

@media (max-width: 768px) {
    .cq-footer-container { grid-template-columns: 1fr; gap: 15px; }
    .brand-col { text-align: center; margin-bottom: 20px; }
    
    /* En móvil centramos los items de contacto también */
    .contact-item { justify-content: center; }
    .phones-row { justify-content: center; }
    
    .cq-social-links { justify-content: center; }
    
    .mobile-only { display: block; transition: transform 0.3s; }
    .cq-footer-heading {
        background: #1f2937; padding: 12px 15px; border-radius: 6px; 
        margin-bottom: 5px; cursor: pointer;
    }
    .cq-footer-content-wrapper { max-height: 0; overflow: hidden; transition: max-height 0.3s ease-out; }
    .accordion-col.active .cq-footer-content-wrapper { margin-bottom: 20px; }
    .accordion-col.active .mobile-only { transform: rotate(180deg); }
}
/* Unificar encabezados de la página de contacto */
.info-card-modern h2, .map-header h2 {
    position: relative;
    padding-bottom: 15px;
    
    border-bottom: none !important; /* Quitamos el borde completo que tenías */
    /*font-weight: 700;*/
}

.info-card-modern h2::after, .map-header h2::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 60px; /* Línea corta estilo diseño */
    height: 4px;
    background-color: #fed21d;
    border-radius: 2px;
}

/* Para los títulos que van centrados (como el del mapa) */
.map-header h2 {
    text-align: center;
	margin-bottom: 25px;
}

.map-header h2::after{
    left: 50%;
    transform: translateX(-50%);
}


/* =========================================
   FAQ CSS FINAL - LAYOUT CON STICKY CORRECTO
   ========================================= */

.faq-bottom-cta {
    background: #fffdf5; /* Fondo amarillento muy suave */
    border: 1px solid #fed21d;
    border-radius: 12px;
    padding: 30px;
    text-align: center;
    margin-top: 40px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.03);
}
.faq-bottom-cta h3 { font-size: 1.4rem; color: #111; margin-top: 0; margin-bottom: 10px; }
.faq-bottom-cta p { font-size: 1rem; color: #555; line-height: 1.6; margin: 0; }



/* --- 1. LAYOUT GENERAL --- */
.cq-faq-layout {
    display: flex;
    gap: 40px;
    margin-bottom: 80px;
    margin-top: 40px;
    position: relative;
    
    /* CAMBIO CLAVE AQUÍ: */
    /* Quitamos 'align-items: flex-start' para que la columna
       lateral mida lo mismo que la de contenido. */
    align-items: stretch; 
}

/* --- 2. SIDEBAR (NAVEGACIÓN) --- */
.cq-faq-sidebar {
    flex: 0 0 260px; /* Ancho fijo en PC */
    z-index: 100;
    position: relative; /* Necesario para que el hijo sticky funcione */
}

/* CAJA QUE PERSIGUE (STICKY) */
.cq-sidebar-sticky {
    /* Aquí ocurre la magia: */
    position: -webkit-sticky; /* Safari */
    position: sticky;
    
    /* Ajusta este valor si tu cabecera tapa el menú.
       120px suele estar bien para dejar aire arriba */
    top: 120px; 
    
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 12px;
    padding: 25px;
    transition: all 0.3s ease;
    
    /* Aseguramos que no crezca más de la cuenta */
    max-height: calc(100vh - 140px);
    overflow-y: auto; /* Si el menú es muy largo, tendrá scroll interno */
    scrollbar-width: thin; /* Scrollbar fina */
}
/* Ocultar scrollbar fea del menú si aparece */
.cq-sidebar-sticky::-webkit-scrollbar { width: 6px; }
.cq-sidebar-sticky::-webkit-scrollbar-thumb { background-color: #ddd; border-radius: 10px; }



/* Título "ÍNDICE" de la barra lateral */
.cq-sidebar-sticky h2 {
    font-size: 1.1rem;
    margin: 0 0 20px 0;
    padding: 0 0 12px 0; /* Espacio para la línea */
    text-transform: uppercase;
    color: #111;
    border-bottom: none !important; /* Quitamos la línea fina larga */
    position: relative; /* Necesario para la línea mágica */
}

.cq-sidebar-sticky h2::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 40px; /* Línea un poco más corta por ser un título pequeño */
    height: 4px; /* Gordita */
    background-color: #fed21d;
    border-radius: 2px;
}

.cq-sidebar-sticky ul { list-style: none; padding: 0; margin: 0; }
.cq-sidebar-sticky li { margin-bottom: 5px; }

.cq-sidebar-sticky a {
    text-decoration: none; color: #444;
    font-weight: 600; font-size: 0.95rem;
    display: block; padding: 10px 15px;
    border-radius: 8px; transition: all 0.2s ease;
}

.cq-sidebar-sticky a:hover,
.cq-sidebar-sticky a.active {
    background: #fafafa;
    color: #000;
    border-left: 4px solid #fed21d;
    padding-left: 11px;
}

/* --- 3. CONTENIDO (DERECHA) --- */
.cq-faq-content-area { flex: 1; min-width: 0; }

.cq-faq-search { margin: 0 0 40px 0; position: relative; width: 100%; }
.cq-faq-search input {
    width: 100%; padding: 15px 20px 15px 50px;
    border: 1px solid #ddd; border-radius: 50px;
    font-size: 1rem; outline: none; transition: 0.3s;
}
.cq-faq-search input:focus { border-color: #fed21d; box-shadow: 0 4px 10px rgba(0,0,0,0.05); }
.cq-faq-search .bi-search {
    position: absolute; left: 20px; top: 50%;
    transform: translateY(-50%); color: #bbb;
}

/* Títulos */
/* Títulos (Ahora con el estilo corporativo de línea corta) */
.cq-faq-cat-title {
    font-size: 1.8rem; 
    margin: 40px 0 25px 0; /* Un poco más de margen inferior para que respire */
    padding: 0 0 15px 0;   /* Espacio para la nueva línea */
    color: #111; 
    font-weight: 600;
    scroll-margin-top: 180px; 
    border-bottom: none !important; /* Quitamos la línea larga y fea */
    position: relative; /* Necesario para la línea mágica */
}

/* La línea corta de diseño */
.cq-faq-cat-title::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 60px; /* El mismo ancho que en el resto de la web */
    height: 4px; /* Gordita y amarilla */
    background-color: #fed21d;
    border-radius: 2px;
}
.cq-faq-category-group:first-child .cq-faq-cat-title { margin-top: 0; }

/* Items (Cajas) */
.cq-faq-item {
    background: #fff; border: 1px solid #ddd;
    border-radius: 12px; margin-bottom: 15px; overflow: hidden;
    transition: all 0.3s ease;
}
.cq-faq-item[open] { border-color: #fed21d; box-shadow: 0 5px 15px rgba(0,0,0,0.05); }

.cq-faq-summary {
    list-style: none; padding: 20px 25px; cursor: pointer;
    display: flex; align-items: center; justify-content: space-between;
    background: #fff; 
}
.cq-faq-summary::-webkit-details-marker { display: none; }
.cq-faq-summary h3 {
    margin: 0; padding: 0; font-size: 1rem; font-weight: 700;
    color: #1e293b; padding-right: 20px; line-height: 1.4;
}
.cq-faq-summary::after {
    content: '+'; font-size: 1.8rem; font-weight: 400; color: #fed21d;
    line-height: 1; margin-left: auto; transition: transform 0.3s ease;
}
.cq-faq-item[open] .cq-faq-summary::after {
    content: '-'; transform: rotate(180deg); color: #000; 
}
.cq-faq-answer {
    padding: 0 25px 25px 25px; color: #666; line-height: 1.6; border-top: 1px solid #f9f9f9; 
}

#cqNoResults {
    background: #f9f9f9; padding: 20px; border-radius: 12px;
    text-align: center; margin-top: 20px; color: #666; border: 1px dashed #ddd;
}

/* --- MÓVIL (TRANSFORMACIÓN A APP) --- */
@media (max-width: 992px) {
    .cq-faq-layout { 
        flex-direction: column; 
        gap: 20px; margin-top: 0; 
        align-items: flex-start; /* En móvil sí reseteamos esto */
    }

    /* BARRA HORIZONTAL STICKY */
    .cq-faq-sidebar {
        flex: none;
        position: sticky; 
        top: 70px; 
        background: #fff;
        box-shadow: 0 5px 15px rgba(0,0,0,0.05);
        z-index: 105; 
        
        /* 🚀 EL TRUCO MÁGICO: Romper la caja para llegar de borde a borde de la pantalla */
        width: 100vw !important;
        margin-left: calc(-50vw + 50%) !important;
        margin-right: calc(-50vw + 50%) !important;
        
        /* Padding interior para que los botones respiren y no toquen el borde del teléfono */
        padding: 12px 20px; 
    }

    /* --- BARRA HORIZONTAL STICKY MÓVIL (TABS IGUALES Y SIN RECORTES) --- */
    .cq-faq-sidebar {
        width: 100%; flex: none;
        position: sticky; top: 70px; 
        background: #fff;
        padding: 10px 0;
        box-shadow: 0 5px 15px rgba(0,0,0,0.05);
        margin: 0 -20px; 
        width: calc(100% + 40px);
        padding-left: 15px; padding-right: 15px; /* Menos margen lateral para dar más espacio a los botones */
        z-index: 105; 
    }

    .cq-sidebar-sticky {
        position: static; background: transparent; border: none;
        border-radius: 0; padding: 0; width: 100%;
        overflow-x: hidden; /* Quitamos el scroll horizontal porque todo va a caber */
        max-height: none;
    }
    .cq-sidebar-sticky::-webkit-scrollbar { display: none; }
    .cq-sidebar-sticky h2 { display: none; } 
    
    /* Contenedor Flex: Ahora los 3 botones se reparten el espacio */
    .cq-sidebar-sticky ul { 
        display: flex; 
        gap: 6px; /* Hueco mínimo entre botones */
        flex-wrap: nowrap; 
        padding-bottom: 5px; 
        justify-content: space-between;
        width: 100%;
    }
    
    /* Obligamos a que cada botón (li) se pueda adaptar */
    .cq-sidebar-sticky li { 
        margin: 0; 
        flex: 1 1 0; /* MAGIA 1: Los 3 miden exactamente lo mismo de ancho */
    }

    /* El botón (Ahora es un rectángulo redondeado para soportar 2 líneas de texto) */
    .cq-sidebar-sticky a {
        display: flex;
        align-items: center;
        justify-content: center;
        text-align: center;
        background: #f4f4f4; 
        border: 1px solid #ddd;
        border-radius: 12px; /* Queda mejor en 12px que en redondo si hay 2 líneas */
        padding: 8px 6px; /* Padding súper optimizado */
        font-size: 0.8rem; /* Letra un pelín más pequeña para que quepa */
        font-weight: 700;
        line-height: 1.2;
        color: #555;
        white-space: normal; /* MAGIA 2: Permite que palabras largas bajen a la siguiente línea */
        transition: all 0.2s ease;
        height: 100%; /* Hace que todos los botones tengan el mismo alto si uno tiene 2 líneas */
        min-height: 45px;
    }

    /* Estado Activo en Móvil (Totalmente blindado contra saltos) */
    .cq-sidebar-sticky a:hover,
    .cq-sidebar-sticky a.active {
        background: #000; 
        color: #fed21d;
        border: 1px solid #000 !important; /* Machaca el borde izquierdo amarillo de la versión PC */
        padding: 8px 6px !important; /* Mantiene el padding estático para que no haya saltitos */
    }
    
    .cq-faq-cat-title { scroll-margin-top: 130px; }
}



/* =========================================
   1. HERO SECTION (RECUPERANDO TU ESTILO)
   ========================================= */

.contact-hero {
    position: relative; 
    height: 400px; /* Volvemos a tus 400px originales */
    display: flex; 
    align-items: flex-end; 
    justify-content: center;
    text-align: center; 
    color: #fff; 
    margin-bottom: 60px;
    overflow: hidden; 
    border-radius: .5rem; /* Tus cantos originales */
    padding-bottom: 2rem;
}

/* LA IMAGEN DE FONDO */
.hero-bg-img {
    position: absolute;
    top: 0; 
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover; 
    object-position: center;
    z-index: 0;
}

/* LA CAPA OSCURA (Limpia, sin grises raros) */
.contact-overlay {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    /* Degradado sutil solo para que se lea el blanco */
    background: linear-gradient(to top, rgba(0,0,0,0.7) 0%, transparent 60%);
    z-index: 1;
}

.contact-hero-content { 
    position: relative; 
    z-index: 2; 
    padding: 20px; 
    max-width: 1200px; /* Tu ancho original */
}

.hero-slogan {
    font-size: 3.5rem; /* Tu tamaño original */
    margin: 0 0 15px 0; 
    font-weight: 600;
    text-shadow: 0 4px 15px rgba(0,0,0,0.8); 
    line-height: 1.1; 
    color: #fff;
    display: block;
}

.hero-subtitle {
    font-size: 1.3rem; /* Tu tamaño original */
    font-weight: 500; 
    opacity: 0.95; 
    text-shadow: 0 2px 4px rgba(0,0,0,0.8);
	margin: 0 !important;
}

/* =========================================
   2. AJUSTE MÓVIL (SIN CAMBIAR EL ESTILO)
   ========================================= */
@media (max-width: 768px) {
    .contact-hero {
        height: 350px !important; /* Un pelín más bajo en móvil para que no sea un bloque gigante */
        margin-bottom: 30px;
    }

    .hero-slogan {
        font-size: 2.2rem !important; /* Tamaño que ya usabas en tus media queries */
        line-height: 1.2;
    }

    .hero-subtitle {
        font-size: 1.1rem !important;
		margin: 0 !important;
    }

    /* Eliminamos el fondo negro de la caja de texto para que sea transparente como antes */
    .contact-hero-content {
        background: transparent !important; 
        padding-bottom: 0px !important;
    }
    
    /* Aseguramos que la imagen y el overlay cubran todo el cuadro en móvil */
    .hero-bg-img, .contact-overlay {
        position: absolute !important;
        height: 100% !important;
    }
}

/* =========================================
   FIX COLISIÓN DE IMÁGENES (FLOTA VS SCOOTER)
   ========================================= */

/* 1. Comportamiento de la imagen en Nuestra Flota (Fondo) */
@media (max-width: 768px) {
    .contact-hero .hero-bg-img {
        position: absolute !important;
        height: 100% !important;
        border-radius: 0 !important; /* Anulamos bordes redondeados aquí */
        z-index: 0 !important;
    }
}

/* 2. Comportamiento de la imagen en Scooter (Foto arriba, caja abajo) */
@media (max-width: 1024px) {
    .moto-hero .hero-picture-wrapper {
        display: block !important; /* Forzamos a que el contenedor sea visible */
        width: 100%;
    }
    
    .moto-hero .hero-bg-img {
        position: relative !important; 
        width: 100% !important;
        height: 350px !important;
        object-fit: cover !important;
        border-radius: .5rem .5rem 0 0 !important; /* Redondeado solo arriba */
        z-index: 1 !important;
    }
}


/* --- Layout --- */
.page-contact-wrapper .contact-container {
    max-width: 1200px; margin: 0 auto; padding: 0 1rem;
}
.contact-grid {
    display: grid; grid-template-columns: 1fr 1.3fr; gap: 60px;
    margin-bottom: 80px; align-items: start;
}

/* --- Columna Info --- */
.info-card-modern { background: #fff; padding: 0; }

/* H2: Título Principal de Sección (Con línea amarilla) */
/*.info-card-modern h2 {
    font-size: 1.8rem;
    /*font-weight: 700;*/
   /* color: #111;
    margin-top: 0;
    /*margin-bottom: 1rem;*/
    /*position: relative;
    display: inline-block;
    line-height: 1.3; width:100%
}
.info-card-modern h2::after {
    content: ''; display: block; width: 100%; height: 2px;
    background: #fed21d; margin-top: 8px; border-radius: 2px;
}*/

.intro-text { /*color: #666; font-size: 1rem; line-height: 1.6; */ margin-bottom: 2rem !important; }

.c-item { display: flex; gap: 20px; margin-bottom: 35px; }

/* Iconos */
.c-icon {
    width: 72px; height: 62px;
    background: #fff; border: 1px solid #ddd;
    color: #fed21d; border-radius: 12px;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.3rem; flex-shrink: 0;
    /*box-shadow: 0 4px 10px rgba(0,0,0,0.03);*/
}

.c-details { display: flex; flex-direction: column; justify-content: center; align-items: flex-start; }

/* H3: Etiquetas (Labels) - Reseteamos estilos de encabezado */
h3.c-label{ margin:0;}
h3.c-redes {
    font-size: 0.7rem; 
    text-transform: uppercase; 
    letter-spacing: 2px;
    color: #999; 
    /**/*font-weight: 800;*/ */
    margin: 0 0 5px 0; /* Reset margins */
    line-height: 1.2;
}

/* Enlaces (Magic Line) */
.contact-text-link {
    /*font-size: 1.15rem; */font-weight: 600; color: #222; text-decoration: none;
    position: relative; /*padding-bottom: 2px; transition: color 0.3s;*/
}
.contact-text-link::after{
    content: ''; position: absolute; width: 0%; height: 2px;
    bottom: 0; left: 0; background-color: #fed21d; transition: width 0.3s ease-in-out;
}
/*.contact-text-link:hover { color: #fed21d; }*/
.contact-text-link:hover::after { width: 100%; }
/* Unificar botón de enviar formulario */
.wpcf7-submit {
    width: auto !important;
    min-width: 200px;
    padding: 14px 30px !important;
    background-color: #000 !important; /* Negro Click & Quads */
    color: #fff !important;
    border: none !important;
    border-radius: 8px !important; /* Mismo redondeado que el resto */
    font-size: 16px !important;
    font-weight: 700 !important;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s ease !important;
}

.wpcf7-submit:hover {
    background-color: #fed21d !important;
    color: #000 !important;
    box-shadow: 0 4px 15px rgba(254, 210, 29, 0.3);
}

.btn-faq-link {
    display: inline-block;
    margin-top: 10px;
        padding: .3rem 1rem;
    background-color: #f7f7f7; /* Gris muy clarito */
    color: #333 !important;
    border: 1px solid #fed21d; /* El amarillo de la web */
    border-radius: 8px; /* Cantos redondeados suaves */
        text-transform: uppercase;
    font-size: .9rem;
    font-weight: 700;
    text-decoration: none !important;
    transition: all 0.3s ease;
}

.btn-faq-link:hover {
    background-color: #fed21d;
    color: #000 !important;
    /*transform: translateY(-2px);*/
}

.link-whatsapp:hover { /*color: #25d366;/*/ }
.link-whatsapp:hover::after { background-color: #25d366; }
.link-email { /*font-size: 1.1rem; color: #333;*/ }
.c-address { /*font-size: 1.1rem; color: #333; line-height: 1.6; margin: 0; */}

/* Redes Sociales */
.c-social-block { margin-bottom: 35px; padding-top: 20px; border-top: 1px solid #ddd; text-align:center; }
.social-icons-row { display: flex; gap: 1rem; margin-top: 1rem; justify-content:center; }
.social-btn {
    width: 45px; height: 45px; border-radius: 50%;
    background: #f8f8f8; color: #333; border: 1px solid #ddd;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.2rem; text-decoration: none; transition: all 0.3s;
}
.social-btn:hover { background: #fed21d; color: #000; border-color: #fed21d; transform: translateY(-3px); }

/* FAQ Box */
.faq-shortcut-box {
    margin-top: 40px; /*background: #f4f6f8;*/
    border-radius: 1rem; padding: 20px;
    display: flex; gap: 15px; border: 1px solid #ddd; border-left: 4px solid #fed21d;
}
.faq-icon { color: #fed21d; font-size: 1.5rem; }
.faq-text strong { display: block; color: #222; margin-bottom: 5px; }
.faq-text p { font-size: 0.9rem; margin-bottom: 10px; color: #555; line-height: 1.4; }
/*.btn-faq-link { font-size: 0.85rem; font-weight: 700; color: #111; text-decoration: none; border-bottom: 2px solid #fed21d; }*/

/* Formulario */
.form-card-shadow {
    background: #fff; padding: 40px; border-radius: 20px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.08); position: relative; top: -5px;
}
.form-header { margin-bottom: 30px; text-align: center; }
.form-header h2 { font-size: 2rem; margin-bottom: 5px; color: #111; margin-top: 0; }
.form-header p { color: #777; }

/* CF7 */
div.wpcf7 .ajax-loader { display: none; }
.wpcf7-form label { font-size: 0.9rem; font-weight: 600; color: #333; display: block; margin-bottom: 5px; }
.wpcf7-form input[type="text"], .wpcf7-form input[type="email"], .wpcf7-form input[type="tel"], .wpcf7-form textarea {
    width: 100%; padding: 15px; border: 2px solid #ddd; background: #f9f9f9;
    border-radius: 10px; font-size: 1rem; color: #333; transition: all 0.3s ease; margin-bottom: 20px; font-family: inherit;
}
.wpcf7-form input:focus, .wpcf7-form textarea:focus {
    border-color: #fed21d; background: #fff; outline: none; box-shadow: 0 4px 10px rgba(251, 192, 45, 0.1);
}
.wpcf7-form input[type="submit"] {
    background: #111; color: #fff; font-size: 1.1rem; font-weight: 700; padding: 15px 40px;
    border-radius: 50px; border: none; cursor: pointer; /*width: 100%;*/ text-transform: uppercase;
    letter-spacing: 1px; transition: all 0.3s; margin: 10px auto 0;
}
.wpcf7-form input[type="submit"]:hover {
    background: #fed21d; color: #000; /*transform: translateY(-2px); /*box-shadow: 0 10px 20px rgba(0,0,0,0.15);/**/
}
.wpcf7-spinner { display: none;}
/* Mapa */
/* --- Mapa Section (Efecto "Medio Fuera") --- */
.map-header h2 { text-align: center; font-size: 2rem; margin-bottom: 30px; }

.map-frame-relative {
    position: relative;
    /* IMPORTANTE: Quitamos overflow:hidden para que el botón pueda "salirse" */
    /* overflow: hidden; <-- ELIMINADO */
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    line-height: 0;
    margin-bottom: 50px; /* Espacio extra abajo para que el botón no choque con lo siguiente */
}

/* Redondeamos el iframe directamente porque la caja padre ya no recorta */
.map-frame-relative iframe {
    display: block;
    border-radius: 20px; 
}

.map-overlay-btn {
    position: absolute;
    /* TRUCO: Valor negativo para bajarlo. 
       Si el botón mide unos 45px, -22px es la mitad exacta */
    bottom: -22px; 
    left: 0;
    width: 100%;
    display: flex;
    justify-content: center;
    z-index: 10;
    pointer-events: none; /* Para que el área vacía no moleste */
}

/* ESTILO BOTÓN MAPA (Pill Blanco) */
.btn-ruta-pill {
    pointer-events: auto; /* Reactivamos el click en el botón */
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 35px; /* Un poco más ancho para que destaque */
    background: #fff;
    color: #333;
    border-radius: 50px;
    font-weight: 700; /* Texto más gordito */
    text-decoration: none;
    /* Sombra fuerte para que se vea que flota sobre el mapa y el fondo */
    box-shadow: 0 10px 20px rgba(0,0,0,0.15); 
    transition: all 0.3s;
    border: 1px solid #fff; /* Borde blanco para integrarse */
}

.btn-ruta-pill:hover {
    background: #fed21d;
    color: #000;
    border-color: #fed21d;
    transform: translateY(-3px);
}
.btn-ruta-pill i { color: #fed21d; font-size: 1.1rem; transition: all 0.3s; }
.btn-ruta-pill:hover i { color: #000; }

@media (max-width: 992px) {
    .contact-grid { grid-template-columns: 1fr; gap: 60px; }
    .contact-hero { height: 300px; }
    .hero-slogan { font-size: 2.2rem; }
    .form-card-shadow { padding: 30px 20px; }
}


/* =========================================
   2. BOTÓN WHATSAPP & SCROLL TOP
   ========================================= */

/* WhatsApp (Derecha) */
.whatsapp-float {
    position: fixed;
    width: 60px; height: 60px;
    bottom: 30px; 
    right: 30px; 
    background-color: #25d366;
    color: #FFF;
    border-radius: 50px;
    text-align: center;
    font-size: 30px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.3);
    z-index: 9999;
    display: flex; align-items: center; justify-content: center;
    transition: all 0.3s ease;
    text-decoration: none;
}

.whatsapp-float:hover {
    background-color: #128C7E;
    transform: scale(1.1);
    color: #fff;
    box-shadow: 0 6px 14px rgba(0,0,0,0.4);
}

/* Astra Scroll Top (Mover a la Izquierda) */
#ast-scroll-top {
    left: 30px;
    right: auto;
    bottom: 30px;
}

/* Ajustes Móvil para botones flotantes */
@media (max-width: 768px) {
    .whatsapp-float {
        width: 55px; height: 55px;
        bottom: 20px; right: 20px;
        font-size: 28px;
    }
    #ast-scroll-top {
        left: 20px; bottom: 20px;
    }
}


/* ==========================================================================
   PÁGINAS CORPORATIVAS (QUIÉNES SOMOS & FLOTA) - CSS COMPLETO Y ORDENADO
   ========================================================================== */

/* =========================================
   1. ESTILOS COMUNES Y GLOBALES
   ========================================= */
.yellow-divider { width: 60px; height: 4px; background: #fed21d; margin-bottom: 20px; border-radius: 2px; }
.yellow-divider.center { margin: 0 auto 20px auto; }
.section-center-title { text-align: center; font-size: 2rem; margin-bottom: .5rem; /*font-weight: 700; color: #111;*/ }


/* Overlay de la cabecera (Hero) - Transparente arriba, oscuro abajo */
.contact-overlay {
    position: absolute; 
    top: 0; 
    left: 0; 
    width: 100%; 
    height: 100%;
    background: linear-gradient(to top, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0.3) 50%, rgba(0,0,0,0.1) 100%); 
    z-index: 1;
}

/* =========================================
   2. PÁGINA: QUIÉNES SOMOS
   ========================================= */
/* Intro */
.about-intro-section { display: flex; gap: 60px; align-items: center; margin-bottom: 80px; }
.about-text-col { flex: 1; }
.about-img-col { flex: 1; }
.rounded-shadow-img { width: 100%; border-radius: 20px; box-shadow: 20px 20px 0px #f4f4f4; }

@media (max-width: 992px) {
    .rounded-shadow-img {
        /* Cambiamos la sombra dura por la suave corporativa en móviles y tablets */
        box-shadow: 0 10px 30px rgba(0,0,0,0.1) !important; 
    }
}

/* Estadísticas */
.stats-grid { display: flex; gap: 30px; margin-top: 40px; border-top: 1px solid #ddd; padding-top: 20px; }
.stat-item { text-align: left; }
.stat-number { display: block; font-size: 2.5rem; font-weight: 600; color: #fed21d; line-height: 1; margin-bottom: 5px; }
.stat-label { font-size: 0.8rem; text-transform: uppercase; font-weight: 700; color: #333; letter-spacing: 1px; }

/* Historia Timeline Vertical */
.history-section { margin-bottom: 80px; padding: 60px 0; background: #fafafa; border-radius: 20px; border: 1px solid #ddd;}
.history-timeline { position: relative; max-width: 800px; margin: 0 auto; padding: 20px 0; }
.history-timeline::before { content: ''; position: absolute; top: 0; bottom: 0; left: 50%; width: 2px; background: #e0e0e0; transform: translateX(-50%); }

.timeline-event { position: relative; width: 50%; padding-right: 50px; margin-bottom: 50px; text-align: right; }
.timeline-event.right { left: 50%; padding-right: 0; padding-left: 50px; text-align: left; }
.timeline-event::after { content: ''; position: absolute; top: 5px; right: -8px; width: 16px; height: 16px; background: #fed21d; border-radius: 50%; border: 4px solid #fff; box-shadow: 0 0 0 1px #ddd; z-index: 2; }
.timeline-event.right::after { left: -8px; right: auto; }

.event-year { font-size: 1.5rem; font-weight: 700; color: #fed21d; margin-bottom: 10px; line-height: 1; }
.event-content h3 { font-size: 1.2rem; /*margin: 0 0 10px 0; */ font-weight: 700; color: #111; }
.event-content p { font-size: 0.95rem; color: #666; margin: 0; line-height: 1.5; }

/* Equipo */

/*-- columna de 3*/
.team-grid { 
    display: flex; 
    flex-wrap: wrap; 
    justify-content: center; 
    gap: 30px; 
    max-width: 900px; /* MAGIA: Limita el ancho para forzar exactamente 3 por fila */
    margin: 2rem auto 4rem auto; /* El "auto" a los lados centra todo el bloque */
}

.team-card { 
    width: 100%; 
    flex: 1 1 270px; /* Ayuda a flexbox a saber el tamaño base */
    max-width: 270px; /* Congelamos el tamaño para que no se hagan gigantes */
    text-align: center; 
    background: #fff; 
    padding: 30px; 
    border-radius: 20px; 
    border: 1px solid #fed21d; 
    transition: transform 0.3s; 
}


/* COLUMNAS de 4*//*
.team-grid { 
    display: flex; 
    flex-wrap: wrap; 
    justify-content: center; /* Centra las tarjetas, sean 1, 2 o las que sobren abajo */
    /*gap: 30px; 
    margin-bottom: 4rem; 
    margin-top: 2rem; 
}

.team-card { 
    width: 100%; 
    max-width: 270px; /* Esto evita que se hagan gigantes si hay pocas */
   /* text-align: center; 
    background: #fff; 
    padding: 30px; 
    border-radius: 20px; 
    border: 1px solid #fed21d; 
    transition: transform 0.3s; 
}
/*.team-card:hover { transform: translateY(-5px); border-color: #fed21d; }*/
.team-photo {
    width: 150px;
    height: 150px;
    margin: 0 auto 20px;
    border-radius: 50%;
    overflow: hidden;
}

.team-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* El cuadro gris si no hay foto */
.team-photo .default-avatar {
    width: 100%;
    height: 100%;
    background-color: #f0f0f0;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px dashed #ccc;
    border-radius: 50%;
}

.team-photo .default-avatar i {
    font-size: 4rem;
    color: #bbb;
}
.team-card h3 { margin: 0 0 5px 0; font-size: 1.3rem; font-weight: 700; }
.team-role { color: #888; font-size: 0.85rem; text-transform: uppercase; font-weight: 600; letter-spacing: 1px; }
@media (max-width: 768px) {
    .team-card {
        width: 100% !important; 
        max-width: 270px !important; /* Limita el ancho para que no se vea tan ancha */
        margin: 0 auto;   /* La centra perfectamente en la pantalla */
    }
}

/* CTA Box */
/* CTA Box (PC: Horizontal) */
.about-cta-box { 
    background: #111; 
    padding: 40px 50px; 
    border-radius: 20px; 
    display: flex; 
    flex-direction: row; /* Horizontal en PC */
    align-items: center; 
    justify-content: space-between; /* Separa título y botón */
    background-image: url('https://www.transparenttextures.com/patterns/carbon-fibre.png'); 
}
.about-cta-box h3 { color: #fff; font-size: 2rem; margin: 0; text-align: left; }

/* Botón CTA Blanco (Sin saltos raros) */
.btn-cta-big { 
    display: inline-block;
    background: #fff; 
    color: #000 !important; 
    font-weight: 700; 
    text-transform: uppercase;
    padding: 12px 35px; 
    font-size: 1rem; 
    border-radius: 1rem; 
    text-decoration: none; 
    transition: background 0.3s ease, color 0.3s ease; 
}
.btn-cta-big:hover { 
    background: #fed21d; 
    color: #000 !important; 
    transform: none !important; /* No salta */
    box-shadow: none !important;
}

/* CTA Box Móvil: Apilado y centrado */
@media (max-width: 768px) {
    .about-cta-box {
        flex-direction: column; 
        text-align: center; 
        gap: 20px; 
        padding: 30px 20px;
    }
    .about-cta-box h3 { text-align: center; font-size: 1.6rem; }
    .btn-cta-big { width: auto !important; 
        display: inline-block !important;}
}

/* Bloque Eco (Sostenibilidad) */
.eco-block { background: #e8f5e9; border: 1px solid #c8e6c9; border-radius: 20px; padding: 2rem; margin-bottom: 3rem; display: flex; gap: 30px; align-items: flex-start; }
.eco-icon { width: 60px; height: 60px; background: #4caf50; color: #fff; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 1.8rem; flex-shrink: 0; }
.eco-content h3 { margin-top: 0; color: #2e7d32; font-size: 1.5rem; }
.eco-content p { color: #555; }
.eco-tags { display: flex; gap: 15px; margin-top: 20px; flex-wrap: wrap; }
.eco-tags span { background: #fff; padding: 5px 15px; border-radius: 50px; font-size: 0.85rem; font-weight: 700; color: #2e7d32; border: 1px solid #a5d6a7; display: flex; align-items: center; gap: 5px; }

/* Grid de Fotos "Tesoros" */
.photo-grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; margin-top: 40px; }
.photo-card { position: relative; border-radius: 15px; overflow: hidden; height: 250px; box-shadow: 0 10px 20px rgba(0,0,0,0.1); }
.photo-card img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.photo-card:hover img { transform: scale(1.1); }
.photo-caption { position: absolute; bottom: 0; left: 0; width: 100%; background: linear-gradient(to top, rgba(0,0,0,0.8), transparent); color: #fff; padding: 20px; }
.photo-caption h4 { margin: 0; font-size: 1.1rem; color: #fed21d; }
.photo-caption p { margin: 5px 0 0 0; font-size: 0.9rem; opacity: 0.9; }

/* =========================================
   3. PÁGINA: NUESTRA FLOTA
   ========================================= */
/* Introducción Limpia (Reemplaza al banner amarillo) */
.fleet-intro-clean { text-align: center; max-width: 850px; margin: 0 auto 60px auto; padding: 0 20px; }
.intro-title { font-size: 2.2rem; margin-bottom: 1rem; /*color: #111; font-weight: 700;*/ }
.intro-lead { font-size: 1.1rem; /*color: #555; line-height: 1.7;*/ }

/* Banner de Confianza Nuevo (Por si lo usas) */
.fleet-trust-banner { background: #fffdf5; border-left: 5px solid #fed21d; padding: 30px 40px; border-radius: 0 15px 15px 0; margin: 0 auto 60px auto; max-width: 900px; box-shadow: 0 10px 30px rgba(0,0,0,0.05); }
.trust-content { display: flex; gap: 25px; align-items: center; }
.trust-icon-box { width: 60px; height: 60px; background: #fed21d; border-radius: 50%; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.trust-icon-box i { font-size: 2rem; color: #111; }
.trust-text h2 { margin: 0 0 10px 0; font-size: 1.6rem; color: #111; border: none; }
.trust-text p { margin: 0; font-size: 1.05rem; color: #555; line-height: 1.6; }

/* Tarjetas Vehículos (Scooter, etc) - SIN HOVER */
.fleet-card { display: flex; background: #fff; border: 1px solid #ddd; border-radius: 20px; overflow: hidden; margin-bottom: 40px; box-shadow: 0 5px 15px rgba(0,0,0,0.05); align-items: center; }
.fleet-card.reverse { flex-direction: row-reverse; }
.fleet-img { flex: 1.2; height: 400px; position: relative; }
.fleet-img img { width: 100%; height: 100%; object-fit: cover; }
.fleet-badge { position: absolute; top: 20px; left: 20px; background: #fed21d; color: #000; padding: 6px 16px; font-weight: 700; text-transform: uppercase; font-size: 0.75rem; border-radius: 50px; letter-spacing: 1px; }
.fleet-badge.blue { background-color: #fed21d; color: #000;}
.fleet-info { flex: 1; padding: 40px; }
.fleet-info h3 { font-size: 1.8rem; margin-top: 0; color: #111; }
.fleet-info p { color: #666; margin-bottom: 20px; }

/* Lista de Características (Grid 2x2) */
.fleet-specs-list { list-style: none; padding: 0; margin: 25px 0; display: grid; grid-template-columns: repeat(2, 1fr); gap: 15px 20px; }
.fleet-specs-list li { display: flex; align-items: center; gap: 8px; font-weight: 600; color: #444; font-size: 0.95rem; }
.fleet-specs-list i { color: #fed21d; font-size: 1.2rem; }

/* Mantenimiento */
.maintenance-block { background: #f8f9fa; border-left: 6px solid #fed21d; padding: 40px; border-radius: 12px; margin-top: 60px; display: flex; gap: 50px; align-items: center; }
.maint-content { flex: 1.5; }
.maint-content h2 { margin-top: 0; display: flex; align-items: center; gap: 15px; }
.maint-content h2 i { color: #fed21d; }
.maint-badges { flex: 1; display: flex; flex-direction: column; gap: 12px; }
.m-badge { background: #fff; padding: 12px 20px; border-radius: 50px; font-weight: 700; box-shadow: 0 4px 10px rgba(0,0,0,0.05); display: flex; align-items: center; gap: 12px; color: #333; }
.m-badge i { color: #28a745; font-size: 1.2rem; }

/* =========================================
   4. SHOWCASE DEL QUAD (ESTILOS NUEVOS Y ACTIVOS)
   ========================================= */
.quad-master-display { max-width: 1050px; margin: 1.5rem auto 2rem; text-align: center; }
.quad-image-wrapper {
    position: relative;
    display: inline-block;
    width: 100%;
}
.quad-main-img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 20px; 
    box-shadow: 0 10px 40px rgba(0,0,0,0.1); 
}

/* Los Números Flotantes (Ahora con Latido y sin cursor de enlace) */
.quad-marker {
    position: absolute;
    width: 36px; height: 36px;
    background: #fed21d; color: #111;
    font-weight: 600; font-size: 1.1rem;
    display: flex; align-items: center; justify-content: center;
    border-radius: 50%; border: 3px solid #fff;
    box-shadow: 0 0 0 0 rgba(251, 192, 45, 0.7);
    animation: quad-pulse 2s infinite;
    transform: translate(-50%, -50%);
    z-index: 10;
    cursor: default; 
    transition: all 0.3s ease;
}
@keyframes quad-pulse {
    0%   { box-shadow: 0 0 0 0 rgba(251, 192, 45, 0.7); }
    70%  { box-shadow: 0 0 0 10px rgba(251, 192, 45, 0); }
    100% { box-shadow: 0 0 0 0 rgba(251, 192, 45, 0); }
}
.quad-marker:hover {
    background: #111; color: #fed21d;
    animation: none; 
    transform: translate(-50%, -50%) scale(1.15); 
}

/* Tooltips (Los chivatos que salen en PC) */
.marker-tooltip {
    position: absolute; bottom: 130%; left: 50%;
    transform: translateX(-50%) translateY(10px);
    background: #111; color: #fff;
    padding: 8px 16px; border-radius: 8px;
    font-size: 0.9rem; font-weight: 600; white-space: nowrap;
    pointer-events: none; opacity: 0; visibility: hidden;
    transition: all 0.3s ease; box-shadow: 0 10px 20px rgba(0,0,0,0.2);
}
.marker-tooltip::after {
    content: ''; position: absolute; bottom: -6px; left: 50%;
    transform: translateX(-50%); border-left: 6px solid transparent; border-right: 6px solid transparent; border-top: 6px solid #111;
}
@media (min-width: 993px) {
    .quad-marker:hover .marker-tooltip { opacity: 1; visibility: visible; transform: translateX(-50%) translateY(0); }
}

/* Grid de Tarjetas Debajo del Quad - SIN HOVER, BORDE AMARILLO FIJO */
.quad-features-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 30px; max-width: 1000px; margin: 0 auto; }
.q-feature-card { display: flex; align-items: flex-start; text-align: left; gap: 20px; background: #fff; padding: 30px; border-radius: 1rem; border: 1px solid #ddd; box-shadow: 0 5px 15px rgba(0,0,0,0.03); }
.q-number { width: 50px; height: 50px; background: #fed21d; color: #111; font-weight: 600; font-size: 1.5rem; display: flex; align-items: center; justify-content: center; border-radius: 50%; flex-shrink: 0; box-shadow: 0 4px 10px rgba(251, 192, 45, 0.3); }
.q-text h3 { margin: 0 0 8px 0; font-size: 1.15rem; color: #111; }
.q-text p { margin: 0; color: #666; font-size: 0.95rem; line-height: 1.5; }

/* =========================================
   5. MEDIA QUERIES GLOBALES (Responsive)
   ========================================= */
@media (max-width: 992px) {
    .about-intro-section { flex-direction: column; gap: 30px; }
    /* Le quitamos el order: -1 para que la foto caiga de forma natural DEBAJO del texto */
    .about-img-col { width: 100%; }
    .fleet-card, .fleet-card.reverse { flex-direction: column; }
    .fleet-img { height: 250px; width: 100%; }
    .fleet-info { padding: 30px; width: 100%; }
    .maintenance-block { flex-direction: column; align-items: flex-start; gap: 30px; }
    .maint-badges { width: 100%; }
.history-timeline::before { 
        left: 20px !important; 
    }
    .timeline-event, 
    .timeline-event.right { 
        width: 100% !important; 
        padding-left: 60px !important; 
        padding-right: 0 !important; 
        text-align: left !important; 
        left: 0 !important; /* Fuerza a las cajas derechas a volver a la izquierda */
    }
    .timeline-event::after, 
    .timeline-event.right::after { 
        left: 12px !important; /* Ajuste milimétrico para que el punto quede sobre la línea (20px) */
        right: auto !important; 
    }

    .photo-grid-4 { grid-template-columns: repeat(2, 1fr); }
    
    /* Quad Móvil */
    .marker-tooltip { display: none !important; }
    .quad-marker { 
        width: 32px !important; 
        height: 32px !important; 
        font-size: 0.95rem !important; 
        border-width: 2px !important; 
        animation: none !important; /* ADIÓS LATIDO */
        box-shadow: 0 4px 8px rgba(0,0,0,0.2) !important; /* Sombra fija suave */
        pointer-events: none !important; /* Desactiva cualquier toque falso o hover */
    }
}

@media (max-width: 768px) {
    .eco-block { 
        flex-direction: column; 
        align-items: center; /* Centra el icono verde */
        text-align: center;  /* Centra el texto */
        padding: 30px 20px;  /* Ajustamos los márgenes interiores */
    }
    .eco-tags {
        justify-content: center; /* Centra las pastillas con check */
    }
    .trust-content { flex-direction: column; text-align: left; gap: 15px; }
    .fleet-trust-banner { padding: 25px; margin: 0 20px 40px 20px; }
    .quad-features-grid { grid-template-columns: 1fr; gap: 15px; }
	.quad-master-display { 
        overflow: hidden !important; /* Corta todo lo que se salga de la pantalla */
        margin-left: -20px !important; /* Expande la caja rompiendo el margen del móvil */
        margin-right: -20px !important; 
        border-radius: 0 !important;
    }
    
    .quad-image-wrapper { 
        width: 160% !important; /* Ampliamos la foto y los puntos un 60% */
        margin-left: -30% !important; /* Centramos el recorte exactamente al medio */
        display: block !important;
    }
    
    .quad-main-img { 
        border-radius: 0 !important; /* Quitamos bordes para que sea de lado a lado */
    }
}

@media (max-width: 600px) {
    .photo-grid-4 { grid-template-columns: 1fr; }
}

@media (max-width: 500px) {
    .fleet-specs-list { grid-template-columns: 1fr; gap: 12px; }
}

/* =========================================
   6. LEGACY / ESTILOS ANTIGUOS (HOTSPOTS)
   *No borrar por si alguna otra página los sigue usando*
   ========================================= */
.interactive-quad-section { margin-bottom: 80px; text-align: center; }
.quad-hotspot-container { position: relative; max-width: 900px; margin: 40px auto; border-radius: 20px; overflow: hidden; box-shadow: 0 10px 40px rgba(0,0,0,0.1); }
.hotspot-point { position: absolute; width: 30px; height: 30px; cursor: pointer; z-index: 10; }
.hotspot-dot { width: 100%; height: 100%; background: #fed21d; border: 3px solid #fff; border-radius: 50%; box-shadow: 0 0 0 4px rgba(251, 192, 45, 0.4); animation: pulse 2s infinite; }
.hotspot-tooltip { position: absolute; bottom: 40px; left: 50%; transform: translateX(-50%); background: #fff; padding: 15px; border-radius: 10px; width: 200px; text-align: center; box-shadow: 0 5px 20px rgba(0,0,0,0.2); opacity: 0; visibility: hidden; transition: all 0.3s; pointer-events: none; }
.hotspot-tooltip::after { content: ''; position: absolute; bottom: -8px; left: 50%; transform: translateX(-50%); border-left: 8px solid transparent; border-right: 8px solid transparent; border-top: 8px solid #fff; }
.hotspot-tooltip h4 { margin: 0 0 5px 0; font-size: 1rem; color: #111; }
.hotspot-tooltip p { margin: 0; font-size: 0.8rem; color: #666; line-height: 1.3; }
.hotspot-point:hover .hotspot-tooltip { opacity: 1; visibility: visible; bottom: 45px; }
.hotspot-point:hover .hotspot-dot { background: #000; border-color: #fed21d; }

@keyframes pulse {
    0% { box-shadow: 0 0 0 0 rgba(251, 192, 45, 0.7); }
    70% { box-shadow: 0 0 0 10px rgba(251, 192, 45, 0); }
    100% { box-shadow: 0 0 0 0 rgba(251, 192, 45, 0); }
}
@media (max-width: 768px) {
    .quad-hotspot-container { margin: 20px -20px; border-radius: 0; }
    .hotspot-tooltip { position: relative; opacity: 1; visibility: visible; bottom: auto; left: auto; transform: none; width: 100%; margin-top: 10px; display: none; }
}


/* =========================================
   TARJETAS DE COMPROMISO (Ajuste fino: Icono más peque y textos unidos)
   ========================================= */

.guarantee-section { 
    margin: 4rem auto 0; 
    max-width: 1100px; /* Ancho holgado para que quepan las pastillas */
    padding: 0 20px; 
}

.commitment-grid { 
    display: grid; 
    /* Cambiamos a 380px para dar más juego y evitar que salten las líneas tan rápido */
    grid-template-columns: repeat(auto-fit, minmax(380px, 1fr)); 
    gap: 30px; 
    margin-top:2rem;
}

/* La tarjeta: Estructura compacta */
.commitment-card { 
    display: flex; 
    align-items: flex-start; /* Todo alineado arriba */
    gap: 20px; /* Reducimos el hueco entre el icono y el texto para ganar anchura útil */
    padding: 35px; 
    border-radius: 20px; 
    box-shadow: 0 5px 15px rgba(0,0,0,0.02); 
    text-align: left;
}

/* El Icono (MÁS PEQUEÑO para darle protagonismo al texto) */
.commitment-icon-wrap { 
    width: 48px; 
    height: 48px; 
    border-radius: 50%;
    display: flex; 
    align-items: center; 
    justify-content: center;
    font-size: 1.3rem; /* Icono contenido */
    flex-shrink: 0; 
}

/* El Contenido (Alineado arriba con el icono) */
.commitment-content-wrap {
    flex: 1; 
    /* Quitamos el padding-top para que el título alinee perfecto con el círculo */
}

/* Título súper pegado al texto */
.commitment-content-wrap h3 { 
   /* margin: 0 0 5px 0; /* Solo 5px de separación, efecto bloque */
    font-size: 1.35rem; 
    /*font-weight: 700;
    line-height: 1.2;*/
}

/* Texto pegado a las pastillas */
/*.commitment-text { 
    font-size: 0.95rem; 
    line-height: 1.5; 
    margin-bottom: 15px; /* Reducido de 25px a 15px *//*
}*/

/* Pastillas (Tags) */
.commitment-tags { 
    display: flex; 
    gap: 10px; /* Un poco menos de hueco entre pastillas para asegurar la línea única */
    flex-wrap: wrap; 
    justify-content: flex-start; 
    margin-top:1rem;
}
.c-tag { 
    background: #fff; 
    padding: 5px 15px; 
    border-radius: 50px; 
    font-size: 0.85rem; 
    font-weight: 700; 
    display: flex; 
    align-items: center; 
    gap: 6px; 
    line-height: 1; 
}
.c-tag i { 
    font-size: 1.1rem; 
    line-height: 1; 
}

/* --- TEMA GRIS CORPORATIVO (Seguridad) --- */
.card-gray { 
    background-color: #f8f9fa; 
    border: 1px solid #ddd; 
}
.card-gray .commitment-icon-wrap { 
    background-color: #fed21d; 
    color: #111; 
}
.card-gray .commitment-content-wrap h3 { color: #111; }
.card-gray .commitment-text { color: #555; }
.card-gray .c-tag { border: 1px solid #ddd; color: #333; } 
.card-gray .c-tag i { color: #fed21d; } 


/* --- TEMA VERDE (Sostenibilidad) --- */
.card-green { 
    background-color: #e8f5e9; 
    border: 1px solid #c8e6c9; 
}
.card-green .commitment-icon-wrap { 
    background-color: #4caf50; 
    color: #fff; 
}
.card-green .commitment-content-wrap h3 { color: #2e7d32; }

.card-green .c-tag { 
    border: 1px solid #a5d6a7; 
    color: #2e7d32; 
} 
.card-green .c-tag i { color: #4caf50; }

/* --- RESPONSIVE (Móviles) --- */
@media (max-width: 600px) {
    .commitment-card {
        flex-direction: column; 
        gap: 15px;
        padding: 30px 25px;
    }
}


/* =========================================
   AJUSTES CTA Y SECCIONES FLOTA (Limpieza Inline CSS)
   ========================================= */

/* Caja del Botón Principal del Quad */
.quad-cta-wrapper {
    text-align: center;
    margin-top: 3rem;
}
.quad-cta-wrapper h3 {
    margin-bottom: 1rem;
   
}

/* Espaciado del Showcase de la Scooter */
.fleet-showcase {
    margin-top: 3rem;
}
.scooter-cta-wrapper {
    margin-top: 25px;
}

@media (max-width: 768px) {
    .scooter-cta-wrapper {
        display: block;
        text-align: center;
        width: 100%;
    }
}

/* =========================================
   BOTONES: ESTILOS Y HOVER (100% INTEGRADOS CON LA WEB)
   ========================================= */

/* Botón Principal (Quad: Pasa de Amarillo a Negro) - Estilo igual a tus Tours */
.btn-amarillo {
    display: inline-block;
    background-color: #fed21d; 
    color: #000 !important;
    font-weight: 700; /* Bold estándar de tu web */
    text-transform: uppercase;
    padding: 10px 25px; /* Medida global de tus botones */
    border-radius: 1rem; /* Esquinas corporativas, no píldora */
    text-decoration: none;
    font-size: 1rem;
    text-align: center;
    transition: background-color 0.3s ease, color 0.3s ease; /* Sin salto (transform) */
}
.btn-amarillo:hover {
    background-color: #000 !important; 
    color: #fff !important; 
}

/* Botón Secundario (Scooter: Pasa de Negro a Amarillo) - Estilo igual a tus Tarifas */
.btn-gris {
    display: inline-block; 
    background: #333; /* Negro estándar de tu web */
    color: #fff !important; 
    font-weight: 700; 
    text-transform: uppercase;
    padding: 10px 25px; 
    border-radius: 1rem; 
    text-decoration: none; 
    font-size: 0.9rem;
    text-align: center;
    transition: background-color 0.3s ease, color 0.3s ease;
}
.btn-gris:hover {
    background-color: #fed21d !important; 
    color: #000 !important; 
}

/* =========================================
   FIX MÓVIL: COMPROMISO / SOSTENIBILIDAD
   ========================================= */
@media (max-width: 768px) {
    /* 1. Devolvemos el aire por abajo para que no choque con el footer */
    .guarantee-section {
        margin-bottom: 4rem !important; 
    }
    
    /* 2. Anulamos el "minmax(380px)" que descuadraba la pantalla hacia un lado */
    .commitment-grid {
        grid-template-columns: 1fr !important; 
    }
}

@media (max-width: 600px) {
    /* 3. Centramos las tarjetas, textos, iconos y pastillas */
    .commitment-card {
        flex-direction: column; 
        align-items: center !important; /* Centra el icono verde/amarillo */
        text-align: center !important;  /* Centra el párrafo */
        gap: 15px;
        padding: 30px 20px; /* Ajustamos padding para móviles pequeños */
    }
    
    .commitment-content-wrap {
        display: flex;
        flex-direction: column;
        align-items: center; /* Asegura que el título H3 quede al centro */
        width: 100%;
    }

    .commitment-tags {
        justify-content: center !important; /* Centra las etiquetas con check */
        width: 100%;
    }
}


/* ================================================= */
/* ESTILOS POLÍTICA DE COOKIES (ESTILO CLICK & QUADS)*/
/* ================================================= */

/* 1. CONTENEDOR CENTRAL (Más estrecho, como el resto de la web) */
/*#cmplz-document {
    max-width: 1000px !important; 
    margin: 0 auto !important;
    padding: 40px 20px !important;
    color: #333;
}*/

/* 2. TITULARES CON EL "TROCITO" DE LÍNEA AMARILLA */
#cmplz-document h1, 
#cmplz-document h2, 
#cmplz-document h3, 
#cmplz-document h4 {
    position: relative;
    padding-bottom: 12px;
    margin-top: 40px;
    margin-bottom: 20px;
    color: #000;
    border-bottom: none !important; /* Quitamos la línea entera */
}

/* Esta es la rayita amarilla corta de debajo */
#cmplz-document h1::after, 
#cmplz-document h2::after, 
#cmplz-document h3::after, 
#cmplz-document h4::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 60px; /* El ancho del trocito amarillo */
    height: 3px;
    background-color: #fed21d;
}

/* 3. CAJITAS DESPLEGABLES (ESTILO FAQs) */
#cmplz-document details {
    background: #ffffff !important;
    border: 1px solid #eaeaea !important;
    border-radius: 8px !important;
    padding: 15px 20px !important;
    margin-bottom: 15px !important;
    box-shadow: none !important;
    transition: border-color 0.3s ease;
}

/* Borde amarillo cuando está abierta la caja */
#cmplz-document details[open] {
    border-color: #fed21d !important;
}

/* Limpiar el título de la caja */
#cmplz-document summary {
    background: transparent !important;
    font-weight: 600;
    color: #111;
    cursor: pointer;
    font-size: 16px;
    outline: none;
    list-style: none; /* Quita flecha nativa */
    position: relative;
    padding-right: 30px; /* Espacio para el + */
}

/* Quitar flecha nativa en Safari */
#cmplz-document summary::-webkit-details-marker {
    display: none;
}

/* Ocultar la flecha negra/gris (v) que trae Complianz por defecto */
#cmplz-document summary .cmplz-icon {
    display: none !important;
}

/* Añadir el símbolo [+] en amarillo */
#cmplz-document summary::after {
    content: '+';
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    color: #fed21d;
    font-size: 24px;
    font-weight: 400;
}

/* Cambiar al símbolo [-] negro cuando se abre */
#cmplz-document details[open] summary::after {
    content: '-';
    color: #000;
    font-size: 28px;
}

/* Tablas interiores limpias */
#cmplz-document table {
    background: transparent !important;
    margin-top: 15px;
}
#cmplz-document th, #cmplz-document td {
    border-bottom: 1px solid #eaeaea;
    padding: 10px;
}

#cmplz-document table {
    table-layout: fixed;
    width: 100%;
}

#cmplz-document th, 
#cmplz-document td {
    overflow-wrap: break-word;
    word-wrap: break-word;
    word-break: break-word; /* Obliga a romper textos largos como wordpress_logged_in_* */
}

/* Ajustes finos solo para móviles */
@media (max-width: 768px) {
    #cmplz-document th, 
    #cmplz-document td {
        padding: 8px 5px !important; /* Quitamos espacio de los lados para ganar sitio */
        font-size: 13px; /* Letra un pelín más pequeña en la tabla */
    }
}



/* =========================================
   PÁGINA 404 ERROR (MINIMALISTA Y LIMPIA)
   ========================================= */
body.error404 .ast-breadcrumbs-wrapper,
body.error404 .rank-math-breadcrumb,
body.error404 .cq-breadcrumb-wrapper {
    display: none !important;
}
.error-404-wrap {
    text-align: center;
    padding: 10vh 20px;
    max-width: 1000px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 55vh; 
}
.error-404-wrap .error-icon i {
    font-size: 6rem;
    color: #fed21d; 
    display: block;
    margin-bottom: 20px;
    line-height: 1;
}
.error-404-wrap .error-title {
    font-size: 3rem;
    margin-bottom: 15px;
    color: #111;
    line-height: 1.2;
    border: none !important; 
}
.error-404-wrap .error-title::after {
    display: none !important; 
}
.error-404-wrap .error-title span {
    color: #fed21d;
}
.error-404-wrap .error-desc {
    font-size: 1.2rem;
    color: #555;
    margin-bottom: 40px;
    line-height: 1.6;
}
.btn-404 {
    font-size: 1.1rem;
    padding: 15px 35px;
    border-radius: 50px !important; 
    display: inline-flex;
    align-items: center;
    gap: 10px;
}
@media (max-width: 768px) {
    .error-404-wrap { padding: 5vh 20px; min-height: 50vh; }
    .error-404-wrap .error-title { font-size: 2.2rem; }
    .error-404-wrap .error-desc { font-size: 1rem; }
    .error-404-wrap .error-icon i { font-size: 5rem; }
}


/* =========================================
   HOME PREMIUM CLICK & QUADS
   ========================================= */

/* --- 0. ROMPER LA CAJA FUERTE DE ASTRA SÓLO EN LA HOME --- */
body.home .ast-container, 
body.home .site-content > .ast-container { 
    max-width: 100% !important; 
    width: 100% !important; 
    padding: 0 !important; 
    margin: 0 !important;
}
body.home #primary, body.home #content {
    margin: 0 !important;
    padding: 0 !important;
}
.home-premium { width: 100%; overflow-x: hidden; }
.hp-container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }


/* =========================================================================
   1. CABECERA TRANSPARENTE SOBRE EL VÍDEO
   
   INSTRUCCIONES:
   - Para que la cabecera sea transparente sobre el vídeo: BORRA LOS /* DE ABAJO
   - Para dejar la web normal (cabecera blanca arriba, video abajo): DÉJALO COMO ESTÁ
   ========================================================================= */
/* body.home .cq-site-header {
    background: linear-gradient(to bottom, rgba(0,0,0,0.8) 0%, transparent 100%) !important;
    position: absolute !important;
    width: 100%;
    top: 0; left: 0;
    z-index: 9999;
    border: none !important;
    box-shadow: none !important;
}
body.home .cq-header-bottom { background: transparent !important; }
body.home .cq-menu-clean > li > a { color: #fff !important; text-shadow: 0 2px 4px rgba(0,0,0,0.8); }
body.home .cq-menu-clean > li > a:hover { color: #fed21d !important; background: transparent !important; }
body.home .cq-site-logo img { filter: brightness(0) invert(1); transition: all 0.3s ease; }
.hp-hero-content { margin-top: 50px; }



/* --- 2. HERO SECTION --- */
.hp-hero {
    position: relative;
    width: 100vw;
    height: 90vh; /* Ajuste perfecto para evitar cortes excesivos */
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
}
.hp-hero-bg {
    position: absolute; top: 0; left: 0; width: 100%; height: 100%;
    object-fit: cover; z-index: 0;
}
.hp-hero-overlay {
    position: absolute; top: 0; left: 0; width: 100%; height: 100%;
    background: linear-gradient(to bottom, rgba(0,0,0,0.5) 0%, rgba(0,0,0,0.7) 100%);
    z-index: 1;
}
.hp-hero-content {
    position: relative; z-index: 2;
    max-width: 1000px; 
    padding: 20px;
}
.hp-hero-badge {
    display: inline-block; background: rgba(255, 255, 255, 0.1);
    color: #fff; padding: 6px 15px; border-radius: 50px;
    font-size: 0.85rem; text-transform: uppercase; letter-spacing: 2px;
    border: 1px solid rgba(255, 255, 255, 0.2); margin-bottom: 20px;
}

/* Títulos y textoo Hero (Accesibilidad sin <br>) */
.hp-hero-title {
    font-size: 4.5rem; font-weight: 600; color: #fff;
    line-height: 1.1; margin: 0 0 20px 0;
    text-shadow: 0 5px 20px rgba(0,0,0,0.5);
    border: none !important;
}
.hp-hero-title::after { display: none !important; }
.hero-title-line, .hero-desc-line { display: block; }
.txt-white { color: #fff !important; }
.txt-yellow { color: #fed21d !important; }

.hp-hero-desc {
    font-size: 1.25rem; color: #f0f0f0; margin: 0 auto 40px auto;
    max-width: 800px;
    line-height: 1.6;
}
.hp-hero-actions { display: flex; gap: 20px; justify-content: center; flex-wrap: wrap; }
.hp-hero-actions .btn-hp-main { padding: 18px 40px; font-size: 1.1rem; }

.hp-scroll-down {
    position: absolute; bottom: 30px; left: 50%; transform: translateX(-50%);
    z-index: 2; animation: bounce 2s infinite;
}
.hp-scroll-down a { color: #fff; font-size: 2rem; opacity: 0.7; transition: 0.3s; }
.hp-scroll-down a:hover { color: #fed21d; opacity: 1; }
@keyframes bounce { 0%, 20%, 50%, 80%, 100% { transform: translateY(0); } 40% { transform: translateY(-15px); } 60% { transform: translateY(-7px); } }

/* Fix botones sobre fondo oscuro */
.hp-hero-actions .btn-amarillo:hover,
.hp-scooter-banner .btn-hero-action:hover,
.hp-scooter-banner .btn-amarillo:hover {
    background-color: #fff !important;
    color: #111 !important;
}

/* --- 3. BARRA CONFIANZA --- */
.hp-trust-bar { background: #fff; padding: 40px 0; border-bottom: 1px solid #eee; width: 100vw; }
.trust-grid { display: flex; justify-content: space-between; gap: 30px; }
.trust-item { display: flex; align-items: center; justify-content: center; gap: 15px; flex: 1; text-align: left;}
.trust-item i { font-size: 2.5rem; color: #fed21d; }
.trust-item h4 { margin: 0 0 5px 0; font-size: 1.1rem; color: #111; border: none !important; }
.trust-item h4::after { display: none !important; }
.trust-item p { margin: 0; font-size: 0.9rem; color: #666; line-height: 1.3; }

/* --- 4. SECCIONES COMUNES (Tours, Reseñas, Instagram) --- */
.hp-section-header { text-align: center; margin-bottom: 50px; }
.hp-section-header h2 { font-size: 2.5rem; margin-bottom: .5rem; color: #111; border: none !important; }
.hp-section-header h2::after { display: none !important;}
.hp-section-header h2 span { color: #fed21d; } 
.hp-section-header p { font-size: 1.15rem; color: #555; margin: 0 !important; }
.hp-section-header .yellow-divider.center { margin-top: 1rem !important; }
.hp-tours-section { padding: 80px 0; background: #fff; width: 100vw; }

/* Fix tarjetas tours */
body.home .tours-grid { gap: 20px !important; }
body.home .tour-box { padding: 25px 20px !important; }
body.home .tour-box h3 {
    font-size: 1.5rem !important; 
    line-height: 1.3 !important;
    word-wrap: break-word;
    hyphens: auto; 
}

/* --- 5. BANNER SCOOTER NEGRO --- */
.hp-scooter-banner { padding: 80px 0; background: #111; color: #fff; overflow: hidden; width: 100vw; }
.scooter-banner-inner { display: flex; align-items: center; gap: 90px; }
.scooter-banner-text { flex: 1; }
.scooter-banner-text h2 { font-size: 2.8rem; color: #fff; margin-bottom: 20px; line-height: 1.2; border:none !important; }
.scooter-banner-text h2::after { display: none !important; }
.scooter-banner-text h2 span { color: #fed21d; }
.scooter-desc { font-size: 1.1rem; color: #ccc; margin-bottom: 25px; line-height: 1.6; } 

/* Pastillas Scooter */
.hp-scooter-badges {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
    gap: 12px;
    list-style: none !important;
    padding: 0 !important;
    margin: 0 0 35px 0 !important;
}
body.home .hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    margin: 0 !important;
}

/* Imagen y Sello Flotantes Sincronizados */
.scooter-banner-img { flex: 1; text-align: center; }

/* El contenedor padre es el que flota ahora */
.scooter-img-relative-wrapper.floating-scooter {
    position: relative;
    display: inline-block;
    transform: scale(1.2);
    animation: float 6s ease-in-out infinite;
    max-width: 600px;
    width: 100%;
}
@keyframes float { 0% { transform: scale(1.2) translateY(0px); } 50% { transform: scale(1.2) translateY(-20px); } 100% { transform: scale(1.2) translateY(0px); } }

/* La imagen pura (Sin animar, arrastrada por el padre) */
.scooter-img-base {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
    display: block;
}

/* LA PEGATINA PREMIUM ACTUALIZADA */
.premium-price-sticker {
    position: absolute;
    bottom: 30px;
    left: -20px;
    background: #fed21d;
    /* width: 160px; */
    /* height: 160px; */
    border-radius: 1rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    z-index: 10;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.4);
    padding: 0.5rem 1rem 1rem;
    box-sizing: border-box;
}
/* Jerarquía Tipográfica del Precio */
.premium-price-sticker .sticker-main-price {
    font-size: 1.4rem;
    font-weight:600;
    color: #111;
    line-height: 1;
    margin-bottom: 8px;

}
.premium-price-sticker .sticker-main-price .precios {
    font-size: 3rem; /* El "32" gigante */
    
    display: inline-block;
    margin-top: 4px;
    letter-spacing: -2px;
}
.premium-price-sticker .sticker-main-price .euro {
    font-size: .9rem;

}
.premium-price-sticker .sticker-main-price .dia {
    font-size: 0.9rem;
    text-transform: lowercase;
    opacity: 0.8;
}

/* El impuesto asegurado para no salirse */
.premium-price-sticker .sticker-sub-tax {
    font-size: 0.7rem;
    color: #111;
    text-transform: uppercase;
    letter-spacing: 0px;
    font-weight: 600;
    background: rgba(255,255,255,0.4);
    padding: 3px 8px;
    border-radius: 10px;
    width: 90%; /* Forzamos un ancho máximo para que baje de línea si hace falta */
    line-height: 1.2;
}

/* --- RESPONSIVE HOME MÓVIL --- */
@media (max-width: 992px) {
    .scooter-banner-inner { flex-direction: column; text-align: center; gap: 20px !important; }
    .hp-scooter-badges { justify-content: center !important; }
	.scooter-banner-text {
        order: 2;
    }

    /* 3. Le damos orden 1 al bloque de la imagen (saldrá primero) */
    .scooter-banner-img {
        order: 1;
        width: 100%; /* Aseguramos que ocupe todo el ancho */
        display: flex;
        justify-content: center; /* Centramos la foto */
    }
    .hp-scooter-banner { padding:60px 0;}
    /* El contenedor padre en móvil ya no se escala al 120% y no flota */
    .scooter-img-relative-wrapper.floating-scooter { transform: scale(1); animation: none; margin-top: 0; padding-left:2rem;} 
    
    /* Pegatina más contenida en Tablet/Móvil */
    /*.premium-price-sticker {
        width: 130px; height: 130px; top: -15px; right: -10px; padding: 10px;
    }/*/
    .premium-price-sticker .sticker-main-price .precios { font-size: 2.2rem; }
    .premium-price-sticker .sticker-main-price .euro { /*font-size: 1.1rem;*/ }
}

@media (max-width: 768px) {
    .scooter-banner-text h2 { font-size: 2.2rem; }
    /* Centrar la pegatina dentro de la imagen para que no rompa la pantalla horizontalmente */
    /*.premium-price-sticker { right: 10px; top: -20px; }*/
}

/* --- 6. RESEÑAS SLIDER FIXES --- */
/* Forzamos que ocupe todo el ancho pero le damos padding para las flechas */
.hp-reviews-section .reviews-slider-wrapper { 
    max-width: 100% !important; 
    position: relative; 
    padding: 0 ; 
	margin: 0 60px;/* IMPORTANTE: Deja espacio para que las flechas no pisen el texto */
    box-sizing: border-box;
}

/* Colocamos las flechas en los bordes para que se solapen ligeramente */
.reviews-slider-wrapper .swiper-button-prev.review-nav-btn { 
    left: 0px !important; 
    z-index: 10;
}
.reviews-slider-wrapper .swiper-button-next.review-nav-btn { 
    right: 0px !important; 
    z-index: 10;
}

/* Espacio debajo para los puntitos */
body.home .tour-reviews-slider { 
   padding: 0 12px !important;
}

/* Márgenes de la tarjeta para que "respire" */
.hp-reviews-section .review-card { 
    margin: 10px 5px; /* Ajustamos el margen para que no se vea tan estrecha */
}

/* Tipografía del título de la reseña */
.hp-reviews-section .review-title { 
    margin: 0 0 8px 0; 
    font-size: 1.05rem; 
    font-weight: 700; 
    color: #333; 
    line-height: 1.3; 
}

/* Fix solapamiento Google */
.review-top { position: relative !important; display: flex; align-items: center; }
.review-meta { flex: 1; min-width: 0; padding-right: 35px !important; }
.review-meta strong { display: block; white-space: normal; word-wrap: break-word; line-height: 1.2; }
.g-icon-small { position: absolute !important; right: 0; top: 50%; transform: translateY(-50%); width: 24px !important; height: auto !important; margin: 0 !important; }

/* --- 7. INSTAGRAM GRID --- */
.hp-instagram-section { padding: 0 0 80px; background: #fff; border-bottom: 1px solid #ddd; width: 100vw; }
.hp-instagram-section .ig-intro-text a, .faq-bottom-cta a { position: relative; font-weight: 600; color: #111; text-decoration: none;}
.hp-instagram-section .ig-intro-text a::after, .faq-bottom-cta a::after {
    content: ''; position: absolute; width: 0%; height: 2px; bottom: -2px; left: 0; background-color: #fed21d; transition: width 0.3s ease-in-out;
}
.hp-instagram-section .ig-intro-text a:hover::after, .faq-bottom-cta a:hover::after { width: 100%; }

.ig-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 10px; margin-top: 40px; }
.ig-item { position: relative; aspect-ratio: 4/5; overflow: hidden; border-radius: 12px; border: none !important; display: block; }
.ig-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.ig-overlay { position: absolute; top:0; left:0; width:100%; height:100%; background: rgba(0,0,0,0.6); display: flex; align-items: center; justify-content: center; opacity: 0; transition: opacity 0.3s; }
.ig-overlay i { color: #fff; font-size: 2.5rem; transform: scale(0.5); transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275); }
.ig-item:hover img { transform: scale(1.1); }
.ig-item:hover .ig-overlay { opacity: 1; }
.ig-item:hover .ig-overlay i { transform: scale(1); }

/* --- RESPONSIVE HOME MÓVIL --- */
@media (max-width: 992px) {
    .hp-hero-title { font-size: 3.5rem; }
    .hp-reviews-section .reviews-slider-wrapper{margin: 0 20px;}
    /* Fix espacio scooter móvil */
    .scooter-banner-inner { 
        flex-direction: column; 
        text-align: center; 
        gap: 40px !important; 
    }
    .hp-scooter-badges { justify-content: center !important; }
    .floating-scooter { transform: scale(1); animation: none; margin-top: 10px; }
    /* Sello más pequeño en tablet */
    /*.premium-price-sticker {
        width: 110px; height: 110px; top: -10px; right: -10px; padding: 10px;
    }*/
	.premium-price-sticker {left: -10px;}
    .premium-price-sticker .sticker-main-price { font-size: 1.2rem; }
    .premium-price-sticker .sticker-sub-tax { font-size: 0.65rem; }
    .ig-grid { grid-template-columns: repeat(3, 1fr); gap: 8px; }
    .mobile-hide { display: none !important; }
}

@media (max-width: 768px) {
    
    .hp-hero-title { font-size: 2.5rem; }
    .hp-hero-desc { font-size: 1.05rem; }
    .hero-desc-line { display: inline; } /* Fix accesibilidad textos largos móvil */
    .btn-hp-main { width: auto !important; display: inline-block !important; }
    
    /* Centrar iconos de confianza en móvil */
    .trust-grid { flex-direction: column; gap: 30px; }
    .trust-item { flex-direction: column; text-align: center; gap: 10px; }
    .trust-item i { margin-bottom: 5px; }
    
    .hp-section-header h2 { font-size: 2rem; }
    .scooter-banner-text h2 { font-size: 2.2rem; }
    .hp-scooter-price .price-val { font-size: 1.8rem; }
	
    /*.premium-price-sticker {
        width: 100px; height: 100px; top: 5px; right: 5px;
    }
    /* Reducir márgenes laterales en slider reseñas móvil */
    
    
    .ig-grid { grid-template-columns: repeat(2, 1fr); }
}