@charset "UTF-8";

.card-sobre {
    background: var(--cor-fundo-card);
    border-radius: 10px;
    box-shadow: 0 15px 25px rgba(0,0,0,0.1);
    padding: 40px 30px;
    min-height: 600px;
}

@media (max-width: 768px) {
    .card-sobre {
        min-height: 500px;
    }
}


/* ============================== */
/*      Ultimos artigos           */
/* ============================== */
.last-articles-section {
    background-image: url("/static/img/court_facade.jpeg");
    background-size: cover;
    background-position: center;
    position: relative;
    z-index: 1;
}

.differentials-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, rgba(18, 18, 18, 0.8), rgba(18, 18, 18, 0.9));
    z-index: 1;
}

.last-articles-section .container {
    position: relative;
    z-index: 2;
}

/* Estilo de hover opcional */
.hover-scale {
    transition: transform 0.3s ease;
}

.hover-scale:hover {
    transform: scale(1.05);
}

.image-focus-right {
    object-fit: cover;
    width: 100%;
    height: 100%;
}
