/**
 * SEÇÕES ESPECÍFICAS - Portal Turístico Igrejinha
 * Estilos para seções que estavam sem estilização
 */

/* ==========================================================================
   SEÇÃO LUGARES IMPERDÍVEIS (DESTINATIONS SPOTLIGHT)
   ========================================================================== */
.destinations-spotlight {
    position: relative;
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    margin: 4rem 0;
}

.destinations-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.destinations-bg .bg-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.7);
    transition: transform 8s ease-in-out;
}

.destinations-bg:hover .bg-image {
    transform: scale(1.05);
}

.destinations-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        45deg,
        rgba(61, 84, 115, 0.8) 0%,
        rgba(24, 197, 217, 0.6) 50%,
        rgba(217, 152, 74, 0.7) 100%
    );
    z-index: 2;
}

.destinations-content {
    position: relative;
    z-index: 3;
    width: 100%;
    padding: 4rem 0;
}

.destinations-header {
    margin-bottom: 3rem;
}

.destinations-slider {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 400px;
}

.destination-slide {
    display: none;
    max-width: 900px;
    width: 100%;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    border-radius: 20px;
    padding: 2rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
    animation: slideIn 0.8s var(--ease-organic);
}

.destination-slide.active {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    align-items: center;
}

.destination-image {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    height: 300px;
}

.destination-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s var(--ease-organic);
}

.destination-slide:hover .destination-image img {
    transform: scale(1.1);
}

.destination-content h3 {
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 700;
    color: white;
    margin-bottom: 1rem;
}

.destination-content p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.destination-features {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 2rem;
}

.feature {
    padding: 0.5rem 1rem;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    font-size: 0.9rem;
    color: white;
    font-weight: 500;
}

.destination-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    background: var(--gradient-por-do-sol);
    color: white;
    text-decoration: none;
    border-radius: 25px;
    font-weight: 600;
    transition: all 0.3s var(--ease-organic);
    margin-top: 1.5rem;
}

.destination-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(217, 152, 74, 0.4);
}

@keyframes slideIn {
    0% {
        opacity: 0;
        transform: translateY(30px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ==========================================================================
   SEÇÃO ESTABELECIMENTOS EM DESTAQUE
   ========================================================================== */
.featured-establishments {
    padding: 6rem 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    position: relative;
}

.featured-establishments::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="dots" width="20" height="20" patternUnits="userSpaceOnUse"><circle cx="10" cy="10" r="1" fill="rgba(61,84,115,0.03)"/></pattern></defs><rect width="100" height="100" fill="url(%23dots)"/></svg>');
    pointer-events: none;
}

.establishments-header {
    position: relative;
    z-index: 2;
    margin-bottom: 4rem;
}

.establishments-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    position: relative;
    z-index: 2;
}

.establishment-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(61, 84, 115, 0.1);
    transition: all 0.3s var(--ease-organic);
    position: relative;
}

.establishment-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gradient-ceu-igrejinha);
    opacity: 0;
    transition: opacity 0.3s var(--ease-organic);
    border-radius: 20px;
    z-index: -1;
}

.establishment-card:hover::before {
    opacity: 0.03;
}

.establishment-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(61, 84, 115, 0.15);
}

.establishment-image {
    position: relative;
    height: 250px;
    overflow: hidden;
}

.establishment-image .card-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s var(--ease-organic);
}

.establishment-card:hover .card-img {
    transform: scale(1.1);
}

.image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, rgba(61, 84, 115, 0.8), rgba(24, 197, 217, 0.8));
    opacity: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s var(--ease-organic);
}

.establishment-card:hover .image-overlay {
    opacity: 1;
}

.establishment-actions {
    display: flex;
    gap: 1rem;
}

.action-btn {
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.2);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    font-size: 1.2rem;
    transition: all 0.3s var(--ease-organic);
    display: flex;
    align-items: center;
    justify-content: center;
}

.action-btn:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: scale(1.1);
}

.establishment-badge {
    position: absolute;
    top: 1rem;
    left: 1rem;
    padding: 0.5rem 1rem;
    background: var(--gradient-por-do-sol);
    color: white;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    z-index: 2;
}

.establishment-content {
    padding: 1.5rem;
}

.establishment-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1rem;
}

.establishment-header h3 {
    font-family: var(--font-display);
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--igrejinha-azul-montanha);
    margin: 0;
    flex: 1;
}

.establishment-rating {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 0.25rem;
}

.stars {
    color: var(--igrejinha-ouro-sol);
    font-size: 0.9rem;
}

.rating-number {
    font-size: 0.85rem;
    color: #666;
    font-weight: 600;
}

.establishment-meta {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
    font-size: 0.9rem;
    color: #666;
}

.establishment-meta span {
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.establishment-description {
    color: #666;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.establishment-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.establishment-price {
    display: flex;
    flex-direction: column;
}

.price-label {
    font-size: 0.85rem;
    color: #666;
}

.price-value {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--igrejinha-azul-montanha);
}

.establishment-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    background: var(--gradient-por-do-sol);
    color: white;
    text-decoration: none;
    border-radius: 25px;
    font-weight: 600;
    transition: all 0.3s var(--ease-organic);
}

.establishment-link:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(217, 152, 74, 0.4);
}

.establishments-footer {
    margin-top: 4rem;
    position: relative;
    z-index: 2;
}

.btn-see-all {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    padding: 1.2rem 3rem;
    background: var(--gradient-ceu-igrejinha);
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.1rem;
    transition: all 0.3s var(--ease-organic);
    position: relative;
    overflow: hidden;
}

.btn-see-all::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.6s ease;
}

.btn-see-all:hover::before {
    left: 100%;
}

.btn-see-all:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 15px 35px rgba(61, 84, 115, 0.3);
}

/* ==========================================================================
   SEÇÃO CTA FINAL
   ========================================================================== */
.cta-section {
    position: relative;
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    margin: 4rem 0 0;
}

.cta-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.cta-bg .bg-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.6);
}

.cta-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        135deg,
        rgba(61, 84, 115, 0.8) 0%,
        rgba(24, 197, 217, 0.7) 50%,
        rgba(217, 152, 74, 0.8) 100%
    );
    z-index: 2;
}

.cta-content {
    position: relative;
    z-index: 3;
    text-align: center;
    color: white;
    max-width: 800px;
    padding: 3rem 2rem;
    margin: 0 auto;
}

.cta-title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 800;
    margin-bottom: 1.5rem;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.cta-subtitle {
    font-size: 1.3rem;
    margin-bottom: 3rem;
    opacity: 0.95;
    line-height: 1.6;
}

.cta-actions {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-cta-primary,
.btn-cta-secondary {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1.2rem 2.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    transition: all 0.3s var(--ease-organic);
    position: relative;
    overflow: hidden;
}

.btn-cta-primary {
    background: var(--gradient-por-do-sol);
    color: white;
}

.btn-cta-secondary {
    background: rgba(255, 255, 255, 0.2);
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.btn-cta-primary:hover,
.btn-cta-secondary:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
}

/* ==========================================================================
   RESPONSIVIDADE DAS NOVAS SEÇÕES
   ========================================================================== */
@media (max-width: 768px) {
    .destination-slide.active {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .destination-image {
        height: 200px;
    }
    
    .establishments-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .establishment-header {
        flex-direction: column;
        gap: 0.5rem;
        align-items: flex-start;
    }
    
    .establishment-rating {
        align-items: flex-start;
    }
    
    .establishment-footer {
        flex-direction: column;
        gap: 1rem;
        align-items: stretch;
    }
    
    .cta-actions {
        flex-direction: column;
        align-items: center;
    }
    
    .btn-cta-primary,
    .btn-cta-secondary {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .destination-slide {
        padding: 1.5rem;
    }
    
    .establishment-content {
        padding: 1rem;
    }
    
    .cta-content {
        padding: 2rem 1rem;
    }
}

/* ==========================================================================
   TAXONOMY CATEGORY - PÁGINA DE CATEGORIA DE ESTABELECIMENTOS
   ========================================================================== */
.category-hero {
    position: relative;
    min-height: 75vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    margin-top: 60px;
    padding: 3rem 0 10rem 0;
}

/* Ajuste para WordPress Admin Bar */
.admin-bar .category-hero {
    margin-top: 92px; /* 60px + 32px */
}

/* Mobile admin bar (menor que 783px) */
@media screen and (max-width: 782px) {
    .admin-bar .category-hero {
        margin-top: 106px; /* 60px + 46px */
    }
}

.category-hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.category-hero .hero-bg-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.7);
}

.category-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        135deg,
        var(--igrejinha-azul-montanha) 0%,
        var(--igrejinha-turquoise) 100%
    );
    opacity: 0.8;
    z-index: 2;
}

.category-hero-content {
    position: relative;
    z-index: 3;
    text-align: center;
    color: white;
    max-width: 800px;
}

.category-icon {
    width: 100px;
    height: 100px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
    animation: categoryIconFloat 4s ease-in-out infinite;
}

.category-icon:hover {
    transform: scale(1.1);
    background: rgba(255, 255, 255, 0.25);
    border-color: rgba(255, 255, 255, 0.5);
}

.category-icon i {
    font-size: 3rem;
    color: white;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.2));
}

@keyframes categoryIconFloat {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-8px); }
}

.category-title {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 6vw, 4rem);
    font-weight: 800;
    margin-bottom: 1rem;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.category-description,
.category-subtitle {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    opacity: 0.95;
    line-height: 1.6;
}

.category-stats {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.category-stats .stat-item {
    text-align: center;
}

.category-stats .stat-number {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 0.25rem;
}

.category-stats .stat-label {
    display: block;
    font-size: 0.9rem;
    opacity: 0.9;
}

/* Filtros da Categoria - Flutuantes sobre o Hero */
.category-filters {
    position: relative;
    z-index: 4;
    margin-top: -8rem;
    padding: 0 0 4rem 0;
    pointer-events: none;
}

.category-filters .filters-wrapper {
    pointer-events: all;
    margin: 0 auto;
    max-width: 1200px;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(25px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    box-shadow: 
        0 12px 50px rgba(31, 38, 135, 0.2),
        0 8px 40px rgba(0, 0, 0, 0.15),
        inset 0 1px 0 rgba(255, 255, 255, 0.4);
}

/* Lista de Estabelecimentos da Categoria */
.category-listing {
    padding: 4rem 0;
}

/* Responsividade da Categoria */
@media (max-width: 768px) {
    .category-hero {
        min-height: 60vh;
        padding-bottom: 6rem;
    }
    
    .category-icon {
        width: 80px;
        height: 80px;
    }
    
    .category-icon i {
        font-size: 2.5rem;
    }
    
    .category-stats {
        gap: 1rem;
    }
}

/* ==========================================================================
   ESTILOS COMPARTILHADOS - ARCHIVE E CATEGORIA
   ========================================================================== */

/* Filtros - Design Glassmorphism Premium */
.filters-wrapper {
    padding: 2rem;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.25);
    border-radius: 20px;
    box-shadow: 
        0 8px 32px rgba(31, 38, 135, 0.15),
        0 4px 20px rgba(0, 0, 0, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

/* Filtros flutuantes para página de estabelecimentos */
.establishments-filters {
    position: relative;
    z-index: 4;
    margin-top: -8rem;
    padding: 0 0 4rem 0;
    pointer-events: none;
}

.establishments-filters .filters-wrapper {
    pointer-events: all;
    margin: 0 auto;
    max-width: 1200px;
}

/* Hero da página de estabelecimentos precisa ser maior para acomodar filtros */
.page-hero {
    min-height: 75vh;
    padding-bottom: 10rem;
}

.filters-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
    align-items: end;
}

.filter-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.filter-group label {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--igrejinha-azul-montanha);
    margin-bottom: 0.25rem;
}

.filter-input,
.filter-select {
    padding: 0.75rem 1rem;
    border: 2px solid #e9ecef;
    border-radius: 12px;
    background: white;
    font-size: 0.95rem;
    transition: all 0.3s ease;
}

.filter-input:focus,
.filter-select:focus {
    outline: none;
    border-color: var(--igrejinha-turquoise);
    box-shadow: 0 0 0 3px rgba(24, 197, 217, 0.1);
}

.filter-btn {
    padding: 0.75rem 2rem;
    background: var(--gradient-por-do-sol);
    color: white;
    border: none;
    border-radius: 25px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s var(--ease-organic);
    margin-top: 1.5rem;
}

.filter-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(217, 152, 74, 0.4);
}

/* Header da Listagem */
.listing-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
}

.results-info h2 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--igrejinha-azul-montanha);
    margin-bottom: 0.5rem;
}

.results-info p {
    color: #666;
    font-size: 0.95rem;
}

/* Toggle de Visualização */
.view-toggle {
    display: flex;
    gap: 0.5rem;
}

.view-btn {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: white;
    border: 2px solid #e9ecef;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 1.2rem;
}

.view-btn.active {
    background: var(--igrejinha-turquoise);
    color: white;
    border-color: var(--igrejinha-turquoise);
}

/* Grid de Estabelecimentos */
.establishments-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
}

/* Card de Estabelecimento */
.establishment-card-archive {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(61, 84, 115, 0.08);
    transition: all 0.3s var(--ease-organic);
    display: flex;
    flex-direction: column;
    height: 100%;
}

.establishment-card-archive:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(61, 84, 115, 0.15);
}

/* Imagem do Card */
.card-image-container {
    position: relative;
    height: 280px;
    overflow: hidden;
    background: #f0f0f0;
}

.card-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.5s var(--ease-organic);
}

.establishment-card-archive:hover .card-image {
    transform: scale(1.08);
}

/* Overlay de Ações */
.card-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, transparent 0%, rgba(0,0,0,0.7) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
    display: flex;
    align-items: flex-end;
    padding: 1rem;
}

.establishment-card-archive:hover .card-overlay {
    opacity: 1;
}

.card-actions {
    display: flex;
    gap: 0.5rem;
}

.action-btn {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 1.2rem;
}

.action-btn:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: scale(1.1);
}

/* Badge de Destaque */
.featured-badge {
    position: absolute;
    top: 1rem;
    left: 1rem;
    background: linear-gradient(135deg, #FFD700, #FFA500);
    color: #333;
    padding: 0.5rem 0.75rem;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 0.25rem;
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.4);
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

/* Conteúdo do Card - Apenas para páginas de listagem */
.establishment-card-archive .card-content {
    padding: 1.5rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.establishment-card-archive .card-header {
    margin-bottom: 1rem;
}

.establishment-card-archive .establishment-title {
    margin: 0 0 0.75rem 0;
    font-size: 1.2rem;
    font-weight: 700;
    line-height: 1.3;
}

.establishment-card-archive .establishment-title a {
    color: var(--igrejinha-azul-montanha);
    text-decoration: none;
    transition: color 0.3s ease;
}

.establishment-card-archive .establishment-title a:hover {
    color: var(--igrejinha-turquoise);
}

/* Sistema de Avaliação */
.establishment-card-archive .establishment-rating {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
}

.stars {
    color: #fbbf24;
}

.rating-number {
    font-weight: 700;
    color: #d97706;
}

.rating-count {
    color: #666;
    font-size: 0.85rem;
}

.no-rating {
    color: #999;
    font-size: 0.9rem;
}

/* Meta Informações */
.establishment-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 1rem;
    font-size: 0.9rem;
    color: #666;
}

/* Excerpt */
.establishment-excerpt {
    color: #666;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    flex: 1;
}

/* Footer do Card */
.card-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: auto;
    padding-top: 1rem;
    border-top: 1px solid #f0f0f0;
}

/* Preços */
.establishment-price {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.price-label {
    font-size: 0.8rem;
    color: #888;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-weight: 500;
}

.price-value {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--igrejinha-azul-montanha);
}

/* Botão Ver Detalhes */
.btn-view-details {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    background: var(--gradient-por-do-sol);
    color: white;
    text-decoration: none;
    border-radius: 25px;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s var(--ease-organic);
    border: none;
    cursor: pointer;
}

.btn-view-details:hover {
    transform: translateX(4px);
    box-shadow: 0 4px 15px rgba(217, 152, 74, 0.4);
    color: white;
}

/* Paginação */
.pagination-wrapper {
    display: flex;
    justify-content: center;
    margin-top: 4rem;
}

.pagination-wrapper ul {
    display: flex;
    gap: 0.5rem;
    list-style: none;
    padding: 0;
    margin: 0;
}

.pagination-wrapper li {
    margin: 0;
}

.pagination-wrapper a,
.pagination-wrapper span {
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 40px;
    height: 40px;
    padding: 0 1rem;
    background: white;
    color: var(--igrejinha-azul-montanha);
    text-decoration: none;
    border-radius: 10px;
    font-weight: 600;
    transition: all 0.3s ease;
    border: 2px solid #e9ecef;
}

.pagination-wrapper .current span {
    background: var(--igrejinha-turquoise);
    color: white;
    border-color: var(--igrejinha-turquoise);
}

.pagination-wrapper a:hover {
    background: var(--igrejinha-turquoise);
    color: white;
    border-color: var(--igrejinha-turquoise);
    transform: translateY(-2px);
}

/* Sem Resultados */
.no-results {
    text-align: center;
    padding: 4rem 2rem;
}

.no-results-content {
    max-width: 500px;
    margin: 0 auto;
}

.no-results-icon {
    font-size: 4rem;
    margin-bottom: 1rem;
}

.no-results h3 {
    font-size: 1.5rem;
    color: var(--igrejinha-azul-montanha);
    margin-bottom: 1rem;
}

.no-results p {
    color: #666;
    margin-bottom: 2rem;
}

.btn-see-all {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    background: var(--gradient-por-do-sol);
    color: white;
    text-decoration: none;
    border-radius: 25px;
    font-weight: 600;
    transition: all 0.3s var(--ease-organic);
}

.btn-see-all:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(217, 152, 74, 0.4);
}

/* Visualização em Lista */
.establishments-grid.list-view {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.establishments-grid.list-view .establishment-card-archive {
    display: flex;
    flex-direction: row;
    max-width: none;
    height: auto;
}

.establishments-grid.list-view .card-image-container {
    width: 200px;
    height: 150px;
    flex-shrink: 0;
}

.establishments-grid.list-view .card-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.establishments-grid.list-view .establishment-excerpt {
    max-height: none;
    overflow: visible;
}

/* Estilos específicos para mobile */
@media (max-width: 768px) {
    .category-filters,
    .establishments-filters {
        margin-top: -4rem;
        padding: 0 0 2rem 0;
    }
    
    .category-hero-content {
        padding: 0 1rem;
    }
    
    .page-hero {
        min-height: 60vh;
        padding-bottom: 6rem;
    }
}

/* Responsividade dos Cards */
@media (max-width: 768px) {
    .filters-grid {
        grid-template-columns: 1fr;
    }
    
    .listing-header {
        flex-direction: column;
        gap: 1rem;
        align-items: flex-start;
    }
    
    .establishments-grid {
        grid-template-columns: 1fr;
    }
    
    .establishments-grid.list-view .establishment-card-archive {
        flex-direction: column;
    }
    
    .establishments-grid.list-view .card-image-container {
        width: 100%;
        height: 200px;
    }
    
    .card-footer {
        flex-direction: column;
        gap: 1rem;
        align-items: stretch;
    }
    
    .btn-view-details {
        width: 100%;
        justify-content: center;
    }
}