/**
 * Barra de Categorias "Stories" - Fastique v3.0.9 - SCOPED
 * CSS completamente escopado: Todos os seletores prefixados com .cat-stories
 * CORREÇÃO PRINCIPAL: Evita conflitos com WooCommerce e outros componentes Swiper do tema Porto
 */

/* Reset e configurações básicas */
* {
    box-sizing: border-box;
}

/* Variáveis CSS baseadas no sistema Porto - Corrigidas */
:root {
    --color-primary: #667eea;
    --color-primary-light: #8fa4f3;
    --color-primary-dark: #4c63d2;
    --porto-heading-color: #333;
    --spacing-base: 8px;
    --border-radius-circle: 50%;
    --transition-fast: 200ms cubic-bezier(0.4, 0, 0.2, 1);
    --transition-medium: 400ms cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: 600ms cubic-bezier(0.4, 0, 0.2, 1);
    --shadow-subtle: 0 2px 4px rgba(0, 0, 0, 0.08);
    --shadow-hover: 0 8px 16px rgba(0, 0, 0, 0.12);
    --shadow-active: 0 4px 8px rgba(102, 126, 234, 0.25);
    --focus-outline: 2px solid var(--color-primary);
    --focus-offset: 4px;
    --border-default-opacity: 0.1;
    --gradient-primary: linear-gradient(135deg, var(--color-primary), var(--color-primary-light));
    
    /* Tamanhos das bolhas */
    --bubble-mobile: 90px;
    --bubble-desktop: 110px;
    --bubble-size-mobile: 90px;
    --bubble-size-desktop: 110px;
    --circle-border-width: 3px;    
    --image-size-mobile: calc(var(--bubble-size-mobile) - var(--circle-border-width) * 2 - 4px);
    --image-size-desktop: calc(var(--bubble-size-desktop) - var(--circle-border-width) * 2 - 4px);
    --cat-nav-width: 36px;
    --cat-stories-padding: 30px;
}

/* Dark mode support */
@media (prefers-color-scheme: dark) {
    :root {
        --porto-heading-color: #F5F5F5;
        --shadow-subtle: 0 2px 4px rgba(255, 255, 255, 0.08);
        --shadow-hover: 0 8px 16px rgba(255, 255, 255, 0.12);
        --border-default-opacity: 0.15;
    }
}

/* Container principal - ESCOPADO */
.cat-stories {
    width: 100%;
    max-width: none !important;
    position: relative;
    z-index: 90;
    background: transparent;
    padding: calc(var(--spacing-base) * 3) 0;
    overflow: visible !important;
    isolation: isolate;
    margin: 0;
    box-sizing: border-box;
    min-height: calc(var(--bubble-size-mobile) + 80px);
}

/* Desktop: altura ajustada */
@media (min-width: 768px) {
    .cat-stories {
        min-height: calc(var(--bubble-size-desktop) + 90px);
    }
}

/* MOBILE: Container específico para scroll nativo - ESCOPADO */
.cat-stories.cat-stories-mobile {
    overflow-x: auto !important;
    overflow-y: hidden !important;
    -webkit-overflow-scrolling: touch !important;
    scroll-behavior: smooth !important;
    scrollbar-width: none !important;
    -ms-overflow-style: none !important;
}

.cat-stories.cat-stories-mobile::-webkit-scrollbar {
    display: none !important;
}

/* MOBILE: Wrapper específico para scroll nativo - ESCOPADO */
.cat-stories .cat-stories-mobile-wrapper {
    display: flex !important;
    flex-direction: row !important;
    align-items: flex-start !important;
    justify-content: flex-start !important;
    gap: var(--spacing-base) !important;
    width: auto !important;
    min-width: max-content !important;
    overflow: visible !important;
    flex-wrap: nowrap !important;
    min-height: calc(var(--bubble-size-mobile) + 60px);
    position: relative;
    padding: 0 calc(var(--spacing-base) * 2) !important;
}

/* DESKTOP: Wrapper Swiper padrão - ESCOPADO */
.cat-stories .swiper-wrapper {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    justify-content: flex-start;
    overflow: visible !important;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    -ms-overflow-style: none;
    min-height: calc(var(--bubble-size-mobile) + 60px);
    position: relative;
    flex-wrap: nowrap;
}

.cat-stories .swiper-wrapper::-webkit-scrollbar {
    display: none;
}

/* Desktop: configurações ajustadas */
@media (min-width: 768px) {
    .cat-stories .swiper-wrapper {
        min-height: calc(var(--bubble-size-desktop) + 70px);
    }
}

/* Item de categoria - Base - ESCOPADO */
.cat-stories .cat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    position: relative;
    cursor: pointer;
    text-decoration: none;
    color: inherit;
    flex-shrink: 0 !important;
    transition: transform var(--transition-fast);
    width: var(--bubble-size-mobile);
    min-width: var(--bubble-size-mobile);
    max-width: var(--bubble-size-mobile);
    padding: 0;
    border-radius: calc(var(--spacing-base) * 1);
    outline: none;
    height: calc(var(--bubble-size-mobile) + 50px);
    margin: 0;
}

/* Desktop: dimensões ajustadas */
@media (min-width: 768px) {
    .cat-stories .cat-item {
        width: var(--bubble-size-desktop);
        min-width: var(--bubble-size-desktop);
        max-width: var(--bubble-size-desktop);
        height: calc(var(--bubble-size-desktop) + 60px);
    }
}

/* MOBILE: Item específico - sem classes Swiper - ESCOPADO */
.cat-stories.cat-stories-mobile .cat-item {
    flex: 0 0 auto !important;
    scroll-snap-align: none !important;
    transform: none !important;
}

/* DESKTOP: Swiper slide - ESCOPADO */
.cat-stories .swiper-slide {
    width: var(--bubble-mobile);
    flex: 0 0 auto;
    text-align: center;
}

@media (min-width: 768px) {
    .cat-stories .swiper-slide {
        width: var(--bubble-desktop);
    }
}

/* Container da imagem - ESCOPADO */
.cat-stories .cat-item-image {
    position: relative;
    width: var(--bubble-size-mobile);
    height: var(--bubble-size-mobile);
    border-radius: var(--border-radius-circle);
    overflow: hidden;
    flex-shrink: 0;
    background: var(--gradient-primary);
    padding: var(--circle-border-width);
    transition: all var(--transition-medium);
    box-shadow: var(--shadow-subtle);
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Desktop: tamanho ajustado */
@media (min-width: 768px) {
    .cat-stories .cat-item-image {
        width: var(--bubble-size-desktop);
        height: var(--bubble-size-desktop);
    }
}

/* Círculo interno - contém a imagem - ESCOPADO */
.cat-stories .cat-item-image::before {
    content: '';
    position: absolute;
    top: var(--circle-border-width);
    left: var(--circle-border-width);
    right: var(--circle-border-width);
    bottom: var(--circle-border-width);
    border-radius: var(--border-radius-circle);
    background: #fff;
    z-index: 1;
}

/* Dark mode círculo interno */
@media (prefers-color-scheme: dark) {
    .cat-stories .cat-item-image::before {
        background: #2a2a2a;
    }
}

/* Imagem - ESCOPADO */
.cat-stories .cat-item img {
    position: relative;
    z-index: 2;
    width: var(--image-size-mobile);
    height: var(--image-size-mobile);
    object-fit: cover;
    object-position: center;
    border-radius: var(--border-radius-circle);
    transition: transform var(--transition-medium);
    display: block;
    transform: none;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

/* Desktop: tamanho da imagem ajustado */
@media (min-width: 768px) {
    .cat-stories .cat-item img {
        width: var(--image-size-desktop);
        height: var(--image-size-desktop);
    }
}

/* Container do texto - ESCOPADO */
.cat-stories .cat-item-text {
    position: relative;
    width: 100%;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    margin-top: calc(var(--spacing-base) * 0.5);
}

/* Desktop: altura ajustada */
@media (min-width: 768px) {
    .cat-stories .cat-item-text {
        height: 60px;
        margin-top: calc(var(--spacing-base) * 0.75);
    }
}

/* Texto - ESCOPADO */
.cat-stories .cat-item span {
    font-family: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-weight: 600;
    color: var(--porto-heading-color);
    line-height: 1.3;
    text-align: center;
    transition: all var(--transition-medium) ease-out;
    font-size: 11px;
    max-width: calc(var(--bubble-size-mobile) + 10px);
    word-wrap: break-word;
    hyphens: auto;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    opacity: 1;
    visibility: visible;
}

/* Desktop: texto maior */
@media (min-width: 768px) {
    .cat-stories .cat-item span {
        font-size: 13px;
        max-width: calc(var(--bubble-size-desktop) + 20px);
        -webkit-line-clamp: 2;
    }
}

/* Estados visuais melhorados - ESCOPADOS */

/* MOBILE: Sem hover effects para evitar problemas de touch */
@media (max-width: 767px) {
    .cat-stories .cat-item {
        transition: none !important;
    }
    
    .cat-stories .cat-item-image {
        transition: none !important;
    }
    
    .cat-stories .cat-item img {
        transition: none !important;
    }
    
    .cat-stories .cat-item span {
        transition: none !important;
    }
}

/* DESKTOP: Hover effects apenas para desktop - ESCOPADOS */
@media (min-width: 768px) and (hover: hover) and (pointer: fine) {
    .cat-stories .cat-item:hover {
        transform: translateY(-4px);
    }
    
    .cat-stories .cat-item:hover .cat-item-image {
        background: linear-gradient(135deg, var(--color-primary-light), var(--color-primary));
        box-shadow: var(--shadow-hover);
        transform: scale(1.05);
    }
    
    .cat-stories .cat-item:hover img {
        transform: scale(1.02);
    }
    
    .cat-stories .cat-item:hover span {
        color: var(--color-primary);
        transform: translateY(-2px);
    }
}

/* Focus visível melhorado - ESCOPADO */
.cat-stories .cat-item:focus,
.cat-stories .cat-item:focus-visible {
    outline: var(--focus-outline);
    outline-offset: var(--focus-offset);
    border-radius: calc(var(--spacing-base) * 1);
}

.cat-stories .cat-item:focus .cat-item-image,
.cat-stories .cat-item:focus-visible .cat-item-image {
    background: var(--gradient-primary);
    box-shadow: var(--shadow-active);
}

/* Active state melhorado - ESCOPADO */
.cat-stories .cat-item:active .cat-item-image,
.cat-stories .cat-item.active .cat-item-image {
    background: linear-gradient(135deg, var(--color-primary-dark), var(--color-primary));
    animation: pulse-circle var(--transition-slow) ease-out;
    transform: scale(0.95);
}

@keyframes pulse-circle {
    0% {
        box-shadow: 0 0 0 0 rgba(102, 126, 234, 0.4);
    }
    50% {
        box-shadow: 0 0 0 12px rgba(102, 126, 234, 0.1);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(102, 126, 234, 0);
    }
}

/* Disabled state - ESCOPADO */
.cat-stories .cat-item:disabled,
.cat-stories .cat-item.disabled {
    opacity: 0.4;
    cursor: not-allowed;
    pointer-events: none;
}

/* Loading states melhorados - ESCOPADOS */
.cat-stories.loading {
    opacity: 0.8;
    pointer-events: none;
}

.cat-stories.loading .cat-item-image {
    animation: skeleton-pulse 1.8s ease-in-out infinite alternate;
}

@keyframes skeleton-pulse {
    0% { 
        opacity: 0.6;
        background: linear-gradient(135deg, #e0e0e0, #f0f0f0);
    }
    100% { 
        opacity: 1;
        background: linear-gradient(135deg, #f0f0f0, #e0e0e0);
    }
}

/* Shimmer melhorado para lazy loading - ESCOPADO */
.cat-stories .cat-item img.lazy-load {
    background: #f5f5f5;
    background-image: linear-gradient(90deg, #f5f5f5 25%, #e8e8e8 50%, #f5f5f5 75%);
    background-size: 200% 100%;
    animation: loading-shimmer 2s infinite;
}

@keyframes loading-shimmer {
    0% { background-position: -200% 0; }
    100% { background-position: 200% 0; }
}

/* Dark mode shimmer */
@media (prefers-color-scheme: dark) {
    .cat-stories .cat-item img.lazy-load {
        background: #2a2a2a;
        background-image: linear-gradient(90deg, #2a2a2a 25%, #3a3a3a 50%, #2a2a2a 75%);
    }
}



/* MOBILE: Botões de navegação específicos - ESCOPADOS */
.cat-stories .cat-nav-button {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 36px;
    height: 36px;
    background: rgba(255, 255, 255, 0.95);
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 100;
    color: var(--porto-heading-color);
    transition: all var(--transition-medium) ease-out;
    font-size: 14px;
    font-weight: bold;
    user-select: none;
    opacity: 0.8;
    box-shadow: var(--shadow-subtle);
    pointer-events: auto !important;
    touch-action: manipulation;
}

.cat-stories .cat-nav-button svg {
    width: 18px;
    height: 18px;
    fill: currentColor;
    pointer-events: none;
}

.cat-stories .cat-nav-prev {
    left: calc(var(--spacing-base) * 1);
}

.cat-stories .cat-nav-next {
    right: calc(var(--spacing-base) * 1);
}

/* Estados dos botões mobile melhorados - ESCOPADOS */
.cat-stories .cat-nav-button:hover {
    background: var(--color-primary);
    color: white;
    transform: translateY(-50%) scale(1.05);
    box-shadow: var(--shadow-hover);
    opacity: 1;
}

.cat-stories .cat-nav-button:active {
    transform: translateY(-50%) scale(0.95);
    box-shadow: var(--shadow-active);
}

.cat-stories .cat-nav-button.disabled {
    opacity: 0.3 !important;
    cursor: not-allowed !important;
    pointer-events: none !important;
    background: rgba(255, 255, 255, 0.5) !important;
}

/* DESKTOP: Botões de navegação Swiper - ESCOPADOS */
.cat-stories .swiper-button-prev,
.cat-stories .swiper-button-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 32px;
    height: 32px;
    background: rgba(255, 255, 255, 0.95);
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 100;
    color: var(--porto-heading-color);
    transition: all var(--transition-medium) ease-out;
    font-size: 14px;
    font-weight: bold;
    user-select: none;
    opacity: 0.8;
    box-shadow: var(--shadow-subtle);
    pointer-events: auto !important;
    touch-action: manipulation;
    margin-top: 0 !important;
    width: 32px !important;
    height: 32px !important;
}

.cat-stories .swiper-button-prev svg,
.cat-stories .swiper-button-next svg {
    width: 18px;
    height: 18px;
    fill: currentColor;
    pointer-events: none;
}

.cat-stories .swiper-button-prev {
    left: calc(var(--spacing-base) * 1);
}

.cat-stories .swiper-button-next {
    right: calc(var(--spacing-base) * 1);
}

/* Desktop: setas ligeiramente maiores */
@media (min-width: 768px) {
    .cat-stories .swiper-button-prev,
    .cat-stories .swiper-button-next {
        width: 36px; 
        height: 36px;
        font-size: 16px;
    }
    
    .cat-stories .swiper-button-prev svg,
    .cat-stories .swiper-button-next svg {
        width: 20px;
        height: 20px;
    }
    
    .cat-stories .swiper-button-prev {
        left: calc(var(--spacing-base) * 1.5);
    }
    
    .cat-stories .swiper-button-next {
        right: calc(var(--spacing-base) * 1.5);
    }
}

/* Estados hover e active melhorados - ESCOPADOS */
.cat-stories .swiper-button-prev:hover,
.cat-stories .swiper-button-next:hover {
    background: var(--color-primary);
    color: white;
    transform: translateY(-50%) scale(1.1);
    box-shadow: var(--shadow-hover);
    opacity: 1;
}

.cat-stories .swiper-button-prev:active,
.cat-stories .swiper-button-next:active {
    transform: translateY(-50%) scale(0.95);
    box-shadow: var(--shadow-active);
}

/* Estado disabled dos botões melhorado - ESCOPADO */
.cat-stories .swiper-button-disabled,
.cat-stories .swiper-button-prev.swiper-button-disabled,
.cat-stories .swiper-button-next.swiper-button-disabled {
    opacity: 0.3 !important;
    cursor: not-allowed !important;
    pointer-events: none !important;
    background: rgba(255, 255, 255, 0.5) !important;
    color: #999 !important;
}

/* Remover estilos padrão do Swiper que podem interferir - ESCOPADOS */
.cat-stories .swiper-button-prev::after,
.cat-stories .swiper-button-next::after {
    display: none !important;
    content: none !important;
}

/* Dark mode botões - ESCOPADOS */
@media (prefers-color-scheme: dark) {
    .cat-stories .swiper-button-prev,
    .cat-stories .swiper-button-next,
    .cat-stories .cat-nav-button {
        background: rgba(42, 42, 42, 0.9);
        border-color: rgba(255, 255, 255, 0.1);
        color: var(--color-primary-light);
    }
    
    .cat-stories .swiper-button-prev:hover,
    .cat-stories .swiper-button-next:hover,
    .cat-stories .cat-nav-button:hover {
        background: var(--color-primary-light);
        color: #1a1a1a;
    }
    
    .cat-stories .swiper-button-disabled,
    .cat-stories .cat-nav-button.disabled {
        background: rgba(42, 42, 42, 0.5) !important;
        color: #666 !important;
    }
}

/* Pagination dots - apenas desktop - ESCOPADOS */
@media (min-width: 768px) {
    .cat-stories .swiper-pagination {
        position: absolute;
        bottom: -20px;
        left: 50%;
        transform: translateX(-50%);
        display: flex;
        gap: 8px;
        z-index: 10;
    }

    .cat-stories .swiper-pagination-bullet {
        width: 8px;
        height: 8px;
        border-radius: 50%;
        background: rgba(102, 126, 234, 0.3);
        cursor: pointer;
        transition: all var(--transition-fast);
    }

    .cat-stories .swiper-pagination-bullet-active {
        background: var(--color-primary);
        transform: scale(1.2);
    }
}


/* MOBILE: Ocultar pagination - ESCOPADO */
@media (max-width: 767px) {
    .cat-stories .swiper-pagination {
        display: none !important;
    }
}

/* Responsividade melhorada - ESCOPADA */

/* MOBILE: Configurações específicas para scroll nativo - ESCOPADAS */
@media (max-width: 767px) {
    /* Força scroll nativo no mobile */
    .cat-stories.cat-stories-mobile {
        /* Permitir scroll vertical da página */
        touch-action: manipulation !important;
        scroll-snap-type: none !important;
    }
    
    .cat-stories.cat-stories-mobile .cat-item {
        pointer-events: auto !important;
        /* Permitir scroll vertical da página */
        touch-action: manipulation !important;
    }
    
    /* Wrapper deve permitir scroll vertical */
    .cat-stories .cat-stories-mobile-wrapper {
        touch-action: manipulation !important;
    }
    
    /* Remove qualquer interferência do Swiper no mobile */
    .cat-stories.cat-stories-mobile .swiper-wrapper,
    .cat-stories.cat-stories-mobile .swiper-slide {
        transform: none !important;
        transition: none !important;
    }
    
    /* Ocultar TODAS as setas no mobile */
    .cat-stories.cat-stories-mobile .swiper-button-prev,
    .cat-stories.cat-stories-mobile .swiper-button-next,
    .cat-stories.cat-stories-mobile .cat-nav-button,
    .cat-stories .cat-nav-button {
        display: none !important;
        visibility: hidden !important;
        opacity: 0 !important;
        pointer-events: none !important;
    }
}

/* DESKTOP: Ocultar botões mobile - ESCOPADO */
@media (min-width: 768px) {
    .cat-stories .cat-nav-button {
        display: none !important;
    }
}

/* Melhorias de acessibilidade - ESCOPADAS */
.cat-stories .cat-nav-button:focus,
.cat-stories .swiper-button-prev:focus,
.cat-stories .swiper-button-next:focus {
    outline: var(--focus-outline);
    outline-offset: 2px;
}

/* Melhorias para telas de alta densidade - ESCOPADAS */
@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
    .cat-stories .cat-nav-button,
    .cat-stories .swiper-button-prev,
    .cat-stories .swiper-button-next {
        border-width: 0.5px;
    }
}

/* Correções para Safari - ESCOPADAS */
@supports (-webkit-appearance: none) {
    .cat-stories .cat-nav-button,
    .cat-stories .swiper-button-prev,
    .cat-stories .swiper-button-next {
        -webkit-appearance: none;
        -webkit-tap-highlight-color: transparent;
    }
}

/* Estados adicionais para melhor UX - ESCOPADOS */
.cat-stories .cat-item:disabled,
.cat-stories .cat-item.disabled {
    opacity: 0.4;
    cursor: not-allowed;
    pointer-events: none;
}

/* Melhorias de performance - ESCOPADAS */
.cat-stories .cat-item,
.cat-stories .cat-item-image,
.cat-stories .swiper-button-prev,
.cat-stories .swiper-button-next,
.cat-stories .cat-nav-button {
    will-change: transform;
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
}

/* Otimizações para animações - ESCOPADAS */
@media (prefers-reduced-motion: reduce) {
    .cat-stories .cat-item,
    .cat-stories .cat-item-image,
    .cat-stories .cat-item img,
    .cat-stories .cat-item span,
    .cat-stories .swiper-button-prev,
    .cat-stories .swiper-button-next,
    .cat-stories .cat-nav-button {
        transition: none !important;
        animation: none !important;
    }
}

/* Correções específicas para tema Porto - ESCOPADAS */
.cat-stories.cat-stories {
    /* Garantir que não herde estilos do tema */
    font-family: inherit;
    line-height: inherit;
    color: inherit;
}

.cat-stories .cat-item {
    /* Resetar possíveis estilos herdados */
    background: transparent;
    border: none;
    box-shadow: none;
    text-transform: none;
    letter-spacing: normal;
}

/* Garantir isolamento de estilos - ESCOPADO */
.cat-stories {
    /* Criar contexto de empilhamento isolado */
    isolation: isolate;
    /* Resetar possíveis transformações herdadas */
    transform: none;
    /* Garantir posicionamento correto */
    position: relative;
}

/* Correções para compatibilidade com WooCommerce - ESCOPADAS */
.cat-stories .cat-item {
    /* Evitar conflitos com estilos de produto WooCommerce */
    list-style: none;
    margin: 0;
    padding: 0;
    border: none;
    background: transparent;
}

.cat-stories .cat-item::before,
.cat-stories .cat-item::after {
    /* Limpar pseudo-elementos que podem vazar */
    content: none;
    display: none;
}

/* Garantir que imagens não sejam afetadas por estilos globais - ESCOPADAS */
.cat-stories .cat-item img {
    /* Resetar estilos de imagem que podem vazar */
    max-width: none;
    height: auto;
    vertical-align: baseline;
    border: none;
    outline: none;
}

/* Melhorias finais de especificidade - ESCOPADAS */
.cat-stories.cat-stories .cat-item.cat-item {
    /* Alta especificidade para garantir aplicação */
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
}

.cat-stories.cat-stories .cat-item-image.cat-item-image {
    /* Alta especificidade para container de imagem */
    border-radius: var(--border-radius-circle) !important;
    overflow: hidden !important;
}

.cat-stories.cat-stories .cat-item.cat-item img {
    /* Alta especificidade para imagens */
    border-radius: var(--border-radius-circle) !important;
    object-fit: cover !important;
}

