body {
  background: linear-gradient(to bottom, #0f172a, #000);
}

.card:hover {
  border: 1px solid cyan;
  transform: translateY(-5px);
  transition: all 0.3s ease;
}

.card-body {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.navbar .nav-link.active {
    font-weight: bold;
    color: cyan !important;
}

.card:hover {
    transform: translateY(-5px);
    transition: all 0.3s ease;
}

.card-news .card {
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.card-news .card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.25);
}

.footer-text {
    color: #ffffff;               /* branco */
    text-shadow: 1px 1px 2px #000; /* sombra leve */
    font-size: 0.9rem;            /* tamanho confortável */
    text-align: center;           /* centralizado */
    padding: 15px 0;              /* espaço acima e abaixo */
}

.btn i {
    font-size: 1rem;
}

.btn:hover {
    transform: scale(1.1);
    transition: transform 0.2s ease;
}

.card-news .card {
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.card-news .card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.25);
}

.card-news .badge {
    font-size: 0.75rem;
    background-color: #6c757d;
}

.snapshot-wrapper {
    overflow: hidden;
    border-radius: 12px 12px 0 0;
}

.snapshot-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Ajuste para cards em grid responsivo */
.card-news {
  display: flex;
}

.card-news .card {
  flex: 1;
  display: flex;
  flex-direction: column;
}

/* Melhor espaçamento entre texto e botões */
.card-news .card-body {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
