﻿@media only screen and (min-width: 768px) {
    .noticias-container {
        margin: 10px 0;
    }
    .ultimos-artigos-container {
        margin: 10px 0;
    }
}

.div-conteudo {
    background: #fff;
    padding: 20px 30px;
    margin-bottom: 30px;
}

    .div-conteudo h4 {
        font-weight: 600;
        font-size: 1.7rem;
        cursor: pointer;
    }


    .div-conteudo .fa-calendar-o {
        color: #01b7f2;
        font-size: 1rem;
    }

    .div-conteudo .span-data {
        color: #515151;
        font-size: 15px;
        margin-left: 5px;
        font-weight: 500;
    }

    .div-conteudo .div-container-img {
        display: flex;
        margin-top: 15px;
        text-align: center;
        cursor: pointer;
    }

    .div-conteudo img {
        width: 100%;
        height: 100%;
    }

    .div-conteudo .container-descricao {
        margin-top: 12px;
        font-size: 15px;
        font-weight: 400;
        color: #737373;
        line-height: 21px;
    }

.card-label-blog {
    background: #fff;
}

    .card-label-blog .title {
        line-height: 1.63;
        font-weight: 500;
    }

.spn-vermais {
    color: #0000ff;
    cursor: pointer;
}

.sem-artigos-container {
    width: 100%;
    padding: 60px 0;
    display: flex;
    justify-content: center;
    align-items: center;
}

.sem-artigos-card {
    max-width: 700px;
    margin: 0 auto;
    background: linear-gradient(135deg, #ffffff 0%, #f5f7fa 100%);
    box-shadow: 0 15px 35px rgba(50, 50, 93, 0.1), 0 5px 15px rgba(0, 0, 0, 0.07);
    border-radius: 16px;
    overflow: hidden;
    position: relative;
}

    .sem-artigos-card::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 6px;
        background: linear-gradient(90deg, #3498db, #9b59b6, #e74c3c, #f1c40f, #2ecc71);
        background-size: 500% 500%;
        animation: gradientBorder 6s ease infinite;
    }

@keyframes gradientBorder {
    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}

.sem-artigos-mensagem {
    text-align: center;
    padding: 50px 40px;
    position: relative;
}

.icon-container {
    position: relative;
    width: 100px;
    height: 100px;
    margin: 0 auto 30px;
}

.circle-pulse {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background-color: rgba(52, 152, 219, 0.1);
    animation: pulse 2.5s infinite;
}

@keyframes pulse {
    0% {
        transform: translate(-50%, -50%) scale(0.95);
        box-shadow: 0 0 0 0 rgba(52, 152, 219, 0.5);
    }

    70% {
        transform: translate(-50%, -50%) scale(1);
        box-shadow: 0 0 0 20px rgba(52, 152, 219, 0);
    }

    100% {
        transform: translate(-50%, -50%) scale(0.95);
        box-shadow: 0 0 0 0 rgba(52, 152, 219, 0);
    }
}

.icone-criativo {
    position: relative;
    font-size: 48px;
    color: #3498db;
    filter: drop-shadow(0 4px 6px rgba(0, 0, 0, 0.1));
    z-index: 2;
}

.texto-creativo {
    margin: 0 0 15px;
    font-size: 28px;
    font-weight: 700;
    color: #34495e;
    background: linear-gradient(45deg, #3498db, #8e44ad);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: colorChange 8s infinite alternate;
}

@keyframes colorChange {
    0% {
        filter: hue-rotate(0deg);
    }

    100% {
        filter: hue-rotate(90deg);
    }
}

.subtitulo-criativo {
    max-width: 450px;
    margin: 0 auto 30px;
    color: #7f8c8d;
    font-size: 18px;
    line-height: 1.6;
}

.animated-dots {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    margin-top: 20px;
}

    .animated-dots span {
        display: inline-block;
        width: 10px;
        height: 10px;
        border-radius: 50%;
        background-color: #3498db;
        opacity: 0.7;
    }

        .animated-dots span:nth-child(1) {
            animation: bounce 1.4s ease infinite;
        }

        .animated-dots span:nth-child(2) {
            animation: bounce 1.4s ease 0.2s infinite;
        }

        .animated-dots span:nth-child(3) {
            animation: bounce 1.4s ease 0.4s infinite;
        }

@keyframes bounce {
    0%, 100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }
}

@media (max-width: 768px) {
    .sem-artigos-mensagem {
        padding: 40px 20px;
    }

    .texto-creativo {
        font-size: 24px;
    }

    .subtitulo-criativo {
        font-size: 16px;
    }
}