/**
 * SkoobTur - Elementor Widgets Card Style
 * Padronização dos widgets de Hotéis, Restaurantes, Experiências/Eventos e Tours Carousel Card
 * para ficarem com o mesmo estilo dos cards dos filtros/shortcodes
 * 
 * Aplica-se a: Grid e Carrossel
 */

/* ========================================
   CSS Variables (Herdadas do filters.css)
======================================== */
:root {
    --skoobtur-primary: #BA5E0F;
    --skoobtur-primary-dark: #693314;
    --skoobtur-primary-light: #e8f5ef;
    --skoobtur-secondary: #1a1a1a;
    --skoobtur-text: #374151;
    --skoobtur-text-light: #6b7280;
    --skoobtur-border: #e5e7eb;
    --skoobtur-bg: #f9fafb;
    --skoobtur-white: #ffffff;
    --skoobtur-success: #10b981;
    --skoobtur-warning: #f59e0b;
    --skoobtur-danger: #c8415b;
    --skoobtur-radius: 12px;
    --skoobtur-radius-sm: 8px;
    --skoobtur-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    --skoobtur-shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    --skoobtur-shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    --skoobtur-transition: all 0.2s ease;
}

/* ========================================
   GRID - Cards dos Widgets
======================================== */

/* Container principal dos grids */
.skoobtur-experiences-grid,
.elementor-widget-skoobtur_hotels .skoobtur-filters-grid,
.elementor-widget-skoobtur_restaurant .skoobtur-filters-grid {
    display: grid;
    gap: 1.5rem;
    grid-template-columns: repeat(var(--columns, 3), 1fr);
}

/* Cards individuais - Estrutura base */
.skoobtur-experience-card,
.elementor-widget-skoobtur_hotels .skoobtur-filter-card,
.elementor-widget-skoobtur_restaurant .skoobtur-filter-card {
    background: var(--skoobtur-white);
    border: 1px solid var(--skoobtur-border);
    border-radius: var(--skoobtur-radius);
    overflow: hidden;
    transition: var(--skoobtur-transition);
    display: flex;
    flex-direction: column;
    height: 100%;
}

/* Hover effect nos cards */
.skoobtur-experience-card:hover,
.elementor-widget-skoobtur_hotels .skoobtur-filter-card:hover,
.elementor-widget-skoobtur_restaurant .skoobtur-filter-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--skoobtur-shadow-lg);
    border-color: var(--skoobtur-primary);
}

/* ========================================
   IMAGEM DO CARD
======================================== */

/* Container da imagem */
.skoobtur-experience-card .experience-image,
.elementor-widget-skoobtur_hotels .filter-card-image,
.elementor-widget-skoobtur_restaurant .filter-card-image {
    position: relative;
    overflow: hidden;
    background: var(--skoobtur-bg);
}

.skoobtur-experience-card .experience-image a,
.elementor-widget-skoobtur_hotels .filter-card-image a,
.elementor-widget-skoobtur_restaurant .filter-card-image a {
    display: block;
}

/* Imagem com aspect ratio */
.skoobtur-experience-card .experience-image img,
.elementor-widget-skoobtur_hotels .filter-card-image img,
.elementor-widget-skoobtur_restaurant .filter-card-image img {
    width: 100%;
    aspect-ratio: 16/10;
    object-fit: cover;
    transition: transform 0.4s ease;
}

/* Zoom na imagem ao hover */
.skoobtur-experience-card:hover .experience-image img,
.elementor-widget-skoobtur_hotels .skoobtur-filter-card:hover .filter-card-image img,
.elementor-widget-skoobtur_restaurant .skoobtur-filter-card:hover .filter-card-image img {
    transform: scale(1.05);
}

/* Placeholder para cards sem imagem */
.skoobtur-experience-card .experience-image-placeholder,
.elementor-widget-skoobtur_hotels .card-placeholder,
.elementor-widget-skoobtur_restaurant .card-placeholder {
    width: 100%;
    aspect-ratio: 16/10;
    background: linear-gradient(135deg, var(--skoobtur-primary) 0%, var(--skoobtur-primary-dark) 100%);
}

/* ========================================
   BADGES E TAGS
======================================== */

/* Container dos badges */
.skoobtur-experience-card .card-badges,
.elementor-widget-skoobtur_hotels .card-badges,
.elementor-widget-skoobtur_restaurant .card-badges {
    position: absolute;
    top: 12px;
    right: 12px;
    display: flex;
    flex-direction: column;
    gap: 6px;
    z-index: 2;
}

/* Estilo base dos badges */
.skoobtur-experience-card .badge,
.elementor-widget-skoobtur_hotels .badge,
.elementor-widget-skoobtur_restaurant .badge {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 6px 10px;
    border-radius: 100px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

/* Badge de desconto */
.skoobtur-experience-card .badge-discount,
.elementor-widget-skoobtur_hotels .badge-discount,
.elementor-widget-skoobtur_restaurant .badge-discount {
    background: linear-gradient(135deg, #ef4444 0%, #dc2626 100%);
    color: var(--skoobtur-white);
}

/* Badge de destaque */
.skoobtur-experience-card .badge-featured,
.elementor-widget-skoobtur_hotels .badge-featured,
.elementor-widget-skoobtur_restaurant .badge-featured {
    background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
    color: var(--skoobtur-white);
}

/* ========================================
   CONTEÚDO DO CARD
======================================== */

/* Container principal do conteúdo */
.skoobtur-experience-card .experience-content,
.elementor-widget-skoobtur_hotels .filter-card-content,
.elementor-widget-skoobtur_restaurant .filter-card-content {
    padding: 1.25rem;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

/* Meta informações (categoria, cidade) no topo */
.skoobtur-experience-card .card-meta-top,
.elementor-widget-skoobtur_hotels .card-meta-top,
.elementor-widget-skoobtur_restaurant .card-meta-top {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
}

/* Categoria e Cidade */
.skoobtur-experience-card .card-category,
.skoobtur-experience-card .card-city,
.elementor-widget-skoobtur_hotels .card-category,
.elementor-widget-skoobtur_hotels .card-city,
.elementor-widget-skoobtur_restaurant .card-category,
.elementor-widget-skoobtur_restaurant .card-city {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    font-size: 0.8125rem;
    color: var(--skoobtur-text-light);
    font-weight: 500;
}

.skoobtur-experience-card .card-category svg,
.skoobtur-experience-card .card-city svg,
.elementor-widget-skoobtur_hotels .card-category svg,
.elementor-widget-skoobtur_hotels .card-city svg,
.elementor-widget-skoobtur_restaurant .card-category svg,
.elementor-widget-skoobtur_restaurant .card-city svg {
    flex-shrink: 0;
    opacity: 0.7;
    width: 14px;
    height: 14px;
}

/* ========================================
   TÍTULO DO CARD
======================================== */

.skoobtur-experience-card .experience-title,
.skoobtur-experience-card .card-title,
.elementor-widget-skoobtur_hotels .card-title,
.elementor-widget-skoobtur_restaurant .card-title {
    margin: 0 0 0.5rem;
    font-size: 1.125rem;
    font-weight: 600;
    line-height: 1.4;
    color: var(--skoobtur-secondary);
}

.skoobtur-experience-card .experience-title a,
.skoobtur-experience-card .card-title a,
.elementor-widget-skoobtur_hotels .card-title a,
.elementor-widget-skoobtur_restaurant .card-title a {
    color: inherit;
    text-decoration: none;
    transition: color 0.2s ease;
}

.skoobtur-experience-card .experience-title a:hover,
.skoobtur-experience-card .card-title a:hover,
.elementor-widget-skoobtur_hotels .card-title a:hover,
.elementor-widget-skoobtur_restaurant .card-title a:hover {
    color: var(--skoobtur-primary);
}

/* ========================================
   INFORMAÇÕES ADICIONAIS
======================================== */

/* Duração */
.skoobtur-experience-card .card-duration,
.elementor-widget-skoobtur_hotels .card-duration,
.elementor-widget-skoobtur_restaurant .card-duration {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.875rem;
    color: var(--skoobtur-text-light);
    margin-bottom: 0.75rem;
}

/* Avaliação por estrelas */
.skoobtur-experience-card .card-stars,
.elementor-widget-skoobtur_hotels .card-stars,
.elementor-widget-skoobtur_restaurant .card-stars {
    display: flex;
    gap: 2px;
    margin-bottom: 0.75rem;
    color: var(--skoobtur-warning);
}

.skoobtur-experience-card .card-stars svg,
.elementor-widget-skoobtur_hotels .card-stars svg,
.elementor-widget-skoobtur_restaurant .card-stars svg {
    width: 16px;
    height: 16px;
}

/* Excerpt/Descrição */
.skoobtur-experience-card .experience-excerpt,
.skoobtur-experience-card .card-excerpt,
.elementor-widget-skoobtur_hotels .card-excerpt,
.elementor-widget-skoobtur_restaurant .card-excerpt {
    font-size: 0.875rem;
    color: var(--skoobtur-text-light);
    line-height: 1.6;
    margin-bottom: 1rem;
    flex-grow: 1;
}

/* ========================================
   FOOTER DO CARD (Preço e Botão)
======================================== */

.skoobtur-experience-card .card-footer,
.skoobtur-experience-card .experience-footer,
.elementor-widget-skoobtur_hotels .card-footer,
.elementor-widget-skoobtur_restaurant .card-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding-top: 1rem;
    border-top: 1px solid var(--skoobtur-border);
    margin-top: auto;
}

/* Preço */
.skoobtur-experience-card .card-price,
.skoobtur-experience-card .experience-price,
.elementor-widget-skoobtur_hotels .card-price,
.elementor-widget-skoobtur_restaurant .card-price {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.skoobtur-experience-card .price-old,
.elementor-widget-skoobtur_hotels .price-old,
.elementor-widget-skoobtur_restaurant .price-old {
    font-size: 0.8125rem;
    color: var(--skoobtur-text-light);
    text-decoration: line-through;
}

.skoobtur-experience-card .price-current,
.skoobtur-experience-card .experience-price-value,
.elementor-widget-skoobtur_hotels .price-current,
.elementor-widget-skoobtur_restaurant .price-current {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--skoobtur-primary);
}

/* Botão de ação */
.skoobtur-experience-card .card-button,
.skoobtur-experience-card .experience-button,
.elementor-widget-skoobtur_hotels .card-button,
.elementor-widget-skoobtur_restaurant .card-button {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 0.625rem 1rem;
    background: var(--skoobtur-primary);
    color: var(--skoobtur-white);
    font-size: 0.875rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: var(--skoobtur-radius-sm);
    transition: var(--skoobtur-transition);
    white-space: nowrap;
}

.skoobtur-experience-card .card-button:hover,
.skoobtur-experience-card .experience-button:hover,
.elementor-widget-skoobtur_hotels .card-button:hover,
.elementor-widget-skoobtur_restaurant .card-button:hover {
    background: var(--skoobtur-primary-dark);
    color: var(--skoobtur-white);
    transform: translateX(2px);
}

.skoobtur-experience-card .card-button svg,
.skoobtur-experience-card .experience-button svg,
.elementor-widget-skoobtur_hotels .card-button svg,
.elementor-widget-skoobtur_restaurant .card-button svg {
    transition: transform 0.2s ease;
    width: 14px;
    height: 14px;
}

.skoobtur-experience-card .card-button:hover svg,
.skoobtur-experience-card .experience-button:hover svg,
.elementor-widget-skoobtur_hotels .card-button:hover svg,
.elementor-widget-skoobtur_restaurant .card-button:hover svg {
    transform: translateX(4px);
}

/* ========================================
   CARROSSEL - Slides no Swiper
======================================== */

/* Garantir que slides no carrossel tenham altura consistente */
.swiper-slide .skoobtur-experience-card,
.swiper-slide .skoobtur-tour-card {
    height: 100%;
}

/* Estilização dos cards dentro do carrossel para hotéis e restaurantes */
.elementor-widget-skoobtur_hotels .swiper-slide .skoobtur-tour-card,
.elementor-widget-skoobtur_restaurant .swiper-slide .skoobtur-tour-card {
    background: var(--skoobtur-white);
    border: 1px solid var(--skoobtur-border);
    border-radius: var(--skoobtur-radius);
    overflow: hidden;
    transition: var(--skoobtur-transition);
    display: flex;
    flex-direction: column;
    height: 100%;
}

.elementor-widget-skoobtur_hotels .swiper-slide .skoobtur-tour-card:hover,
.elementor-widget-skoobtur_restaurant .swiper-slide .skoobtur-tour-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--skoobtur-shadow-lg);
    border-color: var(--skoobtur-primary);
}

/* Imagem do carrossel */
.elementor-widget-skoobtur_hotels .swiper-slide .tour-image-wrapper,
.elementor-widget-skoobtur_restaurant .swiper-slide .tour-image-wrapper {
    position: relative;
    overflow: hidden;
    background: var(--skoobtur-bg);
}

.elementor-widget-skoobtur_hotels .swiper-slide .tour-image,
.elementor-widget-skoobtur_restaurant .swiper-slide .tour-image {
    width: 100%;
    aspect-ratio: 16/10;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.elementor-widget-skoobtur_hotels .swiper-slide .skoobtur-tour-card:hover .tour-image,
.elementor-widget-skoobtur_restaurant .swiper-slide .skoobtur-tour-card:hover .tour-image {
    transform: scale(1.05);
}

.elementor-widget-skoobtur_hotels .swiper-slide .tour-image-placeholder,
.elementor-widget-skoobtur_restaurant .swiper-slide .tour-image-placeholder {
    width: 100%;
    aspect-ratio: 16/10;
    background: linear-gradient(135deg, var(--skoobtur-primary) 0%, var(--skoobtur-primary-dark) 100%);
}

/* Conteúdo do card no carrossel */
.elementor-widget-skoobtur_hotels .swiper-slide .card-content,
.elementor-widget-skoobtur_restaurant .swiper-slide .card-content {
    padding: 1.25rem;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

/* Título no carrossel */
.elementor-widget-skoobtur_hotels .swiper-slide .tour-title,
.elementor-widget-skoobtur_restaurant .swiper-slide .tour-title {
    margin: 0 0 0.5rem;
    font-size: 1.125rem;
    font-weight: 600;
    line-height: 1.4;
    color: var(--skoobtur-secondary);
}

.elementor-widget-skoobtur_hotels .swiper-slide .tour-title a,
.elementor-widget-skoobtur_restaurant .swiper-slide .tour-title a {
    color: inherit;
    text-decoration: none;
    transition: color 0.2s ease;
}

.elementor-widget-skoobtur_hotels .swiper-slide .tour-title a:hover,
.elementor-widget-skoobtur_restaurant .swiper-slide .tour-title a:hover {
    color: var(--skoobtur-primary);
}

/* Cidade no carrossel */
.elementor-widget-skoobtur_hotels .swiper-slide .tour-city,
.elementor-widget-skoobtur_restaurant .swiper-slide .tour-city {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    font-size: 0.8125rem;
    color: var(--skoobtur-text-light);
    font-weight: 500;
    margin-bottom: 1rem;
}

.elementor-widget-skoobtur_hotels .swiper-slide .tour-city svg,
.elementor-widget-skoobtur_restaurant .swiper-slide .tour-city svg {
    flex-shrink: 0;
    opacity: 0.7;
}

/* Botão no carrossel */
.elementor-widget-skoobtur_hotels .swiper-slide .tour-button,
.elementor-widget-skoobtur_restaurant .swiper-slide .tour-button {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 0.625rem 1rem;
    background: var(--skoobtur-primary);
    color: var(--skoobtur-white);
    font-size: 0.875rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: var(--skoobtur-radius-sm);
    transition: var(--skoobtur-transition);
    white-space: nowrap;
    margin-top: auto;
}

.elementor-widget-skoobtur_hotels .swiper-slide .tour-button:hover,
.elementor-widget-skoobtur_restaurant .swiper-slide .tour-button:hover {
    background: var(--skoobtur-primary-dark);
    color: var(--skoobtur-white);
    transform: translateX(2px);
}

/* ========================================
   CONTROLES DO CARROSSEL (Arrows e Pagination)
======================================== */

/* Setas de navegação */
.elementor-widget-skoobtur_hotels .swiper-button-next,
.elementor-widget-skoobtur_hotels .swiper-button-prev,
.elementor-widget-skoobtur_restaurant .swiper-button-next,
.elementor-widget-skoobtur_restaurant .swiper-button-prev,
.elementor-widget-skoobtur_experiences .swiper-button-next,
.elementor-widget-skoobtur_experiences .swiper-button-prev {
    color: var(--skoobtur-white);
    background: var(--skoobtur-primary);
    width: 44px;
    height: 44px;
    border-radius: 50%;
    transition: var(--skoobtur-transition);
}

.elementor-widget-skoobtur_hotels .swiper-button-next:hover,
.elementor-widget-skoobtur_hotels .swiper-button-prev:hover,
.elementor-widget-skoobtur_restaurant .swiper-button-next:hover,
.elementor-widget-skoobtur_restaurant .swiper-button-prev:hover,
.elementor-widget-skoobtur_experiences .swiper-button-next:hover,
.elementor-widget-skoobtur_experiences .swiper-button-prev:hover {
    background: var(--skoobtur-primary-dark);
}

.elementor-widget-skoobtur_hotels .swiper-button-next:after,
.elementor-widget-skoobtur_hotels .swiper-button-prev:after,
.elementor-widget-skoobtur_restaurant .swiper-button-next:after,
.elementor-widget-skoobtur_restaurant .swiper-button-prev:after,
.elementor-widget-skoobtur_experiences .swiper-button-next:after,
.elementor-widget-skoobtur_experiences .swiper-button-prev:after {
    font-size: 18px;
}

/* Paginação */
.elementor-widget-skoobtur_hotels .swiper-pagination-bullet,
.elementor-widget-skoobtur_restaurant .swiper-pagination-bullet,
.elementor-widget-skoobtur_experiences .swiper-pagination-bullet {
    background: var(--skoobtur-border);
    opacity: 1;
    transition: var(--skoobtur-transition);
}

.elementor-widget-skoobtur_hotels .swiper-pagination-bullet-active,
.elementor-widget-skoobtur_restaurant .swiper-pagination-bullet-active,
.elementor-widget-skoobtur_experiences .swiper-pagination-bullet-active {
    background: var(--skoobtur-primary);
}

/* ========================================
   ANIMAÇÕES
======================================== */

@keyframes fadeInCard {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Animação de entrada para cards */
.skoobtur-experience-card,
.elementor-widget-skoobtur_hotels .skoobtur-filter-card,
.elementor-widget-skoobtur_restaurant .skoobtur-filter-card {
    animation: fadeInCard 0.4s ease forwards;
}

/* Delay escalonado para múltiplos cards */
.skoobtur-experience-card:nth-child(1) { animation-delay: 0.05s; }
.skoobtur-experience-card:nth-child(2) { animation-delay: 0.1s; }
.skoobtur-experience-card:nth-child(3) { animation-delay: 0.15s; }
.skoobtur-experience-card:nth-child(4) { animation-delay: 0.2s; }
.skoobtur-experience-card:nth-child(5) { animation-delay: 0.25s; }
.skoobtur-experience-card:nth-child(6) { animation-delay: 0.3s; }

/* ========================================
   RESPONSIVIDADE
======================================== */

/* Tablet */
@media (max-width: 1024px) {
    .skoobtur-experiences-grid {
        grid-template-columns: 1fr;
    }
    
    .skoobtur-experience-card .experience-title,
    .skoobtur-experience-card .card-title,
    .elementor-widget-skoobtur_hotels .card-title,
    .elementor-widget-skoobtur_restaurant .card-title {
        font-size: 1rem;
    }
}

/* Mobile */
@media (max-width: 768px) {
    .skoobtur-experiences-grid,
    .elementor-widget-skoobtur_hotels .skoobtur-filters-grid,
    .elementor-widget-skoobtur_restaurant .skoobtur-filters-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .skoobtur-experience-card .experience-content,
    .elementor-widget-skoobtur_hotels .filter-card-content,
    .elementor-widget-skoobtur_restaurant .filter-card-content {
        padding: 1rem;
    }
    
    .skoobtur-experience-card .card-footer,
    .skoobtur-experience-card .experience-footer,
    .elementor-widget-skoobtur_hotels .card-footer,
    .elementor-widget-skoobtur_restaurant .card-footer {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .skoobtur-experience-card .card-button,
    .skoobtur-experience-card .experience-button,
    .elementor-widget-skoobtur_hotels .card-button,
    .elementor-widget-skoobtur_restaurant .card-button {
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .skoobtur-experiences-grid,
    .elementor-widget-skoobtur_hotels .skoobtur-filters-grid,
    .elementor-widget-skoobtur_restaurant .skoobtur-filters-grid {
        grid-template-columns: 1fr;
    }
}

/* ========================================
   TOURS CAROUSEL CARD WIDGET
   Widget específico para Tours em formato Card
======================================== */

/* Card base */
.elementor-widget-skoobtur_tours_carousel_card .tour-card {
    background: var(--skoobtur-white);
    border: 1px solid var(--skoobtur-border);
    border-radius: var(--skoobtur-radius);
    overflow: hidden;
    transition: var(--skoobtur-transition);
    display: flex;
    flex-direction: column;
    height: 100%;
}

.elementor-widget-skoobtur_tours_carousel_card .tour-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--skoobtur-shadow-lg);
    border-color: var(--skoobtur-primary);
}

/* Imagem do card */
.elementor-widget-skoobtur_tours_carousel_card .tour-image {
    position: relative;
    overflow: hidden;
    background: var(--skoobtur-bg);
    line-height: 0; /* Remove espaço extra abaixo da imagem */
    font-size: 0; /* Remove espaço de whitespace */
    aspect-ratio: 16/10; /* Força altura consistente baseada na largura */
}

.elementor-widget-skoobtur_tours_carousel_card .tour-image a {
    display: block;
    line-height: 0;
    width: 100%;
    height: 100%;
}

.elementor-widget-skoobtur_tours_carousel_card .tour-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
    display: block; /* Remove espaço inline */
    vertical-align: top; /* Remove espaço de baseline */
}

.elementor-widget-skoobtur_tours_carousel_card .tour-card:hover .tour-image img {
    transform: scale(1.05);
}

.elementor-widget-skoobtur_tours_carousel_card .tour-image-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--skoobtur-primary) 0%, var(--skoobtur-primary-dark) 100%);
}

/* Badges */
.elementor-widget-skoobtur_tours_carousel_card .card-badges {
    position: absolute;
    top: 12px;
    right: 12px;
    display: flex;
    flex-direction: column;
    gap: 6px;
    z-index: 2;
    font-size: 0.75rem; /* Restaura font-size para badges */
    line-height: 1; /* Restaura line-height para badges */
}

.elementor-widget-skoobtur_tours_carousel_card .badge {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 6px 10px;
    border-radius: 100px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.elementor-widget-skoobtur_tours_carousel_card .badge-discount {
    background: linear-gradient(135deg, #ef4444 0%, #dc2626 100%);
    color: var(--skoobtur-white);
}

.elementor-widget-skoobtur_tours_carousel_card .badge-featured {
    background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
    color: var(--skoobtur-white);
}

/* Conteúdo do card */
.elementor-widget-skoobtur_tours_carousel_card .card-content {
    padding: 1.25rem;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

/* Meta top (categoria e cidade) */
.elementor-widget-skoobtur_tours_carousel_card .card-meta-top {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
}

.elementor-widget-skoobtur_tours_carousel_card .card-category,
.elementor-widget-skoobtur_tours_carousel_card .card-city {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    font-size: 0.8125rem;
    color: var(--skoobtur-text-light);
    font-weight: 500;
}

.elementor-widget-skoobtur_tours_carousel_card .card-category svg,
.elementor-widget-skoobtur_tours_carousel_card .card-city svg {
    flex-shrink: 0;
    opacity: 0.7;
    width: 14px;
    height: 14px;
}

/* Título */
.elementor-widget-skoobtur_tours_carousel_card .card-title {
    margin: 0 0 0.5rem;
    font-size: 1.125rem;
    font-weight: 600;
    line-height: 1.4;
    color: var(--skoobtur-secondary);
}

.elementor-widget-skoobtur_tours_carousel_card .card-title a {
    color: inherit;
    text-decoration: none;
    transition: color 0.2s ease;
}

.elementor-widget-skoobtur_tours_carousel_card .card-title a:hover {
    color: var(--skoobtur-primary);
}

/* Meta info (duração e fornecedor) */
.elementor-widget-skoobtur_tours_carousel_card .card-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 1rem;
}

.elementor-widget-skoobtur_tours_carousel_card .meta-item {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.8125rem;
    color: var(--skoobtur-text-light);
    font-weight: 500;
}

.elementor-widget-skoobtur_tours_carousel_card .meta-item svg {
    flex-shrink: 0;
    width: 16px;
    height: 16px;
}

/* Footer do card */
.elementor-widget-skoobtur_tours_carousel_card .card-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding-top: 1rem;
    border-top: 1px solid var(--skoobtur-border);
    margin-top: auto;
}

/* Preço */
.elementor-widget-skoobtur_tours_carousel_card .card-price {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.elementor-widget-skoobtur_tours_carousel_card .price-label {
    font-size: 0.75rem;
    color: var(--skoobtur-text-light);
    font-weight: 500;
}

.elementor-widget-skoobtur_tours_carousel_card .price-value {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--skoobtur-primary);
}

.elementor-widget-skoobtur_tours_carousel_card .price-old {
    font-size: 0.8125rem;
    color: var(--skoobtur-text-light);
    text-decoration: line-through;
}

/* Botão */
.elementor-widget-skoobtur_tours_carousel_card .card-button {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 0.625rem 1rem;
    background: var(--skoobtur-primary);
    color: var(--skoobtur-white);
    font-size: 0.875rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: var(--skoobtur-radius-sm);
    transition: var(--skoobtur-transition);
    white-space: nowrap;
}

.elementor-widget-skoobtur_tours_carousel_card .card-button:hover {
    background: var(--skoobtur-primary-dark);
    color: var(--skoobtur-white);
    transform: translateX(2px);
}

.elementor-widget-skoobtur_tours_carousel_card .card-button svg {
    transition: transform 0.2s ease;
}

.elementor-widget-skoobtur_tours_carousel_card .card-button:hover svg {
    transform: translateX(4px);
}

/* Controles do carrossel */
.elementor-widget-skoobtur_tours_carousel_card .swiper-button-next,
.elementor-widget-skoobtur_tours_carousel_card .swiper-button-prev {
    color: var(--skoobtur-white);
    background: var(--skoobtur-primary);
    width: 44px;
    height: 44px;
    border-radius: 50%;
    transition: var(--skoobtur-transition);
}

.elementor-widget-skoobtur_tours_carousel_card .swiper-button-next:hover,
.elementor-widget-skoobtur_tours_carousel_card .swiper-button-prev:hover {
    background: var(--skoobtur-primary-dark);
}

.elementor-widget-skoobtur_tours_carousel_card .swiper-button-next:after,
.elementor-widget-skoobtur_tours_carousel_card .swiper-button-prev:after {
    font-size: 18px;
}

.elementor-widget-skoobtur_tours_carousel_card .swiper-pagination-bullet {
    background: var(--skoobtur-border);
    opacity: 1;
    transition: var(--skoobtur-transition);
}

.elementor-widget-skoobtur_tours_carousel_card .swiper-pagination-bullet-active {
    background: var(--skoobtur-primary);
}

/* Responsivo para Tours Carousel Card */
@media (max-width: 768px) {
    .elementor-widget-skoobtur_tours_carousel_card .card-content {
        padding: 1rem;
    }
    
    .elementor-widget-skoobtur_tours_carousel_card .card-footer {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .elementor-widget-skoobtur_tours_carousel_card .card-button {
        width: 100%;
        justify-content: center;
    }
    
    .elementor-widget-skoobtur_tours_carousel_card .card-title {
        font-size: 1rem;
    }
}

/* ========================================
   COMPATIBILIDADE COM TEMA ESCURO (Opcional)
======================================== */
@media (prefers-color-scheme: dark) {
    [data-theme="auto"] .skoobtur-experience-card,
    [data-theme="auto"] .elementor-widget-skoobtur_hotels .skoobtur-filter-card,
    [data-theme="auto"] .elementor-widget-skoobtur_restaurant .skoobtur-filter-card,
    [data-theme="auto"] .elementor-widget-skoobtur_tours_carousel_card .tour-card {
        background: #111827;
        border-color: #374151;
    }
    
    [data-theme="auto"] .skoobtur-experience-card .experience-title,
    [data-theme="auto"] .skoobtur-experience-card .card-title,
    [data-theme="auto"] .elementor-widget-skoobtur_hotels .card-title,
    [data-theme="auto"] .elementor-widget-skoobtur_restaurant .card-title,
    [data-theme="auto"] .elementor-widget-skoobtur_tours_carousel_card .card-title {
        color: #f3f4f6;
    }
}