<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">/* Variables de diseÃ±o */
:root {
    --primary: #2A9D8F;
    --secondary: #E76F51;
    --dark: #264653;
    --light: #F8F9FA;
    --text: #333333;
    --text-light: #666666;
    --radius: 12px;
    --shadow: 0 4px 12px rgba(0,0,0,0.05);
}

.menu-item &gt; a{
    color: var(--title-color);
}
.menu-item button i{
    color: var(--primary-color);
}
.contact-item{
    color: var(--primary-color);
}
.topbar-white{
margin-top: 0;
border-bottom: 1px solid #e1e1e1;
}
.navbar{
border-bottom: 1px solid #e1e1e1;
}
.contact-icon{
    color: var(--primary-color);

}

.bento-loader {
    text-align: center;
    padding: 40px;
    font-size: 1.2rem;
    color: var(--primary);
}

.bento-loader i {
    margin-right: 10px;
}

/* Error para AJAX */
.bento-error {
    text-align: center;
    padding: 40px;
    color: var(--secondary);
    font-size: 1.2rem;
}

.bento-error i {
    margin-right: 10px;
}
/* Estructura principal */
.bento-tour-app {
    font-family: 'Inter', sans-serif;
    max-width: 1350px;
    margin: 0 auto;
    padding: 20px 4rem 0px;
}

/* Hero Section */
.bento-hero {
    background: linear-gradient(135deg, var(--primary), var(--dark));
    color: white;
    padding: 40px;
    margin-top: 100px;
    border-radius: var(--radius);
    margin-bottom: 30px;
    position: relative;
    overflow: hidden;
}

.hero-content {
    position: relative;
    z-index: 2;
}

.bento-badge {
    background: var(--secondary);
    color: white;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
    display: inline-block;
    margin-bottom: 15px;
}

.bento-hero h1 {
    font-size: 2.5rem;
    margin: 0 0 10px;
}

.hero-stats {
    display: flex;
    gap: 15px;
    margin: 20px 0;
}

.stat-pill {
    background: rgba(255,255,255,0.2);
    padding: 8px 15px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    backdrop-filter: blur(5px);
}

.hero-description {
    max-width: 600px;
    opacity: 0.9;
    line-height: 1.6;
}

/* Filtros Section */
.bento-filters {
    background: white;
    border-radius: var(--radius);
    padding: 20px;
    margin-bottom: 30px;
    box-shadow: var(--shadow);
}

.filter-form {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 15px;
    align-items: end;
}

.filter-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.filter-group span,.filter-group label {
    font-weight: 600;
    font-size: 14px;
    color: var(--text-light);
}

.filter-group select,
.filter-group input {
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: var(--radius);
    font-size: 14px;
    width: 100%;
}

.price-range .range-inputs {
    display: flex;
    align-items: center;
    gap: 10px;
}

.price-range input {
    flex: 1;
    min-width: 0;
}

.filter-button,
.reset-button {
    padding: 10px 15px;
    border: none;
    border-radius: var(--radius);
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    justify-content: center;
}

.filter-button {
    background: var(--primary);
    color: white;
}

.reset-button {
    background: #f0f0f0;
    color: var(--text-light);
}

.filter-results-info {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    font-size: 14px;
    color: var(--text-light);
}

.active-filters {
    font-size: 13px;
    color: var(--primary);
    font-weight: 500;
}

/* Contenedor principal */
.bento-container {
    display: grid;
    grid-template-columns: 1fr 300px;
    gap: 0;
}

/* Grid de tours */
.bento-tours-grid {
    flex: 1;
}

.bento-tour-cards {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 10px;
}

.bento-tour-cards .tour-card{
    width: 100%;
}
.bento-card-wrapper {
    background: white;
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
}

.bento-card-wrapper:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 16px rgba(0,0,0,0.1);
}

/* PaginaciÃ³n */
.bento-pagination {
    display: flex;
    justify-content: center;
    margin-top: 40px;
}

.bento-pagination .page-numbers {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    margin: 0 5px;
    border-radius: 50%;
    background: white;
    color: var(--text);
    text-decoration: none;
    font-weight: 600;
    box-shadow: var(--shadow);
}

.bento-pagination .page-numbers.current {
    background: var(--primary);
    color: white;
}

.bento-pagination .page-numbers.dots {
    background: transparent;
    box-shadow: none;
}

/* Sidebar */
.bento-sidebar {
    margin-top: 40px;
    display: flex;
    flex-direction: column;
    gap: 25px;
    position: sticky;
    top: 20px;
    height: fit-content;
    padding-left: 10px;
}

.sidebar-card {
    background: white;
    border-radius: var(--radius);
    padding: 20px;
    box-shadow: var(--shadow);
}

.promo-card {
    background: linear-gradient(135deg, var(--secondary), #FE1D46);
    color: white;
}
.promo-card p {
    color: #fff;
}

.quote-card {
    font-style: italic;
    border-left: 3px solid var(--primary);
}

.contact-card a {
    color: var(--primary);
    text-decoration: none;
    font-weight: 500;
}

/* Empty State */
.bento-empty-state {
    text-align: center;
    padding: 40px;
    background: white;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}

.bento-empty-state i {
    font-size: 2.5rem;
    color: var(--primary);
    margin-bottom: 15px;
}

/* Floating Button */
.bento-fab {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: var(--primary);
    color: white;
    border: none;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 100;
}
  .custom-select {
        position: relative;
        width: 100%;
    }
    .custom-select div{
        color: var(--text);
    }
    
    .select-selected {
        background-color: #fff;
        border-radius: 8px;
        border: 1px solid #ddd;
        padding: 10px 15px;
        cursor: pointer;
        display: flex;
        justify-content: space-between;
        align-items: center;
        transition: all 0.3s ease;
    }
    
    .select-selected:hover {
        border-color: #aaa;
    }
    
    .select-selected i {
        transition: transform 0.3s ease;
    }
    
    .select-items {
        position: absolute;
        background-color: #fff;
        top: 100%;
        left: 0;
        right: 0;
        z-index: 99;
        border-radius: 8px;
        border: 1px solid #ddd;
        box-shadow: 0 4px 12px rgba(0,0,0,0.1);
        max-height: 200px;
        overflow-y: auto;
        display: none;
    }
    
    .select-items div {
        padding: 10px 15px;
        cursor: pointer;
        transition: all 0.2s ease;
    }
    
    .select-items div:hover {
        background-color: #f5f5f5;
    }
    
    .select-items div.selected {
        background-color: #f0f0f0;
        font-weight: bold;
    }
    
    .select-open .select-selected i {
        transform: rotate(180deg);
    }
    
    .select-open .select-items {
        display: block;
    }
    
    /* Ajustes para los inputs de precio */
    .price-range .range-inputs {
        display: flex;
        align-items: center;
        gap: 10px;
    }
    
    .price-range input {
        flex: 1;
        padding: 10px;
        border-radius: 8px;
        border: 1px solid #ddd;
    }
    
    /* BotÃ³n de limpiar */
    .reset-button {
        display: inline-flex;
        align-items: center;
        gap: 8px;
        padding: 10px 15px;
        background-color: #f8f8f8;
        color: #666;
        border-radius: 8px;
        text-decoration: none;
        transition: all 0.3s ease;
    }
    
    .reset-button:hover {
        background-color: #eee;
        color: #333;
    }
    /* Barra de bÃºsqueda */
    .search-group {
        grid-column: 1 / -1;
    }
    
    .search-input {
        position: relative;
    }
    
    .search-input i {
        position: absolute;
        right: 15px;
        top: 50%;
        transform: translateY(-50%);
        color: #999;
    }
    
    .search-input input {
        width: 100%;
        padding: 10px 40px 10px 15px;
        border-radius: 8px;
        border: 1px solid #ddd;
    }
/* Responsive */
@media (max-width: 1024px) {
    .bento-container {
        grid-template-columns: 1fr;
    }
    
    .bento-sidebar {
        position: static;
        margin-top: 40px;
    }
}

@media (max-width: 768px) {
    .bento-hero {
        padding: 30px 20px;
        margin-top: 0;
    }
    
    .bento-hero h1 {
        font-size: 2rem;
    }
    
    .filter-form {
        grid-template-columns: 1fr;
    }
    
    .bento-fab {
        width: 50px;
        height: 50px;
        bottom: 20px;
        right: 20px;
    }
    .bento-tour-cards{
        display: flex;
        flex-direction: column;
        gap: 20px;
    }
    .bento-tour-app{
padding: 20px;
    }

}</pre></body></html>