.content {
    padding: 22px var(--body-padding);
}

.content  .cabecalho h1 {
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 12px;
    color: var(--secondary-color);
}

.container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
}

.card {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-bottom: 22px;
    max-width: 350px;
    gap: 22px;
    justify-content: space-between;
    border-radius: 18px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
    background: var(--color-white);
    /* background: linear-gradient(165deg, var(--color-white) 75%, var(--color-black) 100%); */
    transition: all 0.3s ease-in-out;
}

.card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.2);
}
.card .image {
    position: relative;
    width: 100% !important;
    max-height: 350px;
    cursor: pointer;
}

.card .image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, transparent 40%, rgba(0, 0, 0, 0.6) 100%);
}

.card .image::after{
    content: '';
    position: absolute;
    top: 85%;
    left: 0%;
    right: 0;
    bottom: 0;
    border-radius: 100% 50% 0 0 ;
    background-color: var(--color-white);
    /* background: linear-gradient(360deg, rgba(0, 0, 0, 0.5), transparent 50%); */
}

.card .image span {
    position: absolute;
    top: 12px;
    right: 0;
    width: 120px;
    padding: 4px 8px;
    border-radius: 12px 0 0 12px;
    text-transform: uppercase;
    font-size: small;
    color: var(--color-white);
    background: linear-gradient(90deg, var(--primary-color) 40%, transparent);
}

.card .image img {
    width: 100%;
    height: 100%;
    border-radius: 18px 18px 0 0 ;
    object-fit: cover;
}

.card .body {
    width: 80%;
    padding: 22px 0;
    border-bottom: 2px solid var(--transient-color);
}

.card .body a {
    text-decoration: none;
    outline: none;
    color: var(--primary-color);
    font-size: 20px;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

.card .footer {
    width: 80%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.card .footer a {
    text-decoration: none;
    color: var(--color-black);
    border-bottom: 2px solid transparent;
    text-transform: uppercase;
    transition: all 0.3s ease-in-out;
}

.card .footer span {
    opacity: 0.8;
    color: var(--color-black);
}

.card .footer .divisor {
    width: 2px;
    height: 100%;
    background: var(--transient-color);
}

.card .footer a i {
    margin-left: 8px;
}
.card .footer a:hover {
    border-bottom: 2px solid var(--color-black);
}

.skeleton {
    cursor: progress;
    pointer-events: none;
    border: none!important;
    background: linear-gradient(175deg, #8b8b8b 75%, #666666 100%);
}
.skeleton .divisor {
    display: none;
}

.skeleton .body {
    border: none!important;
}
.skeleton-text {
    height: 16px;
    width: 100%;
    background: linear-gradient(90deg, #cccccc 25%, #eeeeee 50%, #cccccc 75%);
    background-size: 200% 100%;
    border: none!important;
    animation: loading 1.5s infinite;
    border-radius: 4px;
}

.skeleton-img {
    width: 100%;
    height: 250px;
    background: linear-gradient(90deg, #cccccc 25%, #eeeeee 50%, #cccccc 75%);
    background-size: 200% 100%;
    animation: loading 1.5s infinite;
    border-radius: 18px 18px 0 0;
}

.image-skeleton {
    position: relative;
    width: 100%;
}

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