/** * Layout Suspenso (Padrão) * Versão: 1.2.0 */.sawp-layout-suspenso .sawp-grid {    display: grid;    gap: var(--sawp-gap, 24px);    grid-template-columns: repeat(var(--sawp-columns, 3), 1fr);}.sawp-anuncio-item {    position: relative;    background: white;    border-radius: var(--sawp-borda-raio, 16px);    border: 1px solid var(--sawp-borda-cor, #E5E7EB);    overflow: hidden;    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);    height: 100%;    display: flex;    flex-direction: column;    box-shadow: var(--sawp-shadow-sm);}.sawp-com-sombra {    box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.05), 0 10px 10px -5px rgba(0, 0, 0, 0.02);}.sawp-anuncio-item:hover {    border-color: var(--sawp-primary);    box-shadow: 0 20px 40px -10px rgba(79, 70, 229, 0.15);    transform: translateY(-6px);}/* Efeitos hover específicos */.sawp-hover-elevar:hover {    transform: translateY(-8px);    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.15);}.sawp-hover-zoom .sawp-anuncio-imagem {    overflow: hidden;}.sawp-hover-zoom:hover .sawp-anuncio-imagem img {    transform: scale(1.1);}.sawp-hover-fade:hover {    opacity: 0.95;}.sawp-hover-shadow:hover {    box-shadow: 0 30px 60px -15px rgba(0, 0, 0, 0.2);}/* Imagem com overlay gradiente */.sawp-anuncio-imagem {    position: relative;    width: 100%;    padding-top: 60%; /* Mais quadrado */    overflow: hidden;    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);}.sawp-anuncio-imagem img {    position: absolute;    top: 0;    left: 0;    width: 100%;    height: 100%;    object-fit: cover;    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);}/* Conteúdo do card */.sawp-anuncio-conteudo {    padding: 24px;    flex-grow: 1;    display: flex;    flex-direction: column;    background: white;}.sawp-anuncio-titulo {    margin: 0 0 12px 0;    font-size: 17px;    font-weight: 700;    line-height: 1.4;    color: var(--sawp-dark);    display: -webkit-box;    -webkit-line-clamp: 2;    -webkit-box-orient: vertical;    overflow: hidden;}.sawp-anuncio-descricao {    margin: 0 0 20px 0;    font-size: 14px;    color: var(--sawp-gray);    line-height: 1.5;    flex-grow: 1;    display: -webkit-box;    -webkit-line-clamp: 3;    -webkit-box-orient: vertical;    overflow: hidden;}/* Meta informações */.sawp-anuncio-meta {    display: flex;    flex-wrap: wrap;    align-items: center;    justify-content: space-between;    margin-top: auto;    padding-top: 16px;    border-top: 1px solid var(--sawp-border);}.sawp-anuncio-stats {    display: flex;    align-items: center;    gap: 16px;    font-size: 12px;    color: var(--sawp-gray);}.sawp-anuncio-views,.sawp-anuncio-clicks {    display: flex;    align-items: center;    gap: 4px;}.sawp-anuncio-views::before {    content: '👁️';}.sawp-anuncio-clicks::before {    content: '👆';}/* Botão de ação */.sawp-anuncio-action {    display: inline-flex;    align-items: center;    gap: 8px;    color: var(--sawp-primary);    font-weight: 600;    font-size: 14px;    text-decoration: none;    transition: all 0.3s ease;}.sawp-anuncio-action::after {    content: '→';    transition: transform 0.3s ease;}.sawp-anuncio-item:hover .sawp-anuncio-action {    color: #4338CA;}.sawp-anuncio-item:hover .sawp-anuncio-action::after {    transform: translateX(4px);}/* Status badge */.sawp-anuncio-status {    position: absolute;    top: 16px;    left: 16px;    padding: 6px 12px;    background: rgba(255, 255, 255, 0.95);    color: var(--sawp-dark);    border-radius: 20px;    font-size: 11px;    font-weight: 700;    text-transform: uppercase;    letter-spacing: 0.5px;    z-index: 5;    box-shadow: var(--sawp-shadow-sm);}/* Preço (opcional para produtos) */.sawp-anuncio-price {    display: inline-block;    padding: 6px 14px;    background: linear-gradient(135deg, var(--sawp-primary), #7C3AED);    color: white;    border-radius: 6px;    font-weight: 700;    font-size: 16px;    margin-top: 8px;    align-self: flex-start;}/* Responsividade */@media (max-width: 1200px) {    .sawp-layout-suspenso .sawp-grid {        grid-template-columns: repeat(2, 1fr);    }}@media (max-width: 768px) {    .sawp-layout-suspenso .sawp-grid {        grid-template-columns: 1fr;        gap: 20px;    }        .sawp-anuncio-imagem {        padding-top: 56.25%; /* 16:9 para mobile */    }        .sawp-anuncio-conteudo {        padding: 20px;    }        .sawp-anuncio-titulo {        font-size: 16px;    }}@media (max-width: 480px) {    .sawp-anuncio-conteudo {        padding: 16px;    }        .sawp-anuncio-titulo {        font-size: 15px;    }        .sawp-anuncio-descricao {        font-size: 13px;    }        .sawp-anuncio-meta {        flex-direction: column;        align-items: flex-start;        gap: 12px;    }}/* Animações em cascata */@keyframes sawpCardAppear {    from {        opacity: 0;        transform: translateY(30px) scale(0.95);    }    to {        opacity: 1;        transform: translateY(0) scale(1);    }}.sawp-anuncio-item {    animation: sawpCardAppear 0.6s cubic-bezier(0.4, 0, 0.2, 1);    animation-fill-mode: both;}.sawp-anuncio-item:nth-child(1) { animation-delay: 0.1s; }.sawp-anuncio-item:nth-child(2) { animation-delay: 0.2s; }.sawp-anuncio-item:nth-child(3) { animation-delay: 0.3s; }.sawp-anuncio-item:nth-child(4) { animation-delay: 0.4s; }.sawp-anuncio-item:nth-child(5) { animation-delay: 0.5s; }.sawp-anuncio-item:nth-child(6) { animation-delay: 0.6s; }/* Efeito de brilho no hover */.sawp-anuncio-item::before {    content: '';    position: absolute;    top: 0;    left: -100%;    width: 100%;    height: 100%;    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);    transition: left 0.7s ease;    z-index: 1;    pointer-events: none;}.sawp-anuncio-item:hover::before {    left: 100%;}