
    /* Estilos del Mosaico Asimétrico (CSS Grid) */
    .tf-mosaic-grid {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        grid-auto-rows: 140px;
        gap: 0px;
        width: 100%;
    }

    .tf-mosaic-item {
        position: relative;
        overflow: hidden;
        border-radius: 8px;
        background-color: #f3f4f6;
    }

    .tf-mosaic-img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        display: block;
        transition: transform 0.3s ease;
    }

    .tf-mosaic-item:hover .tf-mosaic-img {
        transform: scale(1.03);
    }

    /* Distribución de celdas basada en la imagen de referencia */
    /* Foto 1 (Izquierda): Ocupa 2 columnas y 3 filas */
    .tf-mosaic-item.item-1 {
        grid-column: span 2;
        grid-row: span 3;
    }

    /* Foto 2 y 3 (Fila superior derecha) */
    .tf-mosaic-item.item-2, 
    .tf-mosaic-item.item-3 {
        grid-column: span 1;
        grid-row: span 1;
    }

    /* Foto 4 (Fila intermedia derecha - Panorámica/Interior) */
    .tf-mosaic-item.item-4 {
        grid-column: span 2;
        grid-row: span 1;
    }

    /* Fotos 5 y 6 (Inferior derecha) */
    .tf-mosaic-item.item-5,
    .tf-mosaic-item.item-6 {
        grid-column: span 1;
        grid-row: span 1;
    }

    /* Fotos 7 y 8 (Bloques inferiores completos) */
    .tf-mosaic-item.item-7,
    .tf-mosaic-item.item-8 {
        grid-column: span 2;
        grid-row: span 2;
    }

    /* Adaptación Responsiva para Pantallas Móviles */
    @media (max-width: 767.98px) {
        .tf-mosaic-grid {
            grid-template-columns: repeat(2, 1fr);
            grid-auto-rows: 120px;
            gap: 1px;
        }

        .tf-mosaic-item.item-1 {
            grid-column: span 2;
            grid-row: span 2;
        }

        .tf-mosaic-item.item-2, 
        .tf-mosaic-item.item-3,
        .tf-mosaic-item.item-4,
        .tf-mosaic-item.item-5,
        .tf-mosaic-item.item-6,
        .tf-mosaic-item.item-7,
        .tf-mosaic-item.item-8 {
            grid-column: span 1;
            grid-row: span 1;
        }
    }

        .bg-taxi {
            background-color: #f59e0b !important;
        }

        .text-taxi {
            color: #f59e0b !important;
        }

        .btn-taxi {
            background-color: #f59e0b;
            color: #111827;
            font-weight: 600;
            border: none;
        }

        .btn-taxi:hover {
            background-color: #d97706;
            color: #fff;
        }

        body {
            display: flex;
            flex-direction: column;
            min-height: 100vh;
            margin: 0;
            padding: 0;
            overflow-x: hidden;
        }

        main {
            flex: 1;
        }

        /* ===== BOTÓN FLOTANTE DE WHATSAPP ===== */
        .whatsapp-float {
            position: fixed;
            right: 15px;
            bottom: 200px;
            z-index: 9999;
        }

        .whatsapp-float .btn-whatsapp {
            background-color: #25D366;
            color: white;
            width: 44px;
            height: 44px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 22px;
            text-decoration: none;
            box-shadow: 0 3px 10px rgba(37, 211, 102, 0.35);
            transition: all 0.3s ease;
            border: none;
        }

        .whatsapp-float .btn-whatsapp:hover {
            transform: scale(1.08);
            box-shadow: 0 4px 15px rgba(37, 211, 102, 0.5);
            background-color: #20b858;
        }

        /* Tooltip */
        .whatsapp-float .tooltip-text {
            position: absolute;
            right: 52px;
            top: 50%;
            transform: translateY(-50%);
            background-color: rgba(0, 0, 0, 0.75);
            color: white;
            padding: 4px 10px;
            border-radius: 12px;
            font-size: 11px;
            white-space: nowrap;
            opacity: 0;
            visibility: hidden;
            transition: all 0.3s ease;
            font-weight: 500;
            pointer-events: none;
        }

        .whatsapp-float:hover .tooltip-text {
            opacity: 1;
            visibility: visible;
        }

        /* Responsive */
        @media (max-width: 576px) {
            .whatsapp-float .btn-whatsapp {
                width: 38px;
                height: 38px;
                font-size: 18px;
            }
            .whatsapp-float .tooltip-text {
                font-size: 10px;
                padding: 3px 8px;
            }
        }
        
  
    /* ===== MOSAICO SIN ESPACIOS ===== */
    .tf-mosaic-grid {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        grid-auto-rows: 200px; /* Altura fija para todas las filas */
        gap: 0; /* SIN ESPACIOS entre imágenes */
        width: 100%;
        background: #000; /* Fondo negro para evitar bordes blancos */
    }

    .tf-mosaic-item {
        position: relative;
        overflow: hidden;
        background-color: #000;
        cursor: pointer;
        /* Eliminar cualquier borde o espacio */
        margin: 0;
        padding: 0;
        border: none;
    }

    .tf-mosaic-img {
        width: 100%;
        height: 100%;
        object-fit: cover; /* La imagen cubre todo el espacio sin deformarse */
        display: block;
        transition: transform 0.5s ease;
        /* Eliminar cualquier espacio extra */
        margin: 0;
        padding: 0;
        border: none;
    }

    .tf-mosaic-item:hover .tf-mosaic-img {
        transform: scale(1.08);
    }

    /* Overlay con ícono de lupa */
    .tf-mosaic-overlay {
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: rgba(0, 0, 0, 0.4);
        display: flex;
        align-items: center;
        justify-content: center;
        opacity: 0;
        transition: opacity 0.3s ease;
        pointer-events: none;
        margin: 0;
        padding: 0;
    }

    .tf-mosaic-item:hover .tf-mosaic-overlay {
        opacity: 1;
    }

    .tf-mosaic-overlay svg {
        filter: drop-shadow(0 2px 4px rgba(0,0,0,0.5));
        transition: transform 0.3s ease;
        width: 50px;
        height: 50px;
    }

    .tf-mosaic-item:hover .tf-mosaic-overlay svg {
        transform: scale(1.1);
    }

    /* ===== DISTRIBUCIÓN ASIMÉTRICA ===== */
    /* Foto 1: Grande a la izquierda */
    .tf-mosaic-item.item-1 {
        grid-column: span 2;
        grid-row: span 2;
    }

    /* Fotos 2 y 3: Pequeñas arriba a la derecha */
    .tf-mosaic-item.item-2,
    .tf-mosaic-item.item-3 {
        grid-column: span 1;
        grid-row: span 1;
    }

    /* Foto 4: Panorámica */
    .tf-mosaic-item.item-4 {
        grid-column: span 2;
        grid-row: span 1;
    }

    /* Fotos 5 y 6: Pequeñas */
    .tf-mosaic-item.item-5,
    .tf-mosaic-item.item-6 {
        grid-column: span 1;
        grid-row: span 1;
    }

    /* Fotos 7 y 8: Grandes abajo */
    .tf-mosaic-item.item-7,
    .tf-mosaic-item.item-8 {
        grid-column: span 2;
        grid-row: span 1;
    }

    /* ===== RESPONSIVE ===== */
    @media (max-width: 1024px) {
        .tf-mosaic-grid {
            grid-auto-rows: 180px;
        }
    }

    @media (max-width: 768px) {
        .tf-mosaic-grid {
            grid-template-columns: repeat(2, 1fr);
            grid-auto-rows: 150px;
            gap: 0;
        }

        /* En móvil, todas las imágenes ocupan 1 celda */
        .tf-mosaic-item.item-1,
        .tf-mosaic-item.item-2,
        .tf-mosaic-item.item-3,
        .tf-mosaic-item.item-4,
        .tf-mosaic-item.item-5,
        .tf-mosaic-item.item-6,
        .tf-mosaic-item.item-7,
        .tf-mosaic-item.item-8 {
            grid-column: span 1;
            grid-row: span 1;
        }

        /* La primera imagen ocupa 2 columnas en móvil */
        .tf-mosaic-item.item-1 {
            grid-column: span 2;
            grid-row: span 2;
        }
    }

    @media (max-width: 480px) {
        .tf-mosaic-grid {
            grid-auto-rows: 120px;
        }
    }

    /* ===== LIGHTBOX ===== */
    .custom-lightbox {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        z-index: 99999;
        display: none;
        align-items: center;
        justify-content: center;
        animation: lightboxFadeIn 0.3s ease;
    }

    @keyframes lightboxFadeIn {
        from { opacity: 0; transform: scale(0.95); }
        to { opacity: 1; transform: scale(1); }
    }

    .custom-lightbox-overlay {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0.9);
        cursor: pointer;
    }

    .custom-lightbox-content {
        position: relative;
        max-width: 85%;
        max-height: 85%;
        background: #111;
        border-radius: 8px;
        padding: 15px;
        box-shadow: 0 20px 60px rgba(0, 0, 0, 0.8);
        z-index: 1;
        display: flex;
        flex-direction: column;
        align-items: center;
        border: 1px solid rgba(255, 255, 255, 0.05);
    }

    .custom-lightbox-close {
        position: absolute;
        top: -12px;
        right: -12px;
        width: 38px;
        height: 38px;
        background: #ff4444;
        border: none;
        border-radius: 50%;
        color: white;
        font-size: 18px;
        cursor: pointer;
        transition: all 0.3s ease;
        display: flex;
        align-items: center;
        justify-content: center;
        z-index: 10;
        box-shadow: 0 4px 12px rgba(255, 68, 68, 0.4);
    }

    .custom-lightbox-close:hover {
        transform: scale(1.1) rotate(90deg);
        background: #ff0000;
    }

    .custom-lightbox-image-container {
        position: relative;
        display: flex;
        align-items: center;
        justify-content: center;
        max-width: 100%;
        max-height: 75vh;
        overflow: hidden;
    }

    .custom-lightbox-image {
        max-width: 100%;
        max-height: 75vh;
        object-fit: contain;
        border-radius: 4px;
        display: block;
        transition: opacity 0.3s ease;
    }

    .custom-lightbox-nav {
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        background: rgba(0, 0, 0, 0.7);
        color: white;
        border: 2px solid rgba(255, 255, 255, 0.15);
        border-radius: 50%;
        width: 48px;
        height: 48px;
        font-size: 28px;
        cursor: pointer;
        transition: all 0.3s ease;
        display: flex;
        align-items: center;
        justify-content: center;
        backdrop-filter: blur(5px);
    }

    .custom-lightbox-nav:hover {
        background: rgba(255, 255, 255, 0.2);
        border-color: white;
        transform: translateY(-50%) scale(1.1);
    }

    .custom-lightbox-prev {
        left: -20px;
    }

    .custom-lightbox-next {
        right: -20px;
    }

    .custom-lightbox-info {
        margin-top: 12px;
        color: #ccc;
        font-size: 13px;
        text-align: center;
        width: 100%;
        padding: 0 15px;
    }

    .custom-lightbox-info span {
        display: inline-block;
        margin: 0 8px;
    }

    #lightboxCounter {
        color: #ffc107;
        font-weight: bold;
        background: rgba(255, 193, 7, 0.1);
        padding: 3px 10px;
        border-radius: 15px;
        border: 1px solid rgba(255, 193, 7, 0.2);
    }

    #lightboxTitle {
        color: #aaa;
        font-size: 12px;
    }

    @media (max-width: 768px) {
        .custom-lightbox-content {
            max-width: 95%;
            max-height: 90%;
            padding: 10px;
        }

        .custom-lightbox-image {
            max-height: 60vh;
        }

        .custom-lightbox-close {
            top: -10px;
            right: -10px;
            width: 32px;
            height: 32px;
            font-size: 16px;
        }

        .custom-lightbox-nav {
            width: 36px;
            height: 36px;
            font-size: 20px;
        }

        .custom-lightbox-prev {
            left: -8px;
        }

        .custom-lightbox-next {
            right: -8px;
        }

        .custom-lightbox-info {
            font-size: 11px;
        }
    }

