<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">/* Plugin WPCM TPG PublicaÃ§Ãµes - Estilos */

/* Tipografia Institucional */
body {
    --wpcm-font-primary: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    --wpcm-font-secondary: 'Merriweather', Georgia, serif;
}

/* Adicionar fundo geral Ã&nbsp; pÃ¡gina */
body.wpcm-pub-active {
    background-color: #fefaf7; /* &lt;!-- aqui trocar cor de fundo geral --&gt; */
}

.wpcm-tpg-pub-container {
    margin: 30px 0;
    position: relative;
    font-family: var(--wpcm-font-primary);
    background-color: #fefaf7; /* &lt;!-- aqui trocar cor de fundo papel --&gt; */
    padding: 20px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

/* NavegaÃ§Ã£o Superior */
.wpcm-tpg-pub-navigation-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
    padding: 20px 0;
    border-bottom: 2px solid #e74c3c; /* &lt;!-- aqui trocar cor --&gt; */
}

.wpcm-tpg-pub-nav-title {
    font-size: 24px;
    font-weight: 700;
    color: #333;
    font-family: var(--wpcm-font-secondary);
    letter-spacing: -0.5px;
}

.wpcm-tpg-pub-nav-prev,
.wpcm-tpg-pub-nav-next {
    background: none;
    border: none;
    color: #e74c3c; /* &lt;!-- aqui trocar cor --&gt; */
    cursor: pointer;
    padding: 10px;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.wpcm-tpg-pub-nav-prev:hover:not(:disabled),
.wpcm-tpg-pub-nav-next:hover:not(:disabled) {
    transform: scale(1.2);
    color: #c0392b; /* &lt;!-- aqui trocar cor hover --&gt; */
}

.wpcm-tpg-pub-nav-prev:disabled,
.wpcm-tpg-pub-nav-next:disabled {
    opacity: 0.3;
    cursor: not-allowed;
}

.wpcm-tpg-pub-nav-prev svg,
.wpcm-tpg-pub-nav-next svg {
    width: 40px;
    height: 40px;
}

/* Grid de Cards */
.wpcm-tpg-pub-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 25px;
    background-color: #fefaf7; /* &lt;!-- aqui trocar cor de fundo grid --&gt; */
}

/* Cards */
.wpcm-tpg-pub-card {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    background-color: #fefaf7; /* &lt;!-- aqui trocar cor de fundo do card --&gt; */
}

.wpcm-tpg-pub-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.wpcm-tpg-pub-card-link {
    display: block;
    text-decoration: none;
    color: inherit;
}

.wpcm-tpg-pub-card-image {
    position: relative;
    width: 100%;
    height: 450px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.wpcm-tpg-pub-card-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, 
        rgba(0,0,0,0.2) 0%, 
        rgba(0,0,0,0.7) 60%, 
        rgba(0,0,0,0.9) 100%);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 25px;
}

.wpcm-tpg-pub-card-header {
    text-align: left;
}

.wpcm-tpg-pub-card-label {
    display: inline-block;
    background-color: #000;
    color: #fff;
    padding: 8px 24px;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    position: relative;
    font-family: var(--wpcm-font-primary);
}

.wpcm-tpg-pub-card-label::before {
    content: 'â”â”';
    position: absolute;
    left: -35px;
    top: 50%;
    transform: translateY(-50%);
    font-weight: 900;
}

.wpcm-tpg-pub-card-content {
    text-align: left;
}

.wpcm-tpg-pub-card-title {
    color: #000000; /* &lt;!-- aqui trocar cor do tÃ­tulo --&gt; */
    font-size: 26px;
    font-weight: 700;
    line-height: 1.3;
    margin: 0 0 15px 0;
    text-transform: uppercase;
    text-shadow: 2px 2px 4px rgba(255,255,255,0.3);
    font-family: 'Merriweather', Georgia, serif; /* Fonte Merriweather para tÃ­tulo */
    letter-spacing: -0.5px;
}

.wpcm-tpg-pub-card-excerpt {
    color: #ffffff; /* &lt;!-- aqui trocar cor do texto resumo --&gt; */
    font-size: 15px;
    line-height: 1.6;
    margin: 0;
    font-weight: 400;
    opacity: 0.95;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif; /* Fonte Inter para texto */
    text-shadow: 1px 1px 2px rgba(0,0,0,0.8);
}

/* Loading */
.wpcm-tpg-pub-loading {
    text-align: center;
    padding: 40px;
}

.wpcm-tpg-pub-loading::after {
    content: '';
    display: inline-block;
    width: 40px;
    height: 40px;
    border: 4px solid #f3f3f3;
    border-top: 4px solid #e74c3c; /* &lt;!-- aqui trocar cor --&gt; */
    border-radius: 50%;
    animation: wpcm-tpg-pub-spin 1s linear infinite;
}

@keyframes wpcm-tpg-pub-spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Mensagem de sem posts */
.wpcm-tpg-pub-no-posts {
    text-align: center;
    padding: 60px 20px;
    color: #666;
    font-size: 16px;
    font-family: var(--wpcm-font-primary);
}

/* Responsivo */
@media (max-width: 768px) {
    .wpcm-tpg-pub-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .wpcm-tpg-pub-card-title {
        font-size: 22px;
    }
    
    .wpcm-tpg-pub-card-excerpt {
        font-size: 14px;
    }
    
    .wpcm-tpg-pub-card-image {
        height: 350px;
    }
    
    .wpcm-tpg-pub-nav-title {
        font-size: 18px;
    }
    
    .wpcm-tpg-pub-navigation-top {
        padding: 15px 0;
    }
}

@media (min-width: 769px) and (max-width: 1024px) {
    .wpcm-tpg-pub-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1025px) and (max-width: 1400px) {
    .wpcm-tpg-pub-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (min-width: 1401px) {
    .wpcm-tpg-pub-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

/* AnimaÃ§Ãµes adicionais */
.wpcm-tpg-pub-card {
    animation: fadeInUp 0.6s ease-out;
}

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

/* Estilo institucional adicional */
.wpcm-tpg-pub-card-overlay::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: #e74c3c; /* &lt;!-- aqui trocar cor --&gt; */
    transition: height 0.3s ease;
}

.wpcm-tpg-pub-card:hover .wpcm-tpg-pub-card-overlay::after {
    height: 8px;
}
</pre></body></html>