/* ===== Fuentes del sitio (assets/fonts) ===== */
@font-face {
    font-family: 'Gill Sans';
    src: url('../fonts/Gill-Sans-Light.ttf') format('truetype');
    font-weight: 300;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'Gill Sans';
    src: url('../fonts/Gill-Sans-regular.ttf') format('truetype');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

/* ===== Variables y base ===== */
:root {
    --header-height: 0px; /* Se calcula con JS si hace falta */
    --color-primary: #0d6efd;
    --color-black: #000000;
    --color-white: #ffffff;
    --font-family-base: 'Gill Sans', -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

html {
    overflow-x: hidden;
}

body {
    font-family: var(--font-family-base);
    padding-top: 0;
    overflow-x: hidden;
}

/* ===== Top bar y header ===== */
.top-bar {
    font-size: 0.9rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}
.top-bar .top-bar-icon {
    color: var(--color-primary);
}
.top-bar-link:hover .top-bar-icon,
.top-bar-link:hover .top-bar-text {
    color: var(--color-primary) !important;
}

@media (max-width: 575.98px) {
    .top-bar {
        font-size: 0.8rem;
        padding-top: 0.5rem;
        padding-bottom: 0.5rem;
    }
    .top-bar .gap-2 {
        gap: 0.5rem !important;
    }
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 1030;
    box-shadow: 0 1px 0 rgba(0, 0, 0, 0.08);
}

.site-header.bg-black {
    box-shadow: 0 1px 0 rgba(255, 255, 255, 0.1);
}

.site-header.bg-black .header-logo-iveco-text,
.site-header.bg-black .header-logo-aurelia-text {
    color: var(--color-white);
}

.site-header.bg-black .header-logo-link:hover {
    color: var(--color-white) !important;
    opacity: 0.85;
}

.site-header.bg-black .header-hamburger:hover {
    background-color: rgba(255, 255, 255, 0.12) !important;
    border-color: rgba(255, 255, 255, 0.95) !important;
    color: var(--color-white) !important;
}

/* Franja desktop Navicam / IVECO: ancho completo, logos claros (mismos PNG que el pie) */
.header-logos-bar {
    background-color: var(--color-black);
}

/* Desktop: logos */
.header-logos .logo-link {
    display: inline-flex;
    align-items: center;
}

.header-logos .logo-aurelia {
    width: 156px;
    height: auto;
    object-fit: contain;
}

.header-logos .logo-iveco {
    width: 120px;
    height: auto;
    object-fit: contain;
}

.logo-text-fallback {
    font-weight: 700;
    font-size: 1.5rem;
    letter-spacing: 0.05em;
    color: #000;
}

.logo-text-fallback--on-dark {
    color: var(--color-white);
}

/* Móvil: botón hamburguesa (cuadrado con borde blanco) */
.header-hamburger {
    width: 44px;
    height: 44px;
    padding: 0;
    flex-shrink: 0;
    transition: background-color 0.2s, border-color 0.2s;
}

.header-hamburger:hover {
    background-color: rgba(0, 0, 0, 0.06) !important;
    border-color: rgba(0, 0, 0, 0.9) !important;
    color: #000 !important;
}

.header-hamburger .bi-list {
    font-size: 1.35rem;
}

/* Móvil: bloque IVECO / Navicam (mismos PNG que el pie; IVECO arriba) */
.header-logo-link {
    display: inline-flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
}

.header-logo-aurelia {
    width: clamp(100px, 32vw, 160px);
    height: auto;
    object-fit: contain;
}

.header-logo-iveco {
    width: 86px;
    height: auto;
    object-fit: contain;
    padding-left: 6px;
}

.header-logo-iveco-text {
    font-size: 1.5rem;
    font-weight: 700;
    color: #000;
    line-height: 1.15;
}

.header-logo-aurelia-text {
    font-size: 1.15rem;
    font-weight: 400;
    color: #000;
    line-height: 1.15;
}

.header-logo-link:hover {
    color: #000 !important;
}

/* Móvil: IVECO arriba, Navicam abajo; menú hamburguesa abierto */
@media (max-width: 991.98px) {
    .header-logo-link .header-logo-iveco,
    .header-logo-link .header-logo-iveco-text {
        order: 1;
    }

    .header-logo-link .header-logo-aurelia,
    .header-logo-link .header-logo-aurelia-text {
        order: 2;
    }

    .site-header .navbar-collapse.collapse.show {
        padding-top: 0.75rem;
        padding-bottom: 0.5rem;
        border-top: 1px solid rgba(0, 0, 0, 0.08);
    }

    .site-header.bg-black .navbar-collapse.collapse.show {
        border-top-color: rgba(255, 255, 255, 0.12);
    }
}

/* Dropdown megamenú */
.dropdown-mega .dropdown-menu {
    min-width: 260px;
    left: 0;
    right: auto;
    transform: none;
    margin-top: 0;
    border-radius: 0;
}

.dropdown-mega-menu .dropdown-item {
    white-space: nowrap;
    transition: color 0.2s;
}

@media (max-width: 991.98px) {
    .dropdown-mega-menu .dropdown-item {
        white-space: normal;
    }
}

.dropdown-mega-menu .dropdown-item:hover,
.dropdown-mega-menu .dropdown-item:focus {
    background-color: rgba(255, 255, 255, 0.12);
    color: var(--color-primary) !important;
}

.dropdown-submenu-menu .dropdown-item:hover,
.dropdown-submenu-menu .dropdown-item:focus {
    background-color: rgba(255, 255, 255, 0.12);
    color: var(--color-primary) !important;
}

/* Submenú (segunda columna) - aparece al hacer hover */
.dropdown-submenu {
    position: relative;
}

.dropdown-submenu > .dropdown-submenu-menu {
    display: none;
    position: absolute;
    top: 0;
    left: 100%;
    min-width: 220px;
    margin: 0;
    box-shadow: 4px 0 12px rgba(0, 0, 0, 0.3);
}

.dropdown-submenu:hover > .dropdown-submenu-menu {
    display: block;
}

.dropdown-submenu:hover > .dropdown-item {
    color: var(--color-primary) !important;
    background-color: rgba(255, 255, 255, 0.1);
}

.navbar-nav .nav-link.active {
    color: var(--color-primary) !important;
}

/* ===== Main content: espacio para no quedar bajo header ===== */
.main-content {
    padding-top: 0;
    max-width: 100%;
}

/* ===== Hero section ===== */
.hero-section {
    background-color: #1a1a2e;
    min-height: 70vh;
}

/* Slides de fondo */
.hero-slide {
    opacity: 0;
    visibility: hidden;
    transition: opacity 1s ease-in-out, visibility 1s ease-in-out;
    z-index: 0;
}

.hero-slide.active {
    opacity: 1;
    visibility: visible;
    z-index: 1;
}

.hero-slide-bg {
    z-index: 0;
    background-color: #1a1a2e;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    overflow: hidden;
}

.hero-slide-bg--video {
    background-image: none !important;
}

.hero-slide-video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    transform: translate(-50%, -50%);
    object-fit: cover;
    pointer-events: none;
}

.hero-slide-scrim {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.45);
    z-index: 1;
    pointer-events: none;
}

.hero-slide--video.active .hero-slide-bg,
.hero-slide-bg--video {
    animation: none !important;
}

.hero-slide.active .hero-slide-bg:not(.hero-slide-bg--video) {
    animation: heroZoom 6s ease-out forwards;
}

.hero-slide-content--with-media .hero-content-row {
    align-items: center;
}

.hero-slide-extra-img {
    max-width: min(300px, 42vw);
    height: auto;
    display: block;
}

@media (max-width: 991.98px) {
    .hero-slide-extra-img {
        max-width: 220px;
        margin-top: 1rem;
    }
}

@keyframes heroZoom {
    from { transform: scale(1); }
    to   { transform: scale(1.08); }
}

/* Contenido de texto por slide: ocultos por defecto */
.hero-section .hero-slide-content {
    display: none !important;
    opacity: 0;
}

.hero-section .hero-slide-content.active {
    display: block !important;
    opacity: 1;
    animation: heroContentFadeIn 0.8s ease forwards;
}

@keyframes heroContentFadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to   { opacity: 1; transform: translateY(0); }
}

.hero-overlay {
    background: linear-gradient(90deg, rgba(0, 0, 0, 0.75) 0%, rgba(0, 0, 0, 0.3) 60%, transparent 100%);
    z-index: 1;
}

.hero-title {
    font-size: clamp(2.5rem, 8vw, 5rem);
    letter-spacing: 0.02em;
    font-weight: 500;
}

.hero-subtitle {
    opacity: 0.95;
    font-weight: 400;
}

/* Botón Ver: texto + línea + círculo con flecha */
.hero-cta {
    color: inherit;
    transition: color 0.3s ease;
    gap: 12px;
}

.hero-cta-text {
    font-size: 1rem;
    font-weight: 400;
    letter-spacing: 0.02em;
    transition: color 0.3s ease;
}

.hero-cta-line {
    width: 30px;
    height: 1.5px;
    background: var(--color-white);
    transition: background 0.3s ease;
}

.hero-cta-circle {
    width: 44px;
    height: 44px;
    min-width: 44px;
    font-size: 0.85rem;
    background-color: transparent;
    transition: background-color 0.3s ease, border-color 0.3s ease, transform 0.3s ease;
}

.hero-cta-arrow {
    font-size: 0.9rem;
    transition: color 0.3s ease, transform 0.3s ease;
}

/* Hover: texto azul, línea azul que termina en punto (círculo relleno) */
.hero-cta:hover .hero-cta-text {
    color: var(--color-primary) !important;
}

.hero-cta:hover .hero-cta-line {
    background: var(--color-primary);
}

.hero-cta:hover .hero-cta-circle {
    background-color: var(--color-primary);
    border-color: var(--color-primary) !important;
    transform: scale(0.35);
}

.hero-cta:hover .hero-cta-arrow {
    color: transparent !important;
}

/* Navegación lateral hero (01-05) */
.hero-nav {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.85rem;
}

.hero-nav-item {
    color: inherit;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: color 0.2s;
}

.hero-nav-item:hover {
    color: var(--color-white);
}

.hero-nav-item.active {
    color: var(--color-white);
}

.hero-nav-line {
    width: 20px;
    height: 1px;
    background: currentColor;
    opacity: 0.5;
}

.hero-nav-item.active .hero-nav-line {
    width: 40px;
    opacity: 1;
}

/* ===== Sección Vehículos y misiones ===== */
.vehiculos-misiones-title {
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 700;
    color: var(--color-black);
}

.vehiculos-tabs {
    gap: 1.5rem;
}

.vehiculos-tabs .nav-link {
    color: #6c757d;
    position: relative;
    white-space: nowrap;
    background: none;
    font-size: 1rem;
}

.vehiculos-tabs .nav-link::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 0;
    height: 3px;
    background: var(--color-primary);
    transition: width 0.25s ease;
}

.vehiculos-tabs .nav-link.active {
    color: var(--color-primary);
}

.vehiculos-tabs .nav-link.active::after {
    width: 100%;
}

/* Título de categoría (Livianos, Medianos...) con fondo gris */
.vehiculos-categoria-titulo {
    font-size: 1rem;
    font-weight: 400;
    text-transform: none;
    background-color: #f1f3f4;
    padding: 0.75rem 1rem;
    margin-bottom: 0 !important;
}

/* Área de productos con fondo blanco */
.vehiculos-categoria-inner {
    background-color: #fff;
    border-radius: 0;
}

/* Tarjeta de vehículo: imagen + título */
.vehiculo-card {
    background: transparent;
}

.vehiculo-card-img {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 120px;
    overflow: hidden;
}

.vehiculo-card-img img {
    max-height: 100%;
    max-width: 100%;
    width: auto;
    height: auto;
    object-fit: contain;
}

.vehiculo-card-titulo {
    color: var(--color-black);
    font-size: 0.95rem;
}

/* Filtro: ocultar tarjetas que no coinciden con el tab activo */
.vehiculo-card-wrap.vehiculos-hidden {
    display: none !important;
}

.vehiculos-categoria.vehiculos-categoria-empty {
    display: none;
}

/* Tarjeta clicable y estado activo (línea azul) */
.vehiculo-card {
    cursor: pointer;
    position: relative;
    padding-bottom: 0.25rem;
}
.vehiculo-card::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: 0;
    width: 0;
    height: 3px;
    background: var(--color-primary);
    transition: width 0.2s ease, left 0.2s ease;
    transform: translateX(-50%);
}
.vehiculo-card-wrap.vehiculo-card-active .vehiculo-card::after {
    width: 100%;
}

/* Módulo desplegable al hacer clic en la tarjeta */
.vehiculo-detail-panel {
    display: none;
    padding: 1.5rem 0;
    border-top: 1px solid #dee2e6;
}
.vehiculo-detail-panel.vehiculo-detail-panel-open {
    display: block;
}

.vehiculo-detail-etiquetas {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}
.vehiculo-detail-etiquetas .etiqueta-pill {
    display: inline-block;
    padding: 0.35rem 0.85rem;
    background: #e9ecef;
    color: var(--color-black);
    border-radius: 2rem;
    font-size: 0.9rem;
}

.vehiculo-detail-imagen-wrap {
    display: flex;
    justify-content: flex-end;
    align-items: center;
}
.vehiculo-detail-imagen-wrap .vehiculo-detail-imagen {
    object-fit: contain;
}

/* ===== Sección Servicios ===== */
.section-servicios {
    background-color: var(--color-primary) !important;
}

/* Sin fondo blanco del .card; la fila usa align-items-start para no igualar alturas y estirar la foto */
.section-servicios .servicio-card {
    --bs-card-bg: transparent;
    background-color: transparent;
    box-shadow: none;
}

.servicios-title {
    font-size: clamp(1.5rem, 4vw, 2rem);
    font-weight: 300;
}

.servicio-card-img {
    aspect-ratio: 3/2;
    overflow: hidden;
}

.servicio-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

/* Financiación: misma altura visual que la tarjeta de repuestos */
.section-servicios .servicio-card > .servicio-card-img:not(.servicio-card-img--completo) {
    aspect-ratio: unset;
    height: 498px;
}

/* Imagen con arte completo (sin recorte tipo cover ni caja 3:2) */
.servicio-card-img.servicio-card-img--completo {
    aspect-ratio: auto;
}

.servicio-card-img.servicio-card-img--completo img {
    display: block;
    height: auto;
    object-fit: contain;
}

/* Zoom de la imagen de fondo al pasar el mouse */
.servicio-card:hover .servicio-card-img img {
    transform: scale(1.15);
}

.servicio-card:hover .servicio-card-img--completo img {
    transform: none;
}

.servicio-card-overlay {
    background: linear-gradient(to top, rgba(0, 0, 0, 0.85), transparent);
}

/* ===== Footer ===== */
.site-footer .footer-title {
    font-size: 1rem;
    color: var(--color-white);
}

.site-footer .footer-list a:hover {
    color: var(--color-white) !important;
}

.footer-logo.logo-aurelia,
.footer-logo.logo-iveco {
    width: auto;
}

/* Footer: logos uno debajo del otro solo en móvil (IVECO arriba, Navicam abajo — mismo criterio que el header) */
@media (max-width: 767.98px) {
    .footer-logos.row {
        flex-direction: inherit;
        align-items: flex-start;
        gap: 0px;
    }
    .footer-logos.row > [class*="col-"] {
        max-width: 100%;
        flex: 0 0 100%;
        text-align: left !important;
    }
    .footer-logos.row > [class*="col-"]:first-child {
        order: 2;
    }
    .footer-logos.row > [class*="col-"]:last-child {
        order: 1;
    }
}

.site-footer .btn-primary {
    background-color: var(--color-primary);
    border-color: var(--color-primary);
    padding: 0.6rem 1.2rem;
}

.site-footer .btn-primary:hover {
    filter: brightness(1.1);
    background-color: var(--color-primary);
    border-color: var(--color-primary);
}

/* Botón Bot / SOS flotante (imagen circular, arriba del WhatsApp) */
.btn-tel {
    bottom: 5.25rem;
    right: 1.25rem;
    width: 56px;
    height: 56px;
    padding: 0;
    overflow: hidden;
    background-color: #f7f7f7;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    z-index: 1020;
    transition: transform 0.2s, box-shadow 0.2s;
}

.btn-tel:hover {
    transform: scale(1.08);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
}

.btn-tel-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Botón WhatsApp flotante */
.btn-whatsapp {
    bottom: 1.25rem;
    right: 1.25rem;
    width: 56px;
    height: 56px;
    background-color: #25d366;
    color: #fff;
    font-size: 1.75rem;
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.5);
    z-index: 1020;
    transition: transform 0.2s, box-shadow 0.2s;
}

.btn-whatsapp:hover {
    color: #fff;
    transform: scale(1.08);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.6);
}

/* Botón volver arriba (encima del teléfono) */
.btn-scroll-top {
    bottom: 9.25rem;
    right: 1.25rem;
    width: 50px;
    height: 50px;
    padding: 0;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s, visibility 0.3s;
    z-index: 1020;
}

.btn-scroll-top.visible {
    opacity: 1;
    visibility: visible;
}

.btn-scroll-top:hover {
    background-color: var(--color-primary);
    border-color: var(--color-primary);
}

/* ===== Página Service Oficial ===== */
.page-service-hero {
    min-height: 45vh;
    display: flex;
    align-items: center;
    background: #1a1a1a;
    background-image: url('../images/service-iveco-hero.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.page-service-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(0, 0, 0, 0.5) 0%, transparent 50%);
}

.page-service-hero-title {
    position: relative;
    z-index: 2;
    margin: 0;
    padding: 2.5rem 0 2.5rem 1.5rem;
    padding-left: clamp(1.5rem, 5vw, 3rem);
    font-size: clamp(2rem, 6vw, 3.5rem);
    font-weight: 700;
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: 0.02em;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.5);
}

.page-service-intro {
    background-color: #000000;
    padding-top: 3.5rem;
    padding-bottom: 3.5rem;
}

.page-service-intro-content {
    max-width: 65%;
}

.page-service-intro-title {
    font-size: clamp(1.5rem, 4vw, 2.25rem);
    font-weight: 600;
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: 0.02em;
    margin-top: 0;
}

.page-service-intro-text {
    font-size: 1rem;
    line-height: 1.6;
    color: #ffffff;
    margin-bottom: 0;
}

.page-service-form .form-control:focus {
    border-color: var(--color-primary);
    box-shadow: 0 0 0 0.25rem rgba(13, 110, 253, 0.25);
}

.page-service-form .form-label {
    color: rgba(255, 255, 255, 0.9);
}

@media (max-width: 767.98px) {
    .page-service-intro-content {
        max-width: 100%;
    }
}

/* ===== Service Cards ===== */
.page-service-cards {
    padding-top: 0;
}

.service-card {
    background-color: #111111;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 6px;
    padding: 2rem 1.75rem;
    transition: border-color 0.25s ease, transform 0.25s ease;
}

.service-card:hover {
    border-color: rgba(255, 255, 255, 0.25);
    transform: translateY(-3px);
}

.service-card-icon {
    font-size: 2rem;
    color: #0d6efd;
    margin-bottom: 1rem;
    line-height: 1;
}

.service-card-title {
    font-size: 1.1rem;
    font-weight: 600;
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: 0.03em;
    margin-bottom: 0.75rem;
}

.service-card-text {
    font-size: 0.95rem;
    line-height: 1.65;
    color: rgba(255, 255, 255, 0.75);
    margin-bottom: 0;
}

.page-service-contact-title {
    font-size: clamp(1.35rem, 3vw, 1.75rem);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.03em;
    margin-bottom: 0;
}

.page-service-contact-lead {
    font-size: 1rem;
    line-height: 1.5;
    max-width: 40rem;
}

.page-service-contact-item {
    background-color: #111111;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 6px;
    padding: 1.75rem 1.5rem;
}

.page-service-contact-branch {
    font-size: 1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    color: #ffffff;
    margin-bottom: 0.75rem;
}

.page-service-contact-phone {
    font-size: 1.15rem;
    font-weight: 500;
    color: #1554ff;
    display: inline-block;
}

.page-service-contact-phone:hover {
    color: #1554ff;
}

/* Hero repuestos: misma base que Service, imagen propia */
.page-service-hero.page-repuestos-hero {
    background-image: url('../images/hero_banner_parti_accessori.jpg');
}

.page-service-hero.page-financiacion-hero {
    background-image: url('../images/hero_banner_repuestos.webp');
}

.page-repuestos-body .repuestos-texto,
.page-repuestos-body .repuestos-nexpro {
    color: rgba(255, 255, 255, 0.78);
}

.page-repuestos-body .repuestos-texto p,
.page-repuestos-body .repuestos-nexpro p {
    color: rgba(255, 255, 255, 0.78);
}

.page-repuestos-body .repuestos-section-title {
    color: #ffffff;
}

.page-repuestos-body .repuestos-nexpro-subtitle {
    color: #ffffff;
}

.page-repuestos-body .repuestos-texto strong,
.page-repuestos-body .repuestos-nexpro strong {
    color: #ffffff;
    font-weight: 700;
}

/* ===== Página Rental ===== */
.page-rental-hero {
    overflow: hidden;
}

.page-rental-hero-img {
    display: block;
    width: 100%;
    object-fit: cover;
    max-height: 70vh;
}

.page-rental-intro-parrafo {
    font-size: 1.0625rem;
    line-height: 1.85;
    max-width: 32em;
    color: #212529;
}

.page-rental-intro-texto {
    padding-top: 1.5rem;
    padding-bottom: 1.5rem;
}

.page-rental-intro-img {
    display: block;
    object-fit: cover;
    object-position: center;
    min-height: 320px;
}

@media (min-width: 992px) {
    .page-rental-intro-texto {
        max-width: 100%;
        padding-top: 2rem;
        padding-bottom: 2rem;
    }
    .page-rental-intro-img {
        min-height: 420px;
        height: 100%;
        width: 100%;
    }
}

.page-rental-section-title {
    font-size: clamp(1.5rem, 4vw, 2rem);
    font-weight: 700;
    color: #ffffff;
}

.page-rental-list li {
    position: relative;
    padding-left: 1.25rem;
    margin-bottom: 0.85rem;
    line-height: 1.5;
}

.page-rental-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.5em;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #ffffff;
}

.page-rental-cuadrada {
    border-color: var(--color-primary) !important;
}

.page-rental-flota-list li {
    margin-bottom: 0.75rem;
    line-height: 1.6;
    color: #ffffff;
}

.page-rental-proyectos-title {
    font-size: clamp(1.5rem, 4vw, 2rem);
    font-weight: 700;
    color: #3366ff;
}

.page-rental-proyectos-list li {
    position: relative;
    padding-left: 1rem;
    margin-bottom: 0.5rem;
    color: #333;
    font-size: 0.95rem;
}

.page-rental-proyectos-list li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: #666;
}

.page-rental-clientes-title {
    font-size: clamp(1.5rem, 4vw, 2rem);
    font-weight: 700;
    color: #3366ff;
    text-align: center;
}

.page-rental-cliente-logo {
    min-height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.page-rental-cliente-logo img {
    max-height: 50px;
    max-width: 180px;
    object-fit: contain;
    filter: grayscale(100%);
    opacity: 0.85;
    transition: filter 0.3s, opacity 0.3s;
}

.page-rental-cliente-logo img:hover {
    filter: grayscale(0%);
    opacity: 1;
}

.rental-logo-text {
    font-size: 1.25rem;
    font-weight: 700;
    color: #333;
}

.page-rental-clientes .carousel {
    position: relative;
}

.page-rental-clientes .carousel-control-prev,
.page-rental-clientes .carousel-control-next {
    width: 48px;
    height: 48px;
    top: 50%;
    transform: translateY(-50%);
    opacity: 0.8;
}

/* ===== Responsive ===== */
@media (max-width: 991.98px) {
    .hero-nav {
        display: none !important;
    }

    .dropdown-mega .dropdown-menu {
        left: 0;
        transform: none;
        max-width: 100%;
    }

    .dropdown-submenu > .dropdown-submenu-menu {
        position: static;
        box-shadow: none;
        padding-left: 1rem;
    }

    /* Tabs de vehículos: scroll horizontal en móvil si hay muchos */
    .vehiculos-tabs {
        flex-wrap: nowrap;
        overflow-x: auto;
        overflow-y: hidden;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: thin;
        margin-bottom: 0.5rem;
    }
    .vehiculos-tabs .nav-link {
        flex-shrink: 0;
    }
}

@media (max-width: 575.98px) {
    .hero-cta-circle {
        width: 36px;
        height: 36px;
        min-width: 36px;
        font-size: 0.75rem;
    }

    .hero-section {
        min-height: 60vh;
    }

    .hero-title {
        font-size: clamp(1.75rem, 6vw, 2.5rem);
    }

    .hero-subtitle {
        font-size: 1rem;
    }
}

/* ===== Página Camiones > Daily Furgón ===== */
/* Hero: igual al banner Revolution Slider (fondo + logo eDaily + furgón) */
.daily-furgon-hero {
    min-height: 320px;
    height: 50vh;
    max-height: 878px;
}

.daily-furgon-hero-bg {
    position: absolute;
    inset: 0;
    background-color: #1a1a2e;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    transition: transform 8s ease-out;
}

.daily-furgon-hero:hover .daily-furgon-hero-bg {
    transform: scale(1.05);
}

.daily-furgon-hero-overlay {
    background: linear-gradient(180deg, rgba(0,0,0,0.25) 0%, transparent 50%, rgba(0,0,0,0.2) 100%);
    z-index: 1;
}

.daily-furgon-hero-content {
    z-index: 2;
    pointer-events: none;
}

.daily-furgon-hero-logo {
    position: absolute;
    left: 22%;
    top: 7%;
    max-width: 26%;
    height: auto;
    object-fit: contain;
}

.daily-furgon-hero-furgon,
.daily-furgon-hero-text {
    position: absolute;
    left: 46%;
    top: 3%;
    max-width: 30%;
    height: auto;
    object-fit: contain;
}

.daily-furgon-hero-text {
    font-family: var(--font-family-base);
    font-size: clamp(2.5rem, 5vw, 62px);
    font-weight: 400;
    line-height: 1.2;
    color: #fff;
    text-align: left;
    white-space: nowrap;
    max-width: none;
}

/* Daily Chasis: logo + texto CHASIS uno al lado del otro */
.daily-chasis-hero-brand {
    flex-wrap: nowrap;
}
.daily-chasis-hero-brand .daily-furgon-hero-text {
    position: static;
}
.daily-chasis-hero-brand .daily-furgon-hero-logo,
.daily-chasis-hero-brand .daily-furgon-hero-furgon {
    position: static;
}
.daily-chasis-hero-furgon-img {
    max-width: 280px;
    height: auto;
    object-fit: contain;
}
@media (min-width: 992px) {
    .daily-chasis-hero-furgon-img {
        max-width: 414px;
    }
}
.daily-chasis-hero-logo {
    max-width: 280px;
    width: 100%;
    height: auto;
    object-fit: contain;
}
@media (min-width: 992px) {
    .daily-chasis-hero-logo {
        max-width: 376px;
    }
}

/* City Bus: hero más bajo (655px como el slider original) */
.city-bus-hero {
    max-height: 655px;
    height: 45vh;
}
@media (min-width: 992px) {
    .city-bus-hero {
        height: 655px;
        min-height: 655px;
    }
}
/* City Bus: logo arriba, texto "CITY BUS 19+1" abajo */
.city-bus-hero-brand {
    flex-direction: column;
}
.city-bus-hero-brand .daily-furgon-hero-text {
    white-space: normal;
    font-size: clamp(1.5rem, 3.5vw, 41px);
}
.tector-hero-logo {
    max-width: 280px;
}
@media (min-width: 992px) {
    .tector-hero-logo {
        max-width: 356px;
    }
}
/* HI-ROAD: solo texto en hero, centrado arriba */
.hi-road-hero-content .daily-furgon-hero-text {
    position: static;
}
.hi-road-hero-text {
    font-size: clamp(2rem, 5vw, 65px);
    font-weight: 500;
    color: #fff;
    line-height: 1.2;
    letter-spacing: 0.02em;
}

/* HI-WAY: solo texto en hero, izquierda */
.hi-way-hero-content .daily-furgon-hero-text {
    position: static;
}
.hi-way-hero-text {
    font-size: clamp(2.5rem, 6vw, 99px);
    font-weight: 500;
    color: #fff;
    line-height: 1.2;
    letter-spacing: 0.02em;
}

/* S-WAY: hero 793px, logo centrado */
.s-way-hero {
    max-height: 793px;
    height: 50vh;
}
@media (min-width: 992px) {
    .s-way-hero {
        height: 793px;
        min-height: 793px;
    }
}
.s-way-hero-content {
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
}
.s-way-hero-logo {
    max-width: 280px;
    width: auto;
    height: auto;
    object-fit: contain;
}
@media (min-width: 992px) {
    .s-way-hero-logo {
        max-width: 626px;
    }
}

/* S-WAY: cuatro pilares (Robusto, Conectado, Potente, Vanguardia) */
.s-way-feature-box {
    padding: 1rem 0;
}
.s-way-feature-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--color-primary);
    margin-bottom: 0.5rem;
}
.s-way-feature-text {
    font-size: 0.95rem;
    line-height: 1.5;
    color: #333;
}

/* S-WAY Performance: fondo blanco, título negro */
.s-way-performance.daily-furgon-tecno {
    background-color: #fff !important;
}

/* S-WAY Experiencia de conducción: fondo negro, letra blanca */
.s-way-experiencia.daily-furgon-tecno {
    background-color: #000 !important;
}
.s-way-experiencia .daily-furgon-tecno-title,
.s-way-experiencia .daily-furgon-tecno-card-text {
    color: #fff !important;
}

/* Card title en overlay (Performance, etc.) */
.daily-furgon-tecno-card-title {
    font-size: 1rem;
}

/* HI-LAND: solo texto en hero, izquierda, altura 763px */
.hi-land-hero {
    max-height: 763px;
    height: 50vh;
}
@media (min-width: 992px) {
    .hi-land-hero {
        height: 763px;
        min-height: 763px;
    }
}
.hi-land-hero-content .daily-furgon-hero-text {
    position: static;
}
.hi-land-hero-text {
    font-size: clamp(2.25rem, 5.5vw, 84px);
    font-weight: 500;
    color: #fff;
    line-height: 1.2;
    letter-spacing: 0.02em;
}

/* Tector Semipesados: hero 694px */
.tector-semi-hero {
    max-height: 694px;
    height: 45vh;
}
@media (min-width: 992px) {
    .tector-semi-hero {
        height: 694px;
        min-height: 694px;
    }
}

/* Desktop: altura fija como el slider original (878px) */
@media (min-width: 992px) {
    .daily-furgon-hero {
        height: 878px;
        min-height: 878px;
    }
    .daily-furgon-hero-bg {
        background-size: cover;
    }
    .daily-furgon-hero-overlay {
        background: none;
    }
    .daily-furgon-hero-logo {
        left: 406px;
        top: 65px;
        width: 376px;
        max-width: none;
    }
    .daily-furgon-hero-furgon,
    .daily-furgon-hero-text {
        left: 728px;
        top: 26px;
        width: auto;
        max-width: none;
    }
    .daily-furgon-hero-furgon {
        width: 414px;
    }
    .daily-furgon-hero-text {
        font-size: 62px;
    }
}

@media (max-width: 991px) {
    .daily-furgon-hero-logo {
        left: 10%;
        top: 8%;
        max-width: 35%;
    }
    .daily-furgon-hero-furgon,
    .daily-furgon-hero-text {
        left: 38%;
        top: 28%;
        max-width: 50%;
    }
    .daily-furgon-hero-text {
        white-space: normal;
        word-break: break-word;
    }
}

.daily-furgon-hero-title {
    font-size: clamp(2rem, 8vw, 4rem);
    letter-spacing: 0.02em;
    text-shadow: 0 2px 8px rgba(0,0,0,0.5);
}

/* Intro: texto + imagen */
.daily-furgon-intro-title {
    font-size: clamp(1.5rem, 4vw, 2.25rem);
    color: var(--color-black);
}

.daily-furgon-intro-text {
    font-size: 1rem;
    line-height: 1.7;
    color: #333;
}

.daily-furgon-intro-img-wrap {
    position: relative;
}

.daily-furgon-intro-img {
    max-height: 380px;
    width: auto;
    object-fit: contain;
    object-position: center;
}

@media (min-width: 992px) {
    .daily-furgon-intro-img {
        max-height: 420px;
    }
}

/* Tecnología y Seguridad - cuadrados con zoom */
.daily-furgon-tecno {
    background-color: var(--color-primary) !important;
}

.daily-furgon-tecno-title {
    font-size: clamp(1.5rem, 4vw, 2rem);
}

.daily-furgon-tecno-card {
    aspect-ratio: 1;
    min-height: 260px;
    background-color: #0a0a0a;
}

.daily-furgon-tecno-card-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    transition: transform 0.6s ease;
}

.daily-furgon-tecno-card:hover .daily-furgon-tecno-card-bg {
    transform: scale(1.12);
}

.daily-furgon-tecno-card-overlay {
    background: linear-gradient(to top, rgba(0,0,0,0.85), transparent 60%);
    z-index: 2;
}

.daily-furgon-tecno-card-text {
    line-height: 1.4;
}

@media (max-width: 575.98px) {
    .daily-furgon-tecno-card {
        min-height: 220px;
        aspect-ratio: 16/10;
    }
}

/* Fichas técnicas */
.daily-furgon-fichas {
    background-color: var(--color-black) !important;
}

.daily-furgon-fichas-title {
    font-size: clamp(1.35rem, 4vw, 1.75rem);
}

.daily-furgon-fichas-desc {
    font-size: 0.95rem;
    line-height: 1.5;
}

.daily-furgon-ficha-btn {
    padding: 0.75rem 1.25rem;
    font-weight: 600;
    text-align: center;
    transition: filter 0.2s, transform 0.2s;
}

.daily-furgon-ficha-btn:hover {
    color: #fff !important;
    filter: brightness(1.1);
    transform: translateX(4px);
}

@media (max-width: 767.98px) {
    .daily-furgon-ficha-btn {
        width: 100%;
    }
}

/* ===== Página Contacto ===== */

/* Hero banner */
.page-contacto-hero {
    min-height: 40vh;
    display: flex;
    align-items: center;
    background: #1a1a1a url('../images/contacto-banner.webp') center/cover no-repeat;
}

.page-contacto-hero-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.45);
}

.page-contacto-hero-title {
    position: relative;
    z-index: 2;
    margin: 0;
    padding: 2.5rem clamp(1.5rem, 5vw, 3rem);
    font-size: clamp(2rem, 6vw, 3.5rem);
    font-weight: 300;
    color: #ffffff;
    letter-spacing: 0.01em;
    text-shadow: 0 1px 4px rgba(0, 0, 0, 0.4);
}

/* Sección tarjetas sucursales */
.page-contacto-sucursales {
    background: #ffffff;
}

.contacto-card {
    background: #fff;
    border: 1px solid #e5e5e5;
    border-radius: 4px;
    padding: 2rem 1.75rem;
}

.contacto-city {
    font-size: clamp(1.6rem, 3vw, 2rem);
    font-weight: 300;
    color: #000;
    margin-bottom: 1.25rem;
    padding-bottom: 0;
}

.contacto-section-title {
    font-size: 1rem;
    font-weight: 300;
    color: #000;
    margin-bottom: 0.75rem;
    padding-bottom: 0;
}

.contacto-label {
    font-size: 0.82rem;
    font-weight: 700;
    color: #000;
    margin-bottom: 0.3rem;
    text-transform: none;
}

.contacto-phone {
    display: flex;
    align-items: center;
    gap: 0.45rem;
    color: #000;
    text-decoration: none;
    font-size: 0.92rem;
    margin-bottom: 0.75rem;
    transition: color 0.2s;
}

.contacto-phone:hover {
    color: var(--color-primary);
}

.contacto-icon-phone {
    width: 14px;
    height: 14px;
    fill: var(--color-primary);
    flex-shrink: 0;
}

.contacto-address-list {
    list-style: none;
    padding: 0;
    margin: 0 0 1.25rem;
}

.contacto-address-list li {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    font-size: 0.92rem;
    color: #333;
    margin-bottom: 0.6rem;
}

.contacto-address-list li a {
    color: #333;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: color 0.2s;
}

.contacto-address-list li a:hover {
    color: var(--color-primary);
}

.contacto-icon-map {
    width: 13px;
    height: 16px;
    fill: var(--color-primary);
    flex-shrink: 0;
    margin-top: 2px;
}

.contacto-icon-email {
    width: 16px;
    height: 14px;
    fill: var(--color-primary);
    flex-shrink: 0;
}

.contacto-btn-maps {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--color-primary);
    color: #fff;
    border-radius: 4px;
    padding: 0.5rem 1.1rem;
    font-size: 0.88rem;
    font-weight: 600;
    text-decoration: none;
    transition: background 0.2s, transform 0.2s;
}

.contacto-btn-maps svg {
    width: 12px;
    height: 12px;
    fill: #fff;
}

.contacto-btn-maps:hover {
    background: #0a58ca;
    color: #fff;
    transform: translateX(2px);
}

/* Sección formulario */
.page-contacto-form-section {
    background: #111111;
}

.contacto-form-heading {
    font-size: 1.4rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 0.75rem;
}

.contacto-form-desc {
    font-size: 0.92rem;
    color: rgba(255, 255, 255, 0.75);
    line-height: 1.6;
}

.contacto-input {
    display: block;
    width: 100%;
    background: transparent;
    border: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.4);
    border-radius: 0;
    color: #fff;
    font-size: 0.9rem;
    font-family: var(--font-family-base);
    padding: 0.55rem 0.25rem;
    outline: none;
    transition: border-color 0.2s;
}

.contacto-input::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.contacto-input:focus {
    border-bottom-color: var(--color-primary);
    background: transparent;
    box-shadow: none;
}

.contacto-textarea {
    resize: vertical;
    min-height: 100px;
}

.contacto-required-note {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.5);
    margin: 0;
}

.contacto-checkbox-label {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    color: rgba(255, 255, 255, 0.75);
    font-size: 0.88rem;
    cursor: pointer;
}

.contacto-checkbox-label input[type="checkbox"] {
    width: 16px;
    height: 16px;
    accent-color: var(--color-primary);
    cursor: pointer;
}

.contacto-btn-submit {
    background: var(--color-primary);
    color: #fff;
    border: none;
    border-radius: 4px;
    padding: 0.65rem 2rem;
    font-size: 0.95rem;
    font-weight: 600;
    font-family: var(--font-family-base);
    cursor: pointer;
    transition: background 0.2s, transform 0.15s;
}

.contacto-btn-submit:hover {
    background: #0a58ca;
    transform: translateY(-1px);
}

@media (max-width: 767.98px) {
    .page-contacto-hero {
        min-height: 28vh;
    }
    .contacto-card {
        padding: 1.5rem 1.25rem;
    }
}

/* ===== Página Repuestos ===== */
.repuestos-hero {
    position: relative;
    min-height: 220px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
}

.repuestos-hero-overlay {
    position: absolute;
    inset: 0;
    background: rgba(10, 30, 60, 0.45);
}

.repuestos-hero-content {
    position: relative;
    z-index: 1;
    padding: 3rem 2.5rem;
}

.repuestos-hero-title {
    color: #ffffff;
    font-size: clamp(1.6rem, 4vw, 2.6rem);
    font-weight: 300;
    letter-spacing: 0.01em;
    margin: 0;
    max-width: 600px;
    line-height: 1.25;
}

.repuestos-texto {
    font-size: 0.97rem;
    color: #222;
    line-height: 1.7;
}

.repuestos-texto p {
    margin-bottom: 1.25rem;
}

.repuestos-section-title {
    font-size: clamp(1.2rem, 2.5vw, 1.6rem);
    font-weight: 700;
    color: #1554ff;
    letter-spacing: 0.02em;
    margin-bottom: 1rem;
    text-transform: uppercase;
}

.repuestos-nexpro {
    font-size: 0.97rem;
    color: #222;
    line-height: 1.7;
}

.repuestos-nexpro-subtitle {
    font-size: 1rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.02em;
}

.repuestos-nexpro p {
    margin-bottom: 1rem;
}

.repuestos-nexpro-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.repuestos-nexpro-list li {
    padding: 0.35rem 0 0.35rem 1.6rem;
    position: relative;
}

.repuestos-nexpro-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #003087;
    font-weight: 700;
}

@media (max-width: 767.98px) {
    .repuestos-hero {
        min-height: 160px;
    }
    .repuestos-hero-content {
        padding: 2rem 1.25rem;
    }
}
