/**
 * =====================================================
 * HF IMPORTS - Vehicle Detail Page (TEST)
 * 100% standalone – zero external dependencies
 * Palette: Black / White / Red
 * =====================================================
 */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800;900&display=swap');

/* ===== VARIABLES ===== */
:root {
    --black: #000;
    --black-soft: #0a0a0a;
    --black-light: #141414;
    --white: #fff;
    --gray-50: #f7f7f7;
    --gray-100: #f0f0f0;
    --gray-200: #e0e0e0;
    --gray-300: #c7c7c7;
    --gray-400: #999;
    --gray-500: #6b6b6b;
    --gray-600: #4a4a4a;
    --gray-700: #333;
    --gray-800: #1f1f1f;
    --red: #dc2626;
    --red-dark: #b91c1c;
    --red-light: #fef2f2;
    --green-wa: #25d366;
    --radius: 10px;
    --radius-lg: 14px;
    --tr: all .25s ease;
}

/* ===== RESET ===== */
*, *::before, *::after { margin:0; padding:0; box-sizing:border-box; }

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    background: var(--white);
    color: var(--black);
    line-height: 1.5;
    min-height: 100vh;
    overflow-x: hidden;
}

/* ===== ANIMATIONS ===== */
@keyframes fadeUp { from { opacity:0; transform:translateY(12px); } to { opacity:1; transform:translateY(0); } }
@keyframes fadeIn { from { opacity:0; } to { opacity:1; } }
@keyframes spin { to { transform: rotate(360deg); } }

/* ================================================================
   DESKTOP: SPLIT-SCREEN
   ================================================================ */
.detail-split {
    display: flex;
    width: 100%;
    min-height: calc(100vh - 56px);
}

/* --- LEFT: Sticky Gallery --- */
.detail-left {
    width: 52%;
    position: sticky;
    top: 0;
    height: 100vh;
    background: var(--black);
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.detail-left .gallery-main {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--black);
    overflow: hidden;
}

.detail-left .gallery-main img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    cursor: zoom-in;
    transition: transform .4s ease;
}

.detail-left .gallery-main img:hover {
    transform: scale(1.02);
}

/* Thumbnails */
.detail-left .gallery-thumbnails {
    display: flex;
    gap: 5px;
    padding: 8px 12px;
    background: var(--black-light);
    overflow-x: auto;
    scrollbar-width: thin;
    scrollbar-color: #555 transparent;
}
.detail-left .gallery-thumbnails::-webkit-scrollbar { height: 3px; }
.detail-left .gallery-thumbnails::-webkit-scrollbar-thumb { background: #555; border-radius: 2px; }

.detail-left .gallery-thumbnails img {
    width: 68px;
    height: 48px;
    object-fit: cover;
    border-radius: 5px;
    cursor: pointer;
    border: 2px solid transparent;
    opacity: .4;
    flex-shrink: 0;
    transition: var(--tr);
}
.detail-left .gallery-thumbnails img:hover { opacity: .75; }
.detail-left .gallery-thumbnails img.active { opacity: 1; border-color: var(--red); }

/* --- RIGHT: Scrollable Content --- */
.detail-right {
    width: 48%;
    padding: 32px 40px 72px;
    overflow-y: auto;
    background: var(--white);
    display: flex;
    flex-direction: column;
    gap: 18px;
    animation: fadeIn .4s ease;
}

/* ===== VEHICLE HEADER ===== */
.vehicle-header-v4 { animation: fadeUp .35s ease; }

.vehicle-header-v4 h1 {
    font-size: clamp(21px, 2.4vw, 30px);
    font-weight: 900;
    letter-spacing: -.4px;
    color: var(--black);
    line-height: 1.15;
    margin-bottom: 10px;
}

/* Tags */
.vehicle-tags { display:flex; gap:6px; flex-wrap:wrap; margin-bottom:12px; }

.vehicle-tag {
    display: inline-flex;
    align-items: center;
    height: 26px;
    padding: 0 10px;
    background: var(--gray-50);
    border: 1px solid var(--gray-200);
    border-radius: 5px;
    font-size: 11px;
    font-weight: 600;
    color: var(--gray-600);
    transition: var(--tr);
}
.vehicle-tag:hover { border-color: var(--red); color: var(--red); }

/* Price */
.vehicle-price-row { display:flex; align-items:baseline; gap:10px; }

.vehicle-price-main {
    font-size: clamp(24px, 3.2vw, 36px);
    font-weight: 900;
    color: var(--black);
    letter-spacing: -1px;
    line-height: 1;
}

.vehicle-price-label {
    font-size: 11px;
    font-weight: 700;
    color: var(--red);
    text-transform: uppercase;
    letter-spacing: 1.5px;
}

/* ===== PRICE ALERT ===== */
.price-alert {
    background: var(--gray-50);
    border: 1px solid var(--gray-200);
    border-left: 3px solid var(--red);
    border-radius: var(--radius);
    padding: 10px 14px;
    font-size: 11px;
    color: var(--gray-600);
    display: flex;
    align-items: center;
    gap: 10px;
    animation: fadeUp .35s ease .05s both;
}
.price-alert i { font-size: 13px; color: var(--red); flex-shrink: 0; }

/* ===== BENTO SPECS ===== */
.bento-specs {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 7px;
    animation: fadeUp .35s ease .1s both;
}

.bento-item {
    background: var(--gray-50);
    border: 1px solid var(--gray-200);
    border-radius: 8px;
    padding: 12px 14px;
    transition: var(--tr);
    display: flex;
    flex-direction: column;
    gap: 1px;
}
.bento-item:hover { border-color: var(--black); }

.bento-item.bento-wide {
    grid-column: 1 / -1;
    flex-direction: row;
    align-items: center;
    gap: 10px;
    padding: 10px 14px;
}
.bento-item.bento-wide .bento-icon { font-size: 20px; flex-shrink: 0; }
.bento-item.bento-wide .bento-text { flex: 1; }

.bento-label {
    font-size: 9px;
    font-weight: 700;
    color: var(--gray-500);
    text-transform: uppercase;
    letter-spacing: .8px;
}

.bento-value {
    font-size: 14px;
    font-weight: 800;
    color: var(--black);
}

/* ===== AD SLOTS (collapse when empty) ===== */
.ad-slot { display:none; }
.ad-slot:not(:empty) {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    border-radius: var(--radius);
    overflow: hidden;
}

/* ===== REGION PRICES ===== */
.prices-section {
    display: flex;
    flex-direction: column;
    gap: 8px;
    animation: fadeUp .35s ease .15s both;
}

.prices-section .section-title {
    font-size: 13px;
    font-weight: 800;
    color: var(--black);
    text-transform: uppercase;
    letter-spacing: .5px;
}

.region-card {
    background: var(--white);
    border-radius: var(--radius);
    padding: 16px 18px;
    border: 1px solid var(--gray-200);
    position: relative;
    transition: var(--tr);
}
.region-card:hover { border-color: var(--gray-400); }

.region-card::before {
    content: '';
    position: absolute;
    left: 0; top: 0; bottom: 0;
    width: 3px;
    background: var(--red);
    border-radius: 10px 0 0 10px;
}

.region-name {
    font-weight: 700;
    color: var(--gray-600);
    margin-bottom: 2px;
    font-size: 12px;
    padding-left: 10px;
}

.region-price {
    font-size: 22px;
    font-weight: 900;
    color: var(--black);
    padding-left: 10px;
    letter-spacing: -.5px;
}

.region-note {
    font-size: 10px;
    color: var(--gray-400);
    padding-left: 10px;
    margin-top: 1px;
}

/* Details dropdown */
.region-details {
    margin: 8px 0 0 10px;
    background: var(--gray-50);
    border-radius: 6px;
    border: 1px solid var(--gray-200);
    overflow: hidden;
}
.region-details summary {
    cursor: pointer;
    font-weight: 600;
    font-size: 11px;
    padding: 8px 10px;
    display: flex;
    align-items: center;
    gap: 5px;
    list-style: none;
    color: var(--gray-600);
    transition: var(--tr);
}
.region-details summary:hover { background: var(--gray-100); color: var(--black); }
.region-details summary::-webkit-details-marker { display: none; }
.region-details .arrow { transition: transform .2s; color: var(--red); font-weight: bold; }
.region-details[open] .arrow { transform: rotate(90deg); }

.region-line {
    display: flex;
    justify-content: space-between;
    padding: 7px 10px;
    font-size: 11px;
    border-bottom: 1px solid var(--gray-100);
    color: var(--gray-700);
}
.region-line:last-child { border-bottom: none; }

/* ===== ALERT CARDS ===== */
.alert-card-v4 {
    border-radius: 8px;
    padding: 12px 14px;
    display: flex;
    align-items: center;
    gap: 10px;
    animation: fadeUp .3s ease;
}

.alert-card-v4.warning {
    background: var(--gray-50);
    border: 1px solid var(--gray-200);
    border-left: 3px solid var(--red);
}

.alert-card-v4.danger {
    background: var(--red-light);
    border: 1px solid #fecaca;
    border-left: 3px solid var(--red);
}

.alert-card-v4 .alert-icon { font-size: 18px; flex-shrink: 0; }
.alert-card-v4 .alert-body { flex: 1; }
.alert-card-v4 .alert-title { font-size: 12px; font-weight: 800; color: var(--black); margin-bottom: 1px; }
.alert-card-v4 .alert-text { font-size: 11px; font-weight: 500; color: var(--gray-600); }
.alert-card-v4.danger .alert-title { color: var(--red-dark); }
.alert-card-v4.danger .alert-text { color: var(--red); }

/* ===== WHATSAPP CTA ===== */
.btn-whatsapp-v4 {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    height: 48px;
    background: var(--green-wa);
    color: var(--white);
    border: none;
    border-radius: var(--radius);
    font-size: 14px;
    font-weight: 700;
    cursor: pointer;
    transition: var(--tr);
    animation: fadeUp .35s ease .2s both;
}
.btn-whatsapp-v4:hover {
    opacity: .92;
    transform: translateY(-2px);
    box-shadow: 0 6px 18px rgba(37,211,102,.3);
}
.btn-whatsapp-v4 i { font-size: 17px; }

/* ===== CERTIFICATE BUTTON ===== */
.btn-certificado {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    padding: 12px 18px;
    border: none;
    border-radius: var(--radius);
    font-size: 13px;
    font-weight: 700;
    font-family: 'Inter', sans-serif;
    cursor: pointer;
    transition: var(--tr);
    text-align: center;
    background: linear-gradient(135deg, #dc2626, #b91c1c);
    color: #fff;
    box-shadow: 0 4px 16px rgba(220,38,38,.25);
    position: relative;
    overflow: hidden;
}
.btn-certificado::before {
    content: '';
    position: absolute;
    top: 0; left: -100%;
    width: 100%; height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,.15), transparent);
    transition: left .5s;
}
.btn-certificado:hover::before { left: 100%; }
.btn-certificado:hover {
    transform: translateY(-1px);
    box-shadow: 0 6px 22px rgba(220,38,38,.35);
}
.btn-certificado i { font-size: 14px; }

.btn-certificado-loading {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 11px;
    color: var(--gray-500);
    margin-top: 4px;
}
.btn-certificado-loading .mini-spinner {
    width: 12px; height: 12px;
    border: 2px solid var(--gray-200);
    border-top-color: var(--red);
    border-radius: 50%;
    animation: spin .6s linear infinite;
}

/* ===== COMPANY INFO ===== */
.company-info {
    text-align: center;
    background: var(--black);
    color: var(--white);
    border-radius: var(--radius);
    padding: 20px;
    animation: fadeUp .3s ease;
}
.company-info img { max-width: 72px; margin-bottom: 8px; filter: brightness(0) invert(1); }
.company-info p { font-size: 11px; opacity: .65; margin-bottom: 3px; }
.company-info strong { font-size: 14px; display: block; margin-bottom: 6px; }

/* ===== RELATED VEHICLES ===== */
.related-section {
    margin-top: 0;
    padding-top: 2px;
    animation: fadeUp .35s ease .25s both;
}

.related-section .section-title {
    font-size: 13px;
    font-weight: 800;
    color: var(--black);
    text-transform: uppercase;
    letter-spacing: .5px;
    margin-bottom: 10px;
}

.related-carousel { position: relative; overflow: hidden; }

.related-carousel-track {
    display: flex;
    gap: 10px;
    transition: transform .4s ease;
    padding: 2px 0 4px;
}

.related-card {
    flex: 0 0 calc(50% - 5px);
    min-width: 190px;
    background: var(--white);
    border-radius: 8px;
    overflow: hidden;
    text-decoration: none;
    color: inherit;
    transition: var(--tr);
    border: 1px solid var(--gray-200);
}
.related-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0,0,0,.08);
    border-color: var(--black);
}
.related-card img {
    width: 100%;
    aspect-ratio: 16/10;
    object-fit: cover;
    background: var(--gray-100);
}
.related-card-body { padding: 10px 12px; }
.related-card h3 { font-size: 12px; font-weight: 700; margin-bottom: 2px; color: var(--black); }
.related-card p { font-size: 10px; color: var(--gray-500); }
.related-card .price { font-size: 15px; font-weight: 800; color: var(--black); margin-top: 3px; }

/* Carousel nav */
.carousel-nav { display: flex; gap: 6px; }
.carousel-btn {
    width: 34px; height: 34px;
    background: var(--black);
    color: var(--white);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--tr);
    font-size: 11px;
}
.carousel-btn:hover { background: var(--red); }
.carousel-btn:disabled { background: var(--gray-300); cursor: not-allowed; }

/* ===== FOOTER ===== */
.hf-footer {
    background: var(--black);
    color: var(--white);
    padding: 36px 0 16px;
}
.hf-footer .container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 36px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 28px;
}
.hf-footer h3 { font-size: 13px; font-weight: 700; margin-bottom: 12px; }
.hf-footer p, .hf-footer a {
    font-size: 11px;
    color: rgba(255,255,255,.55);
    text-decoration: none;
    margin-bottom: 5px;
    display: block;
    transition: var(--tr);
}
.hf-footer a:hover { color: var(--red); }
.hf-footer-bottom {
    border-top: 1px solid rgba(255,255,255,.07);
    padding-top: 14px;
    margin-top: 24px;
    text-align: center;
    font-size: 10px;
    opacity: .45;
}

/* ================================================================
   MOBILE LAYOUT
   ================================================================ */
.mobile-carousel, .mobile-sticky-bar, .mobile-header-v4, .mobile-content { display: none; }

/* Tablet */
@media (max-width: 1024px) {
    .detail-split { flex-direction: column; }
    .detail-left { width: 100%; position: relative; height: auto; }
    .detail-right { width: 100%; padding: 28px 24px 90px; gap: 16px; }
    .related-card { flex: 0 0 calc(50% - 5px); min-width: 170px; }
}

/* Phone */
@media (max-width: 768px) {
    .detail-split { display:none !important; height:0 !important; overflow:hidden !important; }
    .detail-left, .detail-right { display: none; }

    .mobile-carousel { display: block; }
    .mobile-header-v4 { display: block; }
    .mobile-sticky-bar { display: flex; }
    .mobile-content { display: flex; }
    .hf-footer { margin-top: 0; }

    /* Carousel */
    .mobile-carousel { position:relative; width:100%; background:var(--black); }
    .carousel-container { position:relative; width:100%; overflow:hidden; }
    .carousel-track { display:flex; transition:transform .3s ease; }
    .carousel-slide { min-width:100%; aspect-ratio:16/9; background:var(--black); overflow:hidden; }
    .carousel-slide img { width:100%; height:100%; object-fit:cover; }
    .carousel-indicator {
        position:absolute; bottom:10px; right:10px;
        background:rgba(0,0,0,.7); color:white;
        padding:3px 10px; border-radius:50px;
        font-size:10px; font-weight:600;
        backdrop-filter:blur(8px);
    }

    /* Bottom sheet */
    .mobile-header-v4 {
        background: var(--white);
        border-radius: 18px 18px 0 0;
        margin-top: -14px;
        position: relative; z-index: 10;
        padding: 14px 16px 12px;
    }
    .sheet-handle { width:26px; height:3px; background:var(--gray-300); border-radius:2px; margin:0 auto 10px; }

    .mobile-content {
        background: var(--white);
        padding: 4px 16px 90px;
        display: flex;
        flex-direction: column;
        gap: 12px;
    }

    .mobile-header-v4 .vehicle-tags { margin-bottom: 6px; }
    .mobile-header-v4 .vehicle-tag { height:22px; padding:0 8px; font-size:10px; }
    .mobile-header-v4 h1 { font-size:17px; font-weight:800; color:var(--black); line-height:1.2; margin-bottom:6px; }
    .mobile-header-v4 .vehicle-price-row { display:flex; align-items:baseline; gap:8px; }
    .mobile-header-v4 .vehicle-price-main { font-size:22px; font-weight:900; }
    .mobile-header-v4 .vehicle-price-label { font-size:10px; font-weight:700; color:var(--red); text-transform:uppercase; letter-spacing:1px; }

    /* Mobile specs */
    .mobile-content .bento-specs { grid-template-columns:1fr 1fr; gap:5px; }
    .mobile-content .bento-item { padding:10px 11px; border-radius:7px; }
    .mobile-content .bento-label { font-size:8px; }
    .mobile-content .bento-value { font-size:12px; }
    .mobile-content .bento-item.bento-wide .bento-icon { font-size:18px; }

    /* Mobile prices */
    .mobile-content .prices-section .section-title { font-size:12px; }
    .mobile-content .region-price { font-size:18px; }
    .mobile-content .region-card { padding:12px 14px; border-radius:8px; }
    .mobile-content .region-name { font-size:11px; }
    .mobile-content .region-note { font-size:9px; }

    /* Mobile alerts */
    .mobile-content .alert-card-v4 { padding:10px 12px; border-radius:8px; gap:8px; }
    .mobile-content .alert-card-v4 .alert-icon { font-size:16px; }
    .mobile-content .alert-card-v4 .alert-title { font-size:11px; }
    .mobile-content .alert-card-v4 .alert-text { font-size:10px; }

    .mobile-content .price-alert { padding:8px 10px; font-size:10px; border-radius:7px; }
    .mobile-content .price-alert i { font-size:12px; }

    /* Mobile related */
    .mobile-content .related-section .section-title { font-size:13px; }
    .mobile-content .related-card { flex:0 0 70%; min-width:190px; }
    .mobile-content .related-card h3 { font-size:12px; }
    .mobile-content .related-card p { font-size:10px; }
    .mobile-content .related-card .price { font-size:13px; }

    .mobile-content .ad-slot { max-width:100%; overflow:hidden; }
    img { max-width:100%; height:auto; }

    /* Sticky bar */
    .mobile-sticky-bar {
        position:fixed; bottom:0; left:0; width:100%; height:66px;
        background:rgba(255,255,255,.95); backdrop-filter:blur(18px);
        border-top:1px solid var(--gray-200);
        padding:0 14px; display:flex; align-items:center; gap:12px;
        z-index:1000; box-shadow:0 -2px 10px rgba(0,0,0,.05);
    }
    .sticky-price-info { flex:1; }
    .sticky-price-info .label { font-size:9px; font-weight:600; color:var(--gray-500); }
    .sticky-price-info .value { font-size:16px; font-weight:800; color:var(--black); letter-spacing:-.3px; }
    .sticky-wa-btn {
        display:inline-flex; align-items:center; justify-content:center; gap:6px;
        height:40px; padding:0 18px;
        background:var(--green-wa); color:var(--white);
        border:none; border-radius:var(--radius);
        font-size:12px; font-weight:700; cursor:pointer; transition:var(--tr); white-space:nowrap;
    }
    .sticky-wa-btn:hover { opacity:.9; }
    .sticky-wa-btn i { font-size:15px; }

    .fab-ai { display:none !important; }
}

@media (max-width: 400px) {
    .mobile-header-v4 h1 { font-size:16px; }
    .mobile-header-v4 .vehicle-price-main { font-size:20px; }
    .mobile-content .bento-item { padding:8px; }
    .sticky-wa-btn { padding:0 14px; font-size:11px; }
}

/* ===== LIGHTBOX ===== */
.lightbox-overlay {
    position:fixed; inset:0;
    background:rgba(0,0,0,.96);
    z-index:10000;
    display:flex; align-items:center; justify-content:center;
    opacity:0; visibility:hidden;
    transition: opacity .3s ease, visibility .3s ease;
}
.lightbox-overlay.active { opacity:1; visibility:visible; }

.lightbox-img-wrap { max-width:90vw; max-height:85vh; display:flex; align-items:center; justify-content:center; }
.lightbox-img-wrap img { max-width:100%; max-height:85vh; object-fit:contain; border-radius:3px; user-select:none; }

.lightbox-close {
    position:absolute; top:14px; right:14px;
    width:38px; height:38px;
    background:rgba(255,255,255,.1);
    color:white; border:none; border-radius:50%;
    font-size:22px; cursor:pointer; z-index:10001;
    display:flex; align-items:center; justify-content:center;
    backdrop-filter:blur(6px); transition:background .2s;
}
.lightbox-close:hover { background:rgba(255,255,255,.22); }

.lightbox-nav {
    position:absolute; top:50%; transform:translateY(-50%);
    width:42px; height:42px;
    background:rgba(255,255,255,.1);
    color:white; border:none; border-radius:50%;
    font-size:15px; cursor:pointer; z-index:10001;
    display:flex; align-items:center; justify-content:center;
    backdrop-filter:blur(6px); transition:background .2s;
}
.lightbox-nav:hover { background:rgba(255,255,255,.22); }
.lightbox-prev { left:10px; }
.lightbox-next { right:10px; }

.lightbox-counter {
    position:absolute; bottom:18px; left:50%; transform:translateX(-50%);
    background:rgba(0,0,0,.6); color:white;
    padding:4px 14px; border-radius:50px;
    font-size:11px; font-weight:600; backdrop-filter:blur(6px);
}

@media (max-width: 768px) {
    .lightbox-nav { width:32px; height:32px; font-size:12px; }
    .lightbox-prev { left:6px; }
    .lightbox-next { right:6px; }
    .lightbox-close { top:10px; right:10px; width:32px; height:32px; font-size:18px; }
}

/* ===== FLOATING INFORME CTA (unique classes) ===== */
.hfx-informe-bar-z99 {
    position: fixed !important;
    bottom: 70px !important;
    left: 0 !important;
    width: 100% !important;
    z-index: 99999 !important;
    padding: 0 14px !important;
    background: transparent !important;
    border: none !important;
    box-shadow: none !important;
    display: none !important;
}

.hfx-informe-boton-z99 {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 10px !important;
    width: 100% !important;
    height: 48px !important;
    background: linear-gradient(135deg, #dc2626, #b91c1c) !important;
    color: #fff !important;
    border: none !important;
    border-radius: 10px !important;
    font-size: 13px !important;
    font-weight: 700 !important;
    font-family: 'Inter', sans-serif !important;
    cursor: pointer !important;
    box-shadow: 0 4px 16px rgba(220,38,38,.3) !important;
    position: relative !important;
    overflow: hidden !important;
    transition: all .25s ease !important;
}

.hfx-informe-boton-z99::before {
    content: '';
    position: absolute;
    top: 0; left: -100%;
    width: 100%; height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,.2), transparent);
    animation: hfxShimmerZ99 3s ease-in-out infinite;
}

@keyframes hfxShimmerZ99 {
    0% { left: -100%; }
    50% { left: 100%; }
    100% { left: 100%; }
}

.hfx-informe-boton-z99:hover {
    transform: translateY(-1px);
    box-shadow: 0 6px 22px rgba(220,38,38,.4) !important;
}

.hfx-informe-boton-z99 i { font-size: 16px !important; }

.hfx-informe-boton-z99 span { 
    white-space: nowrap !important;
    overflow: hidden !important;
    text-overflow: ellipsis !important;
}

@media (max-width: 768px) {
    .hfx-informe-bar-z99 { display: block !important; }
    .mobile-content { padding-bottom: 90px; }
}

@media (min-width: 769px) {
    .hfx-informe-bar-z99 { display: none !important; }
}

/* ===== LEGACY ===== */
.ad-responsive { width:100%; max-width:100%; overflow:hidden; margin:8px 0; }
