/* Container flex para colocar dois cards lado a lado */
.cards-container {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    padding: 20px;
    font-family: Arial, sans-serif;
}

/* Estilo dos cards */
.card {
    width: 340px;
    background: white;
    border-radius: 18px;
    padding: 25px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    text-align: center;
}

/* Logotipo */
.card-logo {
    height: 150px;
    margin-bottom: 15px;
}

/* Título do card */
.card-title {
    font-size: 22px;
    color: #333;
    margin: 10px 0;
}

/* Texto dentro do card */
.card-text {
    font-size: 16px;
    color: #555;
}

/* Botões */
.card-button {
    display: inline-block;
    margin-top: 15px;
    padding: 12px 20px;
    font-size: 16px;
    border-radius: 12px;
    text-decoration: none;
    font-weight: bold;
    color: white;
    transition: 0.2s;
}

/* Botão azul */
.card-button.blue {
    background: #1B1488;
}

/* Hover compartilhado entre os botões */
.card-button:hover {
    opacity: 0.85;
}
