/* SCORT BRASIL - CSS FINAL CORRIGIDO */

/* Reset & Force Dark */
*, *::before, *::after {
    box-sizing: border-box;
}

html, body {
    margin: 0;
    padding: 0;
    background: #0a0a0a !important;
    color: #fff !important;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, sans-serif;
    min-height: 100vh;
    font-size: 15px;
    line-height: 1.5;
}

/* Global Select Styling - Dark Theme */
select {
    background-color: #1a1a1a !important;
    color: #fff !important;
}

select option {
    background-color: #1a1a1a !important;
    color: #fff !important;
    padding: 10px !important;
}

select option:hover,
select option:focus,
select option:checked {
    background-color: #ff1744 !important;
    background: linear-gradient(0deg, #ff1744 0%, #ff1744 100%) !important;
    color: #fff !important;
}

/* ESCONDER ELEMENTOS WORDPRESS INDESEJADOS */
.wp-site-blocks > header,
.wp-site-blocks > .wp-block-template-part,
.wp-block-site-logo,
.wp-block-group.has-background:not(.card):not([class*="filter"]):not([class*="profile"]),
.custom-logo-link,
.site-logo,
figure.wp-block-site-logo,
.wp-block-template-part[data-slug="header"],
header.wp-block-template-part,
[class*="site-logo"]:not(.card *),
body > svg,
body > div > svg:not([class]),
img.custom-logo {
    display: none !important;
    visibility: hidden !important;
    opacity: 0 !important;
    max-height: 0 !important;
    overflow: hidden !important;
}

/* GARANTIR QUE IMAGENS IMPORTANTES APAREÇAM */
.card img,
.card-image img,
.card-gallery img,
.swiper-slide img,
.profile-card img,
[class*="card"] img,
.card-photo img,
article img {
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
    max-height: none !important;
    overflow: visible !important;
}

a {
    color: #ff1744;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

img {
    max-width: 100%;
    height: auto;
}

/* ============================================== */
/* HEADER ESTILO TRIVAGO                         */
/* ============================================== */
.header-trivago {
    background: #0a0a0a;
    border-bottom: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100000;
}

.header-trivago-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 12px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

/* Logo */
/* Logo Brand - Estilo Oficial */
.logo-brand {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none !important;
    flex-shrink: 0;
}

.logo-icon {
    color: #ff1744;
    flex-shrink: 0;
}

.logo-text {
    display: flex;
    align-items: baseline;
}

.logo-scort {
    font-size: 1.3rem;
    font-weight: 500;
    color: #ff1744;
    letter-spacing: 1px;
}

.logo-brasil {
    font-size: 0.8rem;
    font-weight: 400;
    color: rgba(255,255,255,0.7);
    letter-spacing: 2px;
}

/* Search Bar */
.header-search-bar {
    flex: 1;
    max-width: 480px;
    position: relative;
    display: flex;
    align-items: center;
}

.header-search-bar i.fa-search {
    position: absolute;
    left: 16px;
    color: rgba(255,255,255,0.4);
    font-size: 14px;
    pointer-events: none;
}

.header-search-bar input {
    width: 100%;
    padding: 12px 45px 12px 44px;
    border-radius: 28px;
    border: 1px solid rgba(255,255,255,0.12);
    background: rgba(255,255,255,0.05);
    color: #fff;
    font-size: 14px;
    transition: all 0.2s;
}

.header-search-bar input::placeholder {
    color: rgba(255,255,255,0.4);
}

.header-search-bar input:focus {
    outline: none;
    border-color: #ff1744;
    background: rgba(255,23,68,0.05);
}

.search-clear {
    position: absolute;
    right: 12px;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: rgba(255,255,255,0.1);
    border: none;
    color: rgba(255,255,255,0.6);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    transition: all 0.2s;
}

.search-clear:hover {
    background: #ff1744;
    color: #fff;
}

/* Header Actions */
.header-actions-trivago {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-shrink: 0;
}

/* Botão Anunciar */
.btn-header-anunciar {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background: #ff1744;
    border: none;
    border-radius: 25px;
    color: #fff !important;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none !important;
    cursor: pointer;
    transition: all 0.2s;
}

.btn-header-anunciar:hover {
    background: #ff3d5a;
    transform: translateY(-1px);
    box-shadow: 0 4px 15px rgba(255,23,68,0.4);
}

.btn-header-anunciar i {
    font-size: 14px;
}

/* Botão Entrar */
.btn-header-entrar {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 18px;
    background: transparent;
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 25px;
    color: #fff !important;
    font-size: 14px;
    font-weight: 500;
    text-decoration: none !important;
    cursor: pointer;
    transition: all 0.2s;
}

.btn-header-entrar:hover {
    border-color: rgba(255,255,255,0.4);
    background: rgba(255,255,255,0.05);
}

.btn-header-entrar i {
    font-size: 16px;
    color: rgba(255,255,255,0.7);
}

/* Botão Menu com Dropdown */
.header-menu-wrapper {
    position: relative;
    z-index: 99999;
}

.btn-header-menu {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 18px;
    background: transparent;
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 25px;
    color: #fff;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s;
}

.btn-header-menu:hover {
    border-color: rgba(255,255,255,0.4);
    background: rgba(255,255,255,0.05);
}

.btn-header-menu i {
    font-size: 16px;
}

/* ============================================== */
/* DROPDOWN MENU ESTILO TRIVAGO                  */
/* ============================================== */
.header-dropdown-menu {
    position: absolute;
    top: calc(100% + 12px);
    right: 0;
    width: 260px;
    background: #1a1a1a;
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: 16px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.9);
    opacity: 0 !important;
    visibility: hidden !important;
    pointer-events: none;
    transform: translateY(-10px);
    transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 999999;
    overflow: hidden;
}

.header-dropdown-menu.active {
    opacity: 1 !important;
    visibility: visible !important;
    pointer-events: auto;
    transform: translateY(0);
}

/* Seções do Dropdown */
.dropdown-section {
    padding: 12px 0;
    border-bottom: 1px solid rgba(255,255,255,0.06);
}

.dropdown-section:last-child {
    border-bottom: none;
}

.dropdown-section-title {
    display: block;
    padding: 8px 20px 10px;
    font-size: 12px;
    font-weight: 700;
    color: rgba(255,255,255,0.4);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Links do Menu */
.header-dropdown-menu a {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 12px 20px;
    color: rgba(255,255,255,0.85) !important;
    font-size: 14px;
    font-weight: 500;
    text-decoration: none !important;
    transition: all 0.15s;
}

.header-dropdown-menu a:hover {
    background: rgba(255,23,68,0.08);
    color: #fff !important;
}

.header-dropdown-menu a i {
    width: 20px;
    text-align: center;
    font-size: 15px;
    color: rgba(255,255,255,0.45);
    transition: color 0.15s;
}

.header-dropdown-menu a:hover i {
    color: #ff1744;
}

/* ============================================== */
/* HEADER RESPONSIVO                             */
/* ============================================== */
@media (max-width: 900px) {
    .header-search-bar {
        display: none;
    }
    
    .btn-header-anunciar span,
    .btn-header-entrar span {
        display: none;
    }
    
    .btn-header-anunciar,
    .btn-header-entrar {
        padding: 10px 14px;
    }
    
    .btn-header-anunciar i,
    .btn-header-entrar i {
        margin: 0;
    }
}

@media (max-width: 600px) {
    .header-trivago-container {
        padding: 10px 15px;
    }
    
    .logo-text,
    .logo-accent {
        font-size: 22px;
    }
    
    .btn-header-entrar {
        display: none;
    }
    
    .btn-header-menu span {
        display: none;
    }
    
    .btn-header-menu {
        padding: 10px 12px;
    }
    
    .header-dropdown-menu {
        position: fixed;
        top: auto;
        bottom: 0;
        left: 0;
        right: 0;
        width: 100%;
        border-radius: 20px 20px 0 0;
        max-height: 70vh;
        overflow-y: auto;
        transform: translateY(100%);
    }
    
    .header-dropdown-menu.active {
        transform: translateY(0);
    }
}

/* Header Legado (mantido para compatibilidade) */
.header {
    background: #0a0a0a !important;
    padding: 15px 0;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    position: sticky;
    top: 0;
    z-index: 100;
}

.header-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    font-size: 24px;
    font-weight: 700;
    color: #fff;
    text-decoration: none;
}

.logo span {
    color: #ff1744;
}

.header-search {
    flex: 1;
    max-width: 500px;
    margin: 0 30px;
    position: relative;
}

.header-search input {
    width: 100%;
    padding: 12px 20px 12px 45px;
    border-radius: 30px;
    border: none;
    background: rgba(255,255,255,0.1);
    color: #fff;
    font-size: 14px;
}

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

.header-search i {
    position: absolute;
    left: 18px;
    top: 50%;
    transform: translateY(-50%);
    color: rgba(255,255,255,0.5);
}

.header-actions {
    display: flex;
    gap: 15px;
}

.header-actions a {
    color: #fff;
    text-decoration: none;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 14px;
}

.header-actions a:hover {
    background: rgba(255,255,255,0.1);
}

.header-actions .btn-anunciar {
    background: #ff1744;
}

/* Breadcrumbs */
.breadcrumbs-bar {
    background: #111 !important;
    padding: 12px 0;
    border-bottom: 1px solid rgba(255,255,255,0.05);
}

.breadcrumbs {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
}

.breadcrumbs a {
    color: #ff1744;
}

.breadcrumbs span {
    color: rgba(255,255,255,0.5);
}

.breadcrumbs .current {
    color: #fff;
}

/* Main Layout */
.main-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 90px 20px 20px 20px; /* padding-top para compensar header fixo */
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 25px;
    background: #0a0a0a !important;
}

/* Sidebar - Estilo Compacto */
.sidebar {
    position: sticky;
    top: 80px;
    height: fit-content;
    max-height: none !important;
    overflow: visible !important;
    width: 280px;
    flex-shrink: 0;
    background: transparent;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.filter-section {
    background: #121212 !important;
    border-radius: 16px;
    padding: 20px;
    border: 1px solid rgba(255,255,255,0.08);
}

.filter-section:last-child {
    margin-bottom: 0;
}

.filter-section h3 {
    font-size: 15px;
    font-weight: 700;
    margin-bottom: 18px;
    color: #fff;
    display: flex;
    align-items: center;
    gap: 10px;
    padding-bottom: 12px;
    border-bottom: 1px solid rgba(255,255,255,0.06);
}

.filter-section h3 i {
    color: #ff1744;
    font-size: 14px;
}

/* Select Wrapper - Estilo Limpo */
.filter-select-wrapper {
    position: relative;
    margin-bottom: 12px;
}

.filter-select-wrapper select {
    width: 100%;
    padding: 12px 36px 12px 14px;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 10px;
    color: #fff;
    font-size: 14px;
    font-weight: 500;
    appearance: none;
    -webkit-appearance: none;
    cursor: pointer;
    transition: all 0.2s ease;
}

.filter-select-wrapper select option {
    background: #1a1a1a;
    color: #fff;
    padding: 12px;
}

.filter-select-wrapper select option:hover,
.filter-select-wrapper select option:focus,
.filter-select-wrapper select option:checked {
    background: #ff1744;
    color: #fff;
}

.filter-select-wrapper select:hover {
    border-color: rgba(255,255,255,0.2);
    background: rgba(255,255,255,0.06);
}

.filter-select-wrapper select:focus {
    outline: none;
    border-color: #ff1744;
    background: rgba(255,23,68,0.05);
}

.filter-select-wrapper select:disabled {
    opacity: 0.4;
    cursor: not-allowed;
}

.filter-select-wrapper .select-arrow {
    position: absolute;
    right: 14px;
    top: 50%;
    transform: translateY(-50%);
    color: rgba(255,255,255,0.4);
    font-size: 12px;
    pointer-events: none;
}

/* Botão de Buscar Localização */
.btn-location-search {
    width: 100%;
    padding: 12px 18px;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 10px;
    color: #fff;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-top: 4px;
    transition: all 0.2s ease;
}

.btn-location-search:hover {
    border-color: #ff1744;
    color: #ff1744;
}

/* Filter Chips - Filtros Rápidos (Estilo da imagem) */
.filter-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.filter-chip {
    display: inline-flex;
    cursor: pointer;
}

.filter-chip input {
    display: none;
}

.filter-chip span {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 12px;
    background: transparent;
    border: 1px solid #333;
    border-radius: 6px;
    color: rgba(255,255,255,0.7);
    font-size: 13px;
    transition: all 0.2s ease;
}

.filter-chip span i {
    font-size: 8px;
}

.filter-chip:hover span {
    border-color: #ff1744;
    color: #fff;
}

.filter-chip input:checked + span {
    background: rgba(255, 23, 68, 0.15);
    border-color: #ff1744;
    color: #ff1744;
}

/* Filter Checkboxes - Categoria, Características, Serviços */
.filter-checkboxes {
    display: flex;
    flex-wrap: wrap;
    gap: 6px 12px;
}

.filter-checkbox {
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    font-size: 14px;
    color: rgba(255,255,255,0.8);
}

.filter-checkbox input {
    appearance: none;
    -webkit-appearance: none;
    width: 16px;
    height: 16px;
    border: 2px solid #444;
    border-radius: 3px;
    background: transparent;
    cursor: pointer;
    position: relative;
    flex-shrink: 0;
}

.filter-checkbox input:checked {
    background: #ff1744;
    border-color: #ff1744;
}

.filter-checkbox input:checked::after {
    content: '✓';
    position: absolute;
    color: #fff;
    font-size: 10px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.filter-checkbox:hover {
    color: #fff;
}

/* Price Inputs - Compacto */
.price-inputs {
    display: flex;
    align-items: center;
    gap: 8px;
}

.price-input-wrapper {
    flex: 1;
    position: relative;
}

.price-input-wrapper .price-label {
    position: absolute;
    left: 10px;
    top: 50%;
    transform: translateY(-50%);
    color: rgba(255,255,255,0.4);
    font-size: 12px;
}

.price-input-wrapper input {
    width: 100%;
    padding: 10px 10px 10px 32px;
    background: #1a1a1a;
    border: 1px solid #333;
    border-radius: 8px;
    color: #fff;
    font-size: 14px;
}

.price-input-wrapper input::placeholder {
    color: rgba(255,255,255,0.4);
}

.price-input-wrapper input:focus {
    outline: none;
    border-color: #ff1744;
}

.price-separator {
    color: rgba(255,255,255,0.4);
    font-size: 13px;
}

/* Apply Filters Button */
.btn-apply-filters {
    width: 100%;
    padding: 12px;
    background: #ff1744;
    border: none;
    border-radius: 8px;
    color: #fff;
    font-weight: 600;
    cursor: pointer;
    margin-top: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-size: 14px;
    transition: all 0.2s ease;
}

.btn-apply-filters:hover {
    background: #ff3d5a;
}

/* Menu de Categorias - Estilo Dark */
.category-menu {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.category-item {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 14px 16px;
    background: rgba(255,255,255,0.02);
    border-radius: 10px;
    color: rgba(255,255,255,0.75);
    text-decoration: none !important;
    transition: all 0.2s ease;
    border: 1px solid transparent;
}

.category-item:hover {
    background: rgba(255,255,255,0.06);
    color: #fff;
    text-decoration: none !important;
}

.category-item.active {
    background: rgba(255, 23, 68, 0.12);
    border-color: rgba(255, 23, 68, 0.35);
    color: #ff1744;
}

.category-item i:first-child {
    width: 22px;
    font-size: 15px;
    text-align: center;
    color: rgba(255,255,255,0.5);
}

.category-item:hover i:first-child {
    color: #ff1744;
}

.category-item.active i:first-child {
    color: #ff1744;
}

.category-item span {
    flex: 1;
    font-size: 14px;
    font-weight: 500;
}

.category-arrow {
    font-size: 11px;
    color: rgba(255,255,255,0.25);
    transition: all 0.2s ease;
}

.category-item:hover .category-arrow {
    transform: translateX(3px);
    color: rgba(255,255,255,0.5);
}

.category-item.active .category-arrow {
    color: #ff1744;
}

/* Seção Explore - Tags de Regiões/Cidades/Bairros */
.filter-explore h3 {
    font-size: 14px;
    margin-bottom: 12px;
}

.explore-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.explore-tag {
    display: inline-block;
    padding: 8px 14px;
    background: #1a1a1a;
    border: 1px solid #2a2a2a;
    border-radius: 20px;
    color: rgba(255,255,255,0.7);
    font-size: 13px;
    text-decoration: none;
    transition: all 0.2s ease;
    white-space: nowrap;
}

.explore-tag:hover {
    background: #252525;
    border-color: #ff1744;
    color: #fff;
    text-decoration: none;
}

.explore-tag.active {
    background: rgba(255, 23, 68, 0.15);
    border-color: #ff1744;
    color: #ff1744;
}

/* Seção Explore Bairros/Cidades/Regiões - Abaixo do Mapa */
.explore-section {
    background: #0a0a0a;
    padding: 40px 20px;
    border-top: 1px solid rgba(255,255,255,0.05);
}

.explore-section + .explore-section {
    padding-top: 0;
    border-top: none;
}

.explore-section-container {
    max-width: 1200px;
    margin: 0 auto;
}

.explore-section-title {
    font-size: 18px;
    font-weight: 600;
    color: #fff;
    margin: 0 0 20px 0;
}

.explore-section-title span {
    color: #ff1744;
}

.explore-section-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 15px;
}

.explore-section-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 16px;
    background: #151515;
    border: 1px solid #252525;
    border-radius: 25px;
    color: rgba(255,255,255,0.8);
    font-size: 14px;
    text-decoration: none;
    transition: all 0.2s ease;
}

.explore-section-tag i {
    font-size: 12px;
    color: rgba(255,255,255,0.5);
}

.explore-section-tag:hover {
    background: #1a1a1a;
    border-color: #ff1744;
    color: #fff;
    text-decoration: none;
    transform: translateY(-2px);
}

.explore-section-tag:hover i {
    color: #ff1744;
}

.explore-section-tag.active {
    background: rgba(255, 23, 68, 0.15);
    border-color: #ff1744;
    color: #ff1744;
}

.explore-section-tag.active i {
    color: #ff1744;
}

.explore-section-more {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 18px;
    background: transparent;
    border: 1px solid #2a2a2a;
    border-radius: 25px;
    color: rgba(255,255,255,0.6);
    font-size: 14px;
    cursor: pointer;
    transition: all 0.2s ease;
    margin-top: 5px;
}

.explore-section-more:hover {
    border-color: #444;
    color: #fff;
}

.explore-section-more span {
    color: #ff1744;
}

.explore-section-more i {
    font-size: 12px;
    transition: transform 0.2s ease;
}

.explore-section-more.expanded i {
    transform: rotate(180deg);
}

/* Botão Favoritar em cima da foto */
.card-favorite-overlay {
    position: absolute;
    top: 12px;
    right: 12px;
    width: 36px;
    height: 36px;
    background: rgba(0,0,0,0.6);
    border: none;
    border-radius: 50%;
    color: #fff;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    transition: all 0.2s ease;
    z-index: 5;
}

.card-favorite-overlay:hover {
    background: rgba(255, 23, 68, 0.8);
    transform: scale(1.1);
}

.card-favorite-overlay.active {
    background: #ff1744;
}

.card-favorite-overlay.active i {
    font-weight: 900;
}

/* Legacy - manter compatibilidade */
.filter-group label {
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    padding: 8px 0;
    font-size: 14px;
    color: rgba(255,255,255,0.8);
}

.filter-group label:hover {
    color: #fff;
}

.filter-group input[type="checkbox"] {
    appearance: none;
    -webkit-appearance: none;
    width: 16px;
    height: 16px;
    border: 2px solid #444;
    border-radius: 3px;
    cursor: pointer;
    position: relative;
    background: transparent;
    flex-shrink: 0;
}

.filter-group input[type="checkbox"]:checked {
    background: #ff1744;
    border-color: #ff1744;
}

.filter-group input[type="checkbox"]:checked::after {
    content: '✓';
    position: absolute;
    color: #fff;
    font-size: 10px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.filter-count {
    margin-left: auto;
    font-size: 12px;
    color: rgba(255,255,255,0.4);
    background: rgba(255,255,255,0.05);
    padding: 2px 8px;
    border-radius: 10px;
}

/* Price Range - Legacy */
.price-range {
    display: flex;
    gap: 10px;
    align-items: center;
}

.price-range input {
    width: 80px;
    padding: 10px;
    border-radius: 8px;
    border: 1px solid rgba(255,255,255,0.1);
    background: rgba(255,255,255,0.05);
    color: #fff;
    font-size: 14px;
    text-align: center;
}

.price-range input::placeholder {
    color: rgba(255,255,255,0.4);
}

.price-range span {
    color: rgba(255,255,255,0.5);
}

/* Filter Buttons - Categoria */
.filter-buttons {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.filter-btn {
    flex: 1;
    min-width: 70px;
    cursor: pointer;
}

.filter-btn input {
    display: none;
}

.filter-btn span {
    display: block;
    padding: 8px 12px;
    background: transparent;
    border: 1px solid #333;
    border-radius: 6px;
    color: rgba(255,255,255,0.7);
    font-size: 13px;
    text-align: center;
    transition: all 0.2s ease;
}

.filter-btn:hover span {
    border-color: #ff1744;
    color: #fff;
}

.filter-btn input:checked + span,
.filter-btn.active span {
    background: rgba(255, 23, 68, 0.15);
    border-color: #ff1744;
    color: #ff1744;
}

/* Filter Tags - Características e Serviços */
.filter-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}

.filter-tag {
    cursor: pointer;
}

.filter-tag input {
    display: none;
}

.filter-tag span {
    display: inline-block;
    padding: 6px 10px;
    background: transparent;
    border: 1px solid #333;
    border-radius: 4px;
    color: rgba(255,255,255,0.6);
    font-size: 12px;
    transition: all 0.2s ease;
}

.filter-tag:hover span {
    border-color: #ff1744;
    color: #fff;
}

.filter-tag input:checked + span {
    background: rgba(255, 23, 68, 0.15);
    border-color: #ff1744;
    color: #ff1744;
}

/* Results Section */
.results-section {
    min-width: 0;
    background: #0a0a0a !important;
    position: relative;
    padding-top: 0;
}

/* ============================================== */
/* BARRA DE FILTROS - FIXED NO TOPO              */
/* ============================================== */
.filters-bar-trivago {
    background: rgba(12, 12, 12, 0.98);
    border-bottom: 1px solid rgba(255,255,255,0.08);
    padding: 0;
    position: fixed;
    top: 70px;
    left: 0;
    right: 0;
    z-index: 999;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    box-shadow: 0 4px 20px rgba(0,0,0,0.3);
}

.filters-bar-trivago .filters-bar-scroll {
    max-width: 1400px;
    width: 100%;
}

.filters-bar-scroll {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 14px 20px;
    overflow-x: auto;
    scrollbar-width: none;
    -ms-overflow-style: none;
    position: relative;
    flex: 1;
}

.filters-bar-scroll::-webkit-scrollbar {
    display: none;
}

/* Setas de Navegação */
.filter-scroll-arrow {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: #1a1a1a;
    border: 1px solid rgba(255,255,255,0.15);
    color: #fff;
    font-size: 14px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s;
    flex-shrink: 0;
    z-index: 10;
}

.filter-scroll-arrow:hover {
    background: #ff1744;
    border-color: #ff1744;
}

.filter-scroll-left {
    margin-left: 10px;
}

.filter-scroll-right {
    margin-right: 10px;
}

/* Botão Filtros Principal */
.filter-btn-main {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 18px;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: 25px;
    color: #fff;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s;
    white-space: nowrap;
    flex-shrink: 0;
}

.filter-btn-main:hover {
    background: rgba(255,23,68,0.1);
    border-color: #ff1744;
}

.filter-btn-main i {
    color: #ff1744;
    font-size: 14px;
}

/* Dropdown Ordenar */
.filter-dropdown {
    position: relative;
    flex-shrink: 0;
}

.filter-dropdown-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 16px;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: 25px;
    color: #fff;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.2s;
    white-space: nowrap;
}

.filter-dropdown-btn:hover {
    border-color: rgba(255,255,255,0.3);
}

.filter-dropdown-btn i {
    font-size: 10px;
    color: rgba(255,255,255,0.5);
    transition: transform 0.2s;
}

.filter-dropdown.open .filter-dropdown-btn i {
    transform: rotate(180deg);
}

.filter-dropdown-menu {
    position: fixed;
    min-width: 200px;
    background: #1a1a1a;
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: 12px;
    box-shadow: 0 15px 50px rgba(0,0,0,0.9);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.2s;
    z-index: 999999;
    overflow: hidden;
}

.filter-dropdown.open .filter-dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.filter-dropdown-menu a {
    display: block;
    padding: 14px 20px;
    color: rgba(255,255,255,0.9);
    font-size: 14px;
    text-decoration: none;
    transition: all 0.15s;
    border-bottom: 1px solid rgba(255,255,255,0.05);
}

.filter-dropdown-menu a:last-child {
    border-bottom: none;
}

.filter-dropdown-menu a:hover {
    background: rgba(255,23,68,0.15);
    color: #ff1744;
}

/* Separador */
.filter-separator {
    width: 1px;
    height: 28px;
    background: rgba(255,255,255,0.1);
    flex-shrink: 0;
    margin: 0 6px;
}

/* Tags de Filtro */
.filter-tag {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 10px 16px;
    background: transparent;
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 25px;
    color: rgba(255,255,255,0.75);
    font-size: 13px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s;
    white-space: nowrap;
    flex-shrink: 0;
}

.filter-tag i {
    font-size: 11px;
    opacity: 0.7;
}

.filter-tag:hover {
    border-color: rgba(255,255,255,0.25);
    color: #fff;
    background: rgba(255,255,255,0.03);
}

.filter-tag.active {
    background: #ff1744;
    border-color: #ff1744;
    color: #fff;
}

.filter-tag.active i {
    opacity: 1;
}

/* Scroll Fade */
.filter-scroll-fade {
    position: absolute;
    right: 0;
    top: 0;
    bottom: 0;
    width: 60px;
    background: linear-gradient(90deg, transparent, #121212);
    pointer-events: none;
}

/* ============================================== */
/* HEADER DE RESULTADOS ESTILO TRIVAGO           */
/* ============================================== */
.results-header-trivago {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 25px;
    gap: 20px;
    flex-wrap: wrap;
}

.results-info-trivago h1 {
    font-size: 26px;
    font-weight: 700;
    margin: 0 0 8px 0;
    color: #fff;
    line-height: 1.2;
}

.results-meta {
    font-size: 14px;
    color: rgba(255,255,255,0.5);
    margin: 0;
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
}

.results-count-number {
    color: #ff1744;
    font-weight: 600;
}

.results-location-hint {
    display: flex;
    align-items: center;
    gap: 5px;
    color: rgba(255,255,255,0.4);
}

.results-location-hint i {
    font-size: 11px;
    color: #ff1744;
}

/* Botão Ver no Mapa Estilo Trivago */
.map-btn-trivago {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 8px 12px 8px 8px;
    background: #1a1a1a;
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.25s;
    flex-shrink: 0;
}

.map-btn-trivago:hover {
    border-color: #ff1744;
    background: rgba(255,23,68,0.05);
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(0,0,0,0.3);
}

.map-preview {
    width: 70px;
    height: 45px;
    border-radius: 8px;
    overflow: hidden;
    background: #2a2a2a;
}

.map-svg {
    width: 100%;
    height: 100%;
}

.map-btn-content {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #fff;
    font-size: 14px;
    font-weight: 500;
}

.map-btn-content i {
    color: #ff1744;
    font-size: 16px;
}

/* ============================================== */
/* CSS LEGADO (mantido para compatibilidade)     */
/* ============================================== */
.results-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    flex-wrap: wrap;
    gap: 15px;
}

.results-info h1 {
    font-size: 24px;
    font-weight: 700;
    margin: 0 0 5px 0;
    color: #fff;
}

.results-info h1 span {
    color: #ff1744;
}

.results-count {
    font-size: 14px;
    color: rgba(255,255,255,0.6);
    margin: 0;
}

.results-actions {
    display: flex;
    gap: 10px;
    align-items: center;
}

.map-toggle-btn {
    padding: 10px 20px;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 8px;
    color: #fff;
    font-size: 14px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
}

.map-toggle-btn i {
    color: #ff1744;
}

.sort-select {
    padding: 10px 15px;
    border-radius: 8px;
    border: 1px solid rgba(255,255,255,0.1);
    background: #151515;
    color: #fff;
    font-size: 14px;
    cursor: pointer;
}

.sort-select option {
    background: #151515;
}

/* View Toggle - DARK */
.view-toggle {
    display: flex;
    background: #151515 !important;
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid rgba(255,255,255,0.1) !important;
}

.view-toggle button {
    padding: 10px 15px;
    border: none !important;
    background: #151515 !important;
    color: rgba(255,255,255,0.5) !important;
    cursor: pointer;
}

.view-toggle button.active {
    background: #ff1744 !important;
    color: #fff !important;
}

/* Quick Filters (Legado) */
.quick-filters {
    display: flex;
    gap: 10px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.quick-filter {
    padding: 8px 16px;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 20px;
    color: rgba(255,255,255,0.7);
    font-size: 13px;
    cursor: pointer;
}

.quick-filter:hover {
    border-color: #ff1744;
    color: #ff1744;
}

.quick-filter.active {
    background: #ff1744;
    border-color: #ff1744;
    color: #fff;
}

/* Cards */
.cards-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.card-horizontal {
    display: grid;
    grid-template-columns: 280px 1fr auto;
    background: #151515 !important;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid rgba(255,255,255,0.05);
    transition: all 0.3s;
    min-height: 220px;
    align-items: stretch;
}

.card-horizontal:hover {
    border-color: #ff1744;
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(255,23,68,0.1);
}

.card-image {
    position: relative;
    overflow: hidden;
    background: #222;
    grid-row: 1 / -1;
}

.card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
    transition: transform 0.3s;
}

.card-horizontal:hover .card-image img {
    transform: scale(1.05);
}

.card-badges {
    position: absolute;
    top: 10px;
    left: 10px;
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.badge {
    padding: 4px 10px;
    border-radius: 4px;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
}

.badge-vip {
    background: linear-gradient(135deg, #FFD700, #FFA500);
    color: #000;
}

.badge-premium {
    background: linear-gradient(135deg, #9c27b0, #673ab7);
    color: #fff;
}

.badge-online {
    background: #4caf50;
    color: #fff;
}

.badge-verified {
    background: #2196f3;
    color: #fff;
}

.badge-nova {
    background: #ff1744;
    color: #fff;
}

.card-gallery-count {
    position: absolute;
    bottom: 10px;
    right: 10px;
    background: rgba(0,0,0,0.7);
    padding: 5px 10px;
    border-radius: 4px;
    font-size: 12px;
    color: #fff;
    display: flex;
    align-items: center;
    gap: 5px;
}

.card-favorite {
    position: absolute;
    top: 10px;
    right: 10px;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(0,0,0,0.5);
    border: none;
    color: #fff;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}

.card-favorite:hover,
.card-favorite.active {
    background: #ff1744;
}

.card-content {
    padding: 20px;
    display: flex;
    flex-direction: column;
    background: #151515 !important;
}

.card-header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    margin-bottom: 10px;
}

.card-name {
    font-size: 18px;
    font-weight: 700;
    color: #fff;
    display: flex;
    align-items: center;
    gap: 8px;
    margin: 0;
}

.card-name .verified-icon {
    color: #2196f3;
    font-size: 14px;
}

.card-rating {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    background: #ff1744 !important;
    padding: 4px 10px;
    border-radius: 6px;
    font-size: 13px;
    font-weight: 600;
    color: #fff !important;
}

.card-rating i {
    color: #fff !important;
}

.card-location {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 13px;
    color: rgba(255,255,255,0.6);
    margin-bottom: 12px;
    min-height: 20px;
}

.card-location i {
    color: #ff1744;
}

.card-location a {
    color: #ff1744;
}

.card-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-bottom: 12px;
}

.card-tag {
    background: rgba(255,255,255,0.05);
    padding: 4px 10px;
    border-radius: 15px;
    font-size: 12px;
    color: rgba(255,255,255,0.7);
}

.card-description {
    font-size: 14px;
    color: rgba(255,255,255,0.6);
    line-height: 1.5;
    margin: 0 0 15px 0;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.card-features {
    display: flex;
    gap: 15px;
    margin-top: auto;
}

.card-feature {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 13px;
    color: rgba(255,255,255,0.6);
}

.card-feature i {
    color: #4caf50;
}

.card-actions {
    padding: 20px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    border-left: 1px solid rgba(255,255,255,0.05);
    min-width: 180px;
    background: rgba(0,0,0,0.2) !important;
}

.card-price {
    text-align: right;
}

.card-price-label {
    font-size: 12px;
    color: rgba(255,255,255,0.5);
    margin: 0 0 5px 0;
}

.card-price-value {
    font-size: 28px;
    font-weight: 700;
    color: #fff;
    margin: 0;
}

.card-price-period {
    font-size: 14px;
    color: rgba(255,255,255,0.5);
    margin: 0;
}

.card-atende {
    font-size: 12px;
    color: rgba(255,255,255,0.5);
    margin: 5px 0 0 0;
    text-align: right;
}

.card-atende span {
    color: #4caf50;
}

.card-buttons {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.btn-ver-perfil {
    padding: 12px 20px;
    background: #ff1744;
    border: none;
    border-radius: 8px;
    color: #fff !important;
    font-weight: 600;
    cursor: pointer;
    text-decoration: none !important;
    text-align: center;
    display: block;
}

.btn-ver-perfil:hover {
    background: #ff3d5a;
    color: #fff !important;
    text-decoration: none !important;
}

.btn-whatsapp {
    padding: 12px 20px;
    background: #25d366;
    border: none;
    border-radius: 8px;
    color: #fff !important;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    text-decoration: none !important;
}

.btn-whatsapp:hover {
    background: #128c7e;
    color: #fff !important;
    text-decoration: none !important;
}

/* No Results */
.no-results {
    text-align: center;
    padding: 60px 20px;
    background: #151515 !important;
    border-radius: 12px;
    border: 1px solid rgba(255,255,255,0.05);
}

.no-results h3 {
    font-size: 20px;
    margin-bottom: 10px;
    color: #fff;
}

.no-results p {
    color: rgba(255,255,255,0.6);
}

/* Pagination */
.pagination {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 30px;
}

.pagination a,
.pagination span {
    min-width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #151515;
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 8px;
    color: #fff;
    text-decoration: none;
}

.pagination a:hover {
    border-color: #ff1744;
}

.pagination .current {
    background: #ff1744;
    border-color: #ff1744;
}

/* Footer - REMOVE LINHA BRANCA */
footer {
    background: #0a0a0a !important;
    border: none !important;
    border-top: none !important;
}

footer * {
    border: none !important;
}

/* Remove qualquer borda ou linha */
hr {
    display: none !important;
}

/* Responsive */
@media (max-width: 1100px) {
    .card-horizontal {
        grid-template-columns: 200px 1fr auto;
    }
    
    .card-actions {
        min-width: 150px;
    }
}

@media (max-width: 900px) {
    .main-container {
        grid-template-columns: 1fr;
    }
    
    .sidebar {
        position: static;
    }
    
    .card-horizontal {
        grid-template-columns: 180px 1fr;
    }
    
    .card-actions {
        grid-column: 1 / -1;
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        border-left: none;
        border-top: 1px solid rgba(255,255,255,0.05);
    }
    
    .card-buttons {
        flex-direction: row;
    }
}

@media (max-width: 600px) {
    .card-horizontal {
        grid-template-columns: 1fr;
    }
    
    .card-image {
        height: auto;
        min-height: 200px;
    }
    
    .header-search {
        display: none;
    }
}

/* WordPress overrides */
#wpadminbar {
    z-index: 99999;
}

/* ============================================
   SEO SECTION - COLAPSÁVEL
   ============================================ */
.seo-section {
    background: linear-gradient(180deg, #0a0a0a 0%, #0f0f15 100%);
    padding: 0;
    margin-top: 40px;
    border-top: 1px solid rgba(255,255,255,0.05);
}

.seo-section-container {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
}

.seo-toggle {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: #1a1a2e;
    border: 1px solid rgba(255,255,255,0.1);
    color: rgba(255,255,255,0.6);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    transition: all 0.3s;
    position: absolute;
    top: -25px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
}

.seo-toggle:hover {
    background: #252540;
    color: #fff;
    border-color: rgba(255,255,255,0.2);
}

.seo-toggle.active {
    background: #ff1744;
    border-color: #ff1744;
    color: #fff;
}

.seo-toggle.active i {
    transform: rotate(180deg);
}

.seo-toggle i {
    transition: transform 0.3s;
}

.seo-content {
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    padding: 0 24px;
    transition: all 0.4s ease-out;
}

.seo-content.active {
    max-height: 2000px;
    opacity: 1;
    padding: 60px 24px 40px;
}

.seo-content h2 {
    font-size: 28px;
    font-weight: 700;
    color: #fff;
    margin: 0 0 24px;
    line-height: 1.3;
}

.seo-content h3 {
    font-size: 20px;
    font-weight: 600;
    color: #fff;
    margin: 32px 0 16px;
}

.seo-content p {
    font-size: 15px;
    line-height: 1.8;
    color: rgba(255,255,255,0.7);
    margin: 0 0 16px;
}

.seo-content a {
    color: #ff1744;
    text-decoration: underline;
    text-underline-offset: 2px;
}

.seo-content a:hover {
    color: #ff5a7a;
}

.seo-content strong {
    color: #fff;
    font-weight: 600;
}

@media (max-width: 768px) {
    .seo-content h2 {
        font-size: 22px;
    }
    
    .seo-content h3 {
        font-size: 18px;
    }
    
    .seo-content p {
        font-size: 14px;
    }
    
    .seo-toggle {
        width: 44px;
        height: 44px;
        top: -22px;
    }
}

/* ============================================
   MAP SECTION
   ============================================ */
.map-section {
    background: #0a0a0a;
    padding: 60px 20px;
    margin-top: 40px;
}

.map-section-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    align-items: stretch;
    background: #111111;
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 20px;
    overflow: hidden;
}

.map-section-content {
    padding: 50px 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.map-section-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255,23,68,0.1);
    border: 1px solid rgba(255,23,68,0.2);
    padding: 8px 16px;
    border-radius: 100px;
    font-size: 12px;
    font-weight: 600;
    color: #ff1744;
    margin-bottom: 24px;
    width: fit-content;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.map-section-content h2 {
    font-size: 32px;
    font-weight: 700;
    color: #fff;
    margin: 0 0 16px 0;
    line-height: 1.2;
}

.map-section-content p {
    font-size: 15px;
    color: rgba(255,255,255,0.6);
    line-height: 1.7;
    margin: 0 0 12px 0;
}

.map-section-buttons {
    display: flex;
    gap: 12px;
    margin-top: 28px;
}

.btn-ver-anuncios {
    padding: 14px 28px;
    background: linear-gradient(135deg, #ff1744 0%, #d50032 100%);
    border: none;
    border-radius: 12px;
    color: #fff !important;
    font-weight: 600;
    font-size: 14px;
    text-decoration: none !important;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s;
}

.btn-ver-anuncios:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255,23,68,0.4);
}

.btn-abrir-mapa {
    padding: 14px 28px;
    background: transparent;
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: 12px;
    color: #fff;
    font-weight: 500;
    font-size: 14px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s;
}

.btn-abrir-mapa:hover {
    border-color: rgba(255,255,255,0.3);
    background: rgba(255,255,255,0.05);
}

.map-section-map {
    height: 100%;
    min-height: 400px;
    background: #1a1a1a;
    position: relative;
}

.map-section-map iframe {
    width: 100%;
    height: 100%;
    min-height: 400px;
    border: none;
}

@media (max-width: 900px) {
    .map-section-container {
        grid-template-columns: 1fr;
        border-radius: 16px;
    }
    
    .map-section-content {
        padding: 32px 24px;
        text-align: center;
    }
    
    .map-section-tag {
        margin-left: auto;
        margin-right: auto;
    }
    
    .map-section-content h2 {
        font-size: 24px;
    }
    
    .map-section-buttons {
        justify-content: center;
        flex-wrap: wrap;
    }
    
    .map-section-map {
        min-height: 300px;
    }
    
    .map-section-map iframe {
        min-height: 300px;
    }
}

/* ============================================
   GRID VIEW FOR CARDS
   ============================================ */
.cards-list.grid-view {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 20px;
}

.cards-list.grid-view .card-horizontal {
    display: flex;
    flex-direction: column;
    grid-template-columns: none;
}

.cards-list.grid-view .card-image {
    height: 280px;
    position: relative;
}

.cards-list.grid-view .card-image img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.cards-list.grid-view .card-content {
    padding: 15px;
}

.cards-list.grid-view .card-description {
    display: none;
}

.cards-list.grid-view .card-features {
    display: none;
}

.cards-list.grid-view .card-tags {
    display: none;
}

.cards-list.grid-view .card-actions {
    border-left: none;
    border-top: 1px solid rgba(255,255,255,0.05);
    padding: 15px;
    min-width: auto;
}

.cards-list.grid-view .card-price {
    text-align: left;
    margin-bottom: 10px;
}

.cards-list.grid-view .card-price-value {
    font-size: 22px;
}

.cards-list.grid-view .card-buttons {
    flex-direction: row;
}

.cards-list.grid-view .card-buttons a,
.cards-list.grid-view .card-buttons button {
    flex: 1;
    padding: 10px 15px;
    font-size: 13px;
}

/* ============================================
   FILTROS MOBILE - BOTÃO E MODAL
   ============================================ */

/* Botão Filtros Mobile - Escondido no desktop */
.btn-filtros-mobile {
    display: none;
    position: fixed;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    padding: 14px 28px;
    background: linear-gradient(135deg, #ff1744 0%, #d50000 100%);
    border: none;
    border-radius: 50px;
    color: #fff;
    font-weight: 600;
    font-size: 15px;
    cursor: pointer;
    z-index: 1000;
    box-shadow: 0 4px 20px rgba(255, 23, 68, 0.4);
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
}

.btn-filtros-mobile:hover {
    transform: translateX(-50%) scale(1.05);
    box-shadow: 0 6px 25px rgba(255, 23, 68, 0.5);
}

.btn-filtros-mobile i {
    font-size: 16px;
}

.filter-badge {
    display: none;
    align-items: center;
    justify-content: center;
    min-width: 20px;
    height: 20px;
    padding: 0 6px;
    background: #fff;
    color: #ff1744;
    border-radius: 10px;
    font-size: 11px;
    font-weight: 700;
}

/* Modal de Filtros - Sem Blur */
.filters-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 9999;
}

.filters-modal.active {
    display: block;
}

.filters-modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.85);
    /* SEM blur para não atrapalhar a leitura */
}

.filters-modal-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    max-height: 90vh;
    background: #0f0f0f;
    border-radius: 24px 24px 0 0;
    display: flex;
    flex-direction: column;
    animation: slideUp 0.3s ease;
    border-top: 1px solid rgba(255,255,255,0.1);
}

@keyframes slideUp {
    from {
        transform: translateY(100%);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.filters-modal-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 24px;
    border-bottom: 1px solid rgba(255,255,255,0.08);
}

.filters-modal-header h3 {
    font-size: 18px;
    font-weight: 700;
    color: #fff;
    margin: 0;
    display: flex;
    align-items: center;
    gap: 10px;
}

.filters-modal-header h3 i {
    color: #ff1744;
}

.filters-modal-close {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255,255,255,0.05);
    border: none;
    color: #fff;
    font-size: 18px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s;
}

.filters-modal-close:hover {
    background: rgba(255,255,255,0.1);
}

.filters-modal-body {
    flex: 1;
    overflow-y: auto;
    padding: 20px 24px;
}

.filter-section-modal {
    margin-bottom: 28px;
}

.filter-section-modal:last-child {
    margin-bottom: 0;
}

.filter-section-modal h4 {
    font-size: 14px;
    font-weight: 600;
    color: rgba(255,255,255,0.6);
    margin: 0 0 14px 0;
    display: flex;
    align-items: center;
    gap: 8px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.filter-section-modal h4 i {
    color: #ff1744;
    font-size: 12px;
}

/* Filter Chips */
.filter-options {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.filter-chip {
    display: flex;
    align-items: center;
    cursor: pointer;
}

.filter-chip input {
    display: none;
}

.filter-chip span {
    padding: 10px 18px;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 25px;
    color: rgba(255,255,255,0.8);
    font-size: 14px;
    transition: all 0.2s;
}

.filter-chip input:checked + span {
    background: rgba(255, 23, 68, 0.15);
    border-color: #ff1744;
    color: #ff1744;
}

.filter-chip:hover span {
    border-color: rgba(255,255,255,0.3);
}

/* Price Range Modal */
.price-range-modal {
    display: flex;
    align-items: flex-end;
    gap: 15px;
}

.price-input-group {
    flex: 1;
}

.price-input-group label {
    display: block;
    font-size: 12px;
    color: rgba(255,255,255,0.5);
    margin-bottom: 8px;
}

.price-input-group input {
    width: 100%;
    padding: 14px 16px;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 12px;
    color: #fff;
    font-size: 16px;
    text-align: center;
}

.price-input-group input::placeholder {
    color: rgba(255,255,255,0.3);
}

.price-input-group input:focus {
    outline: none;
    border-color: #ff1744;
    background: rgba(255, 23, 68, 0.05);
}

.price-separator {
    color: rgba(255,255,255,0.3);
    padding-bottom: 14px;
}

/* Footer do Modal */
.filters-modal-footer {
    display: flex;
    gap: 12px;
    padding: 20px 24px;
    border-top: 1px solid rgba(255,255,255,0.08);
    background: #0a0a0a;
}

.btn-limpar-filtros {
    flex: 0 0 auto;
    padding: 14px 20px;
    background: transparent;
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 12px;
    color: rgba(255,255,255,0.7);
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.2s;
}

.btn-limpar-filtros:hover {
    border-color: rgba(255,255,255,0.4);
    color: #fff;
}

.btn-aplicar-filtros {
    flex: 1;
    padding: 14px 24px;
    background: linear-gradient(135deg, #ff1744 0%, #d50000 100%);
    border: none;
    border-radius: 12px;
    color: #fff;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: all 0.2s;
}

.btn-aplicar-filtros:hover {
    transform: scale(1.02);
}

/* Responsivo - Mostra botão mobile e esconde sidebar */
@media (max-width: 900px) {
    .btn-filtros-mobile {
        display: flex;
    }
    
    .sidebar {
        display: none !important;
    }
    
    .main-container {
        grid-template-columns: 1fr !important;
        padding-top: 120px;
        padding-bottom: 80px;
    }
}

/* Safe area para iPhone */
@supports (padding-bottom: env(safe-area-inset-bottom)) {
    .filters-modal-footer {
        padding-bottom: calc(20px + env(safe-area-inset-bottom));
    }
    
    .btn-filtros-mobile {
        bottom: calc(20px + env(safe-area-inset-bottom));
    }
}

/* ============================================
   FIX CARD MOBILE - BOTÕES
   ============================================ */
@media (max-width: 600px) {
    .card-horizontal {
        display: flex;
        flex-direction: column;
    }
    
    .card-image {
        height: 320px;
        width: 100%;
        position: relative;
    }
    
    .card-image img {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        object-fit: cover;
    }
    
    .card-content {
        padding: 16px;
    }
    
    .card-name {
        font-size: 20px;
    }
    
    .card-actions {
        display: grid;
        grid-template-columns: auto 1fr;
        align-items: center;
        padding: 16px;
        border-left: none;
        border-top: 1px solid rgba(255,255,255,0.05);
        min-width: auto;
        gap: 15px;
    }
    
    .card-price {
        text-align: left;
    }
    
    .card-price-value {
        font-size: 26px;
    }
    
    .card-buttons {
        display: flex;
        flex-direction: row;
        gap: 10px;
        justify-content: flex-end;
    }
    
    .card-buttons .btn-ver-perfil,
    .card-buttons .btn-whatsapp {
        padding: 12px 18px;
        font-size: 14px;
        white-space: nowrap;
        border-radius: 10px;
    }
    
    .card-buttons .btn-ver-perfil {
        flex: 1;
    }
    
    .card-buttons .btn-whatsapp {
        flex: 1;
    }
}

@media (max-width: 400px) {
    .card-image {
        height: 280px;
    }
    
    .card-actions {
        grid-template-columns: 1fr;
        gap: 12px;
    }
    
    .card-price {
        display: flex;
        align-items: center;
        justify-content: space-between;
        width: 100%;
    }
    
    .card-price-value {
        font-size: 28px;
    }
    
    .card-buttons {
        width: 100%;
    }
    
    .card-buttons .btn-ver-perfil,
    .card-buttons .btn-whatsapp {
        flex: 1;
        text-align: center;
        justify-content: center;
        padding: 14px 16px;
    }
}

/* ============================================
   FILTROS DE LOCALIZAÇÃO
   ============================================ */
.filter-select-group {
    margin-bottom: 12px;
}

.filter-select-group label {
    display: block;
    font-size: 12px;
    color: rgba(255,255,255,0.5);
    margin-bottom: 6px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.filter-select-group select {
    width: 100%;
    padding: 12px 15px;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 8px;
    color: #fff;
    font-size: 14px;
    cursor: pointer;
    appearance: none;
    -webkit-appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23888' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 12px center;
}

.filter-select-group select:focus {
    outline: none;
    border-color: #ff1744;
    background-color: rgba(255, 23, 68, 0.05);
}

.filter-select-group select:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.filter-select-group select option {
    background: #151515;
    color: #fff;
    padding: 10px;
}

.btn-apply-location {
    width: 100%;
    padding: 12px;
    margin-top: 15px;
    background: transparent;
    border: 1px solid #ff1744;
    border-radius: 8px;
    color: #ff1744;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: all 0.2s;
}

.btn-apply-location:hover {
    background: #ff1744;
    color: #fff;
}

/* ============================================
   SELECTS NO MODAL MOBILE
   ============================================ */
.filter-select-modal {
    margin-bottom: 12px;
}

.filter-select-modal select {
    width: 100%;
    padding: 14px 16px;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 12px;
    color: #fff;
    font-size: 15px;
    cursor: pointer;
    appearance: none;
    -webkit-appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23888' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
}

.filter-select-modal select:focus {
    outline: none;
    border-color: #ff1744;
}

.filter-select-modal select:disabled {
    opacity: 0.4;
    cursor: not-allowed;
}

.filter-select-modal select option {
    background: #151515;
    color: #fff;
}

/* ============================================
   SISTEMA DE COMPARAÇÃO DE PERFIS
   ============================================ */

/* Header Actions - Botões ao lado do rating */
.card-header-actions {
    display: flex;
    align-items: center;
    gap: 10px;
}

.card-compare,
.card-favorite {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.1);
    color: rgba(255,255,255,0.6);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    transition: all 0.2s;
}

.card-compare:hover,
.card-favorite:hover {
    background: rgba(255,255,255,0.15);
    color: #fff;
    border-color: rgba(255,255,255,0.2);
}

.card-compare.active {
    background: #5c6bc0;
    border-color: #5c6bc0;
    color: #fff;
}

.card-favorite.active {
    background: #ff1744;
    border-color: #ff1744;
    color: #fff;
}

.card-favorite.active i {
    font-weight: 900;
}

/* Barra de Comparação Fixa - Dark Black */
.compare-bar {
    position: fixed;
    bottom: -200px;
    left: 0;
    right: 0;
    background: linear-gradient(180deg, rgba(18,18,18,0.98) 0%, rgba(10,10,10,0.99) 100%);
    border-top: 1px solid rgba(255,23,68,0.2);
    padding: 16px 20px;
    z-index: 1001;
    transition: bottom 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 -10px 40px rgba(0,0,0,0.5);
    visibility: hidden;
    opacity: 0;
}

.compare-bar.visible {
    bottom: 0;
    visibility: visible;
    opacity: 1;
}

.compare-bar-container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.compare-slots {
    display: flex;
    gap: 15px;
    flex: 1;
}

.compare-slot {
    flex: 1;
    max-width: 280px;
    height: 72px;
    background: rgba(255,255,255,0.03);
    border: 2px dashed rgba(255,23,68,0.25);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.25s ease;
}

.compare-slot:hover {
    border-color: rgba(255,23,68,0.4);
    background: rgba(255,23,68,0.05);
}

.compare-slot.has-profile {
    border-style: solid;
    border-color: rgba(255,23,68,0.3);
    background: rgba(255,23,68,0.08);
}

.slot-empty {
    color: rgba(255,255,255,0.35);
    font-size: 14px;
    font-weight: 500;
}

.slot-filled {
    display: flex;
    align-items: center;
    gap: 12px;
    width: 100%;
    padding: 10px 15px;
    position: relative;
}

.slot-filled img {
    width: 50px;
    height: 50px;
    border-radius: 10px;
    object-fit: cover;
    border: 2px solid rgba(255,23,68,0.3);
}

.slot-info {
    flex: 1;
    overflow: hidden;
}

.slot-name {
    display: block;
    font-weight: 600;
    color: #fff;
    font-size: 14px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.slot-price {
    display: block;
    font-size: 12px;
    color: #ff1744;
    font-weight: 500;
}

.slot-remove {
    position: absolute;
    top: 4px;
    right: 4px;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: rgba(0,0,0,0.6);
    border: none;
    color: rgba(255,255,255,0.7);
    cursor: pointer;
    font-size: 14px;
    line-height: 1;
    transition: all 0.2s;
    display: flex;
    align-items: center;
    justify-content: center;
}

.slot-remove:hover {
    background: #ff1744;
    color: #fff;
    transform: scale(1.1);
}

.compare-actions {
    display: flex;
    gap: 12px;
}

.btn-limpar-compare {
    padding: 14px 22px;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: 12px;
    color: rgba(255,255,255,0.8);
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.25s;
}

.btn-limpar-compare:hover {
    background: rgba(255,255,255,0.1);
    border-color: rgba(255,255,255,0.3);
    color: #fff;
}

.btn-limpar-compare i {
    font-size: 13px;
}

.btn-comparar {
    padding: 14px 28px;
    background: linear-gradient(135deg, #ff1744 0%, #d50000 100%);
    border: none;
    border-radius: 12px;
    color: #fff;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: all 0.25s;
    box-shadow: 0 4px 20px rgba(255,23,68,0.35);
}

.btn-comparar:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(255,23,68,0.5);
}

.btn-comparar i {
    font-size: 15px;
}

/* Modal de Comparação - Design Premium */
.compare-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 9999;
}

.compare-modal.active {
    display: flex;
    align-items: center;
    justify-content: center;
}

.compare-modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.92);
    /* SEM blur para não atrapalhar a leitura */
}

.compare-modal-content {
    position: relative;
    width: 95%;
    max-width: 950px;
    max-height: 90vh;
    background: linear-gradient(180deg, #1e1e1e 0%, #141414 100%);
    border-radius: 24px;
    overflow: hidden;
    animation: modalFadeIn 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(255,255,255,0.08);
    box-shadow: 0 25px 80px rgba(0,0,0,0.7), 0 0 0 1px rgba(255,23,68,0.1);
}

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

.compare-modal-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 24px 30px;
    background: rgba(255,23,68,0.05);
    border-bottom: 1px solid rgba(255,23,68,0.15);
}

.compare-modal-header h3 {
    font-size: 22px;
    font-weight: 700;
    color: #fff;
    margin: 0;
    display: flex;
    align-items: center;
    gap: 14px;
}

.compare-modal-header h3 i {
    color: #ff1744;
    font-size: 20px;
}

.compare-modal-close {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    color: rgba(255,255,255,0.7);
    font-size: 18px;
    cursor: pointer;
    transition: all 0.25s;
    display: flex;
    align-items: center;
    justify-content: center;
}

.compare-modal-close:hover {
    background: #ff1744;
    border-color: #ff1744;
    color: #fff;
    transform: rotate(90deg);
}

.compare-modal-body {
    padding: 30px;
    overflow-y: auto;
    max-height: calc(90vh - 90px);
    background: #181818;
}

/* Conteúdo da Comparação */
.compare-profiles {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.compare-row {
    display: grid;
    grid-template-columns: 130px repeat(auto-fit, minmax(160px, 1fr));
    gap: 20px;
    padding: 18px 0;
    border-bottom: 1px solid rgba(255,255,255,0.06);
    align-items: center;
}

.compare-row:last-child {
    border-bottom: none;
}

.compare-header-row {
    padding-bottom: 25px;
    margin-bottom: 15px;
    border-bottom: 1px solid rgba(255,23,68,0.2);
    background: linear-gradient(180deg, rgba(255,23,68,0.03) 0%, transparent 100%);
    margin: -30px -30px 20px -30px;
    padding: 25px 30px 25px 30px;
}

.compare-label {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    color: rgba(255,255,255,0.5);
    font-weight: 500;
}

.compare-label i {
    color: #ff1744;
    width: 18px;
    font-size: 13px;
}

.compare-cell {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 8px;
    padding: 15px;
    background: rgba(255,255,255,0.02);
    border-radius: 16px;
    transition: all 0.2s;
}

.compare-cell:hover {
    background: rgba(255,255,255,0.04);
}

.compare-cell.best {
    position: relative;
    background: rgba(76,175,80,0.08);
}

.compare-cell.best::after {
    content: '';
    position: absolute;
    inset: -2px;
    border: 2px solid #4caf50;
    border-radius: 18px;
    pointer-events: none;
}

.compare-photo {
    width: 130px;
    height: 160px;
    object-fit: cover;
    border-radius: 14px;
    border: 3px solid rgba(255,255,255,0.1);
    box-shadow: 0 8px 25px rgba(0,0,0,0.4);
    transition: all 0.3s;
}

.compare-cell:hover .compare-photo {
    transform: scale(1.02);
}

.compare-cell.best .compare-photo {
    border-color: #4caf50;
}

.compare-name {
    font-size: 17px;
    font-weight: 700;
    color: #fff;
    margin: 12px 0 6px 0;
}

.compare-rating {
    color: #ffc107;
    font-size: 15px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 5px;
}

.compare-rating i {
    font-size: 13px;
}

.compare-cell span {
    font-size: 16px;
    color: #fff;
    font-weight: 500;
}

.best-badge {
    display: inline-flex;
    align-items: center;
    padding: 5px 14px;
    background: linear-gradient(135deg, #4caf50 0%, #2e7d32 100%);
    color: #fff !important;
    border-radius: 20px;
    font-size: 11px !important;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-top: 5px;
    box-shadow: 0 2px 10px rgba(76,175,80,0.4);
}

.compare-whatsapp-row {
    padding-top: 25px;
    margin-top: 15px;
    border-top: 1px solid rgba(255,23,68,0.15);
}

.btn-whatsapp-compare {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 16px 32px;
    background: linear-gradient(135deg, #25d366 0%, #128c7e 100%);
    color: #fff !important;
    text-decoration: none !important;
    border-radius: 14px;
    font-weight: 700;
    font-size: 15px;
    transition: all 0.25s;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.3);
}

.btn-whatsapp-compare:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(37, 211, 102, 0.5);
}

.btn-whatsapp-compare i {
    font-size: 18px;
}

/* ============================================== */
/* RESPONSIVO - BARRA DE FILTROS TRIVAGO         */
/* ============================================== */
@media (max-width: 1024px) {
    .filters-bar-trivago {
        padding: 0 15px;
    }
    
    .map-btn-trivago {
        display: none; /* Esconde em tablet, mostra botão mobile */
    }
    
    .results-header-trivago {
        flex-direction: column;
        align-items: flex-start;
    }
}

@media (max-width: 768px) {
    .filters-bar-trivago {
        top: 60px;
        padding: 0 10px;
    }
    
    .filters-bar-scroll {
        padding: 12px 0;
        gap: 6px;
    }
    
    .filter-btn-main {
        padding: 8px 14px;
        font-size: 13px;
    }
    
    .filter-dropdown-btn {
        padding: 8px 12px;
        font-size: 13px;
    }
    
    .filter-tag {
        padding: 8px 12px;
        font-size: 12px;
    }
    
    .filter-separator {
        height: 24px;
        margin: 0 4px;
    }
    
    .results-info-trivago h1 {
        font-size: 20px;
    }
    
    .results-meta {
        font-size: 13px;
        flex-direction: row;
        align-items: center;
        gap: 6px;
    }
}

/* Responsivo */
@media (max-width: 768px) {
    .compare-bar-container {
        flex-direction: column;
        gap: 15px;
    }
    
    .compare-slots {
        width: 100%;
        overflow-x: auto;
        padding-bottom: 10px;
    }
    
    .compare-slot {
        min-width: 200px;
    }
    
    .compare-actions {
        width: 100%;
        justify-content: stretch;
    }
    
    .btn-limpar-compare,
    .btn-comparar {
        flex: 1;
        justify-content: center;
    }
    
    .compare-row {
        grid-template-columns: 80px repeat(auto-fit, minmax(100px, 1fr));
        gap: 10px;
    }
    
    .compare-label {
        font-size: 12px;
    }
    
    .compare-photo {
        width: 80px;
        height: 100px;
    }
    
    .compare-name {
        font-size: 14px;
    }
}

/* Ajuste para quando barra de comparação está visível */
.compare-bar.visible ~ .btn-filtros-mobile {
    bottom: calc(120px + env(safe-area-inset-bottom, 0px));
}

/* Mobile: Esconde barra de comparação mas mantém botão nos cards */
@media (max-width: 900px) {
    .compare-bar,
    .compare-bar.visible {
        display: none !important;
    }
}


/* ========================================= */
/* EXPLORE SECTION OVERRIDE - GARANTIR ESTILO */
/* ========================================= */
.explore-section {
    background: #0a0a0a !important;
    padding: 40px 20px !important;
}

.explore-section-tags {
    display: flex !important;
    flex-wrap: wrap !important;
    gap: 10px !important;
}

.explore-section-tag {
    display: inline-flex !important;
    align-items: center !important;
    gap: 8px !important;
    padding: 10px 16px !important;
    background: #151515 !important;
    border: 1px solid #252525 !important;
    border-radius: 25px !important;
    color: rgba(255,255,255,0.8) !important;
    font-size: 14px !important;
    text-decoration: none !important;
    transition: all 0.2s ease !important;
    white-space: nowrap !important;
}

.explore-section-tag i {
    font-size: 12px !important;
    color: rgba(255,255,255,0.5) !important;
}

.explore-section-tag:hover {
    background: #1a1a1a !important;
    border-color: #ff1744 !important;
    color: #fff !important;
    transform: translateY(-2px) !important;
}

.explore-section-tag:hover i {
    color: #ff1744 !important;
}

.explore-section-tag.active {
    background: rgba(255, 23, 68, 0.15) !important;
    border-color: #ff1744 !important;
    color: #ff1744 !important;
}

.explore-section-tag.active i {
    color: #ff1744 !important;
}


/* ============================================
   FOOTER - Design Premium
   ============================================ */
.site-footer {
    background: #0a0a0a;
    border-top: 1px solid rgba(255,255,255,0.06);
    padding: 60px 0 40px;
    margin-top: 60px;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 60px;
    margin-bottom: 48px;
}

.footer-brand {
    max-width: 280px;
}

.footer-brand .logo-brand {
    margin-bottom: 16px;
}

.footer-desc {
    font-size: 14px;
    color: rgba(255,255,255,0.5);
    line-height: 1.7;
    margin: 0;
}

.footer-column {
    /* Column styling */
}

.footer-title {
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: rgba(255,255,255,0.5);
    margin: 0 0 20px 0;
}

.footer-links {
    list-style: none;
    margin: 0;
    padding: 0;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: rgba(255,255,255,0.7);
    text-decoration: none;
    font-size: 14px;
    transition: color 0.2s;
}

.footer-links a:hover {
    color: #ff1744;
}

.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 32px;
    border-top: 1px solid rgba(255,255,255,0.06);
}

.footer-copyright {
    font-size: 13px;
    color: rgba(255,255,255,0.4);
    margin: 0;
}

.footer-social {
    display: flex;
    gap: 16px;
}

.footer-social a {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255,255,255,0.05);
    border-radius: 50%;
    color: rgba(255,255,255,0.6);
    font-size: 16px;
    text-decoration: none;
    transition: all 0.2s;
}

.footer-social a:hover {
    background: #ff1744;
    color: #fff;
}

/* Footer Responsive */
@media (max-width: 1024px) {
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px;
    }
}

@media (max-width: 768px) {
    .site-footer {
        padding: 40px 0 30px;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    
    .footer-brand {
        max-width: 100%;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
}
